为了账号安全,请及时绑定邮箱和手机立即绑定

webservice 发布后怎么能通过postman来调用?

webservice 发布后怎么能通过postman来调用?

达令说 2019-02-26 19:57:57
服务已经生成了@WebServicepublic class HelloWorld { @WebMethod     public String sayHello(String str){          System.out.println("get Message...");         String result = "Hello World, "+str;         return result;     }    public static void main(String[] args) {         System.out.println("server is running");        String address="http://localhost:8888/HelloWorld";        Object implementor =new HelloWorld();          Endpoint.publish(address, implementor);     }}怎么样才能在postman调我的sayHello方法
查看完整描述

2 回答

?
SMILET

TA贡献1796条经验 获得超4个赞

你得把请求信息封装成soap协议规定的xml格式才能通过postman调用,与其这样,还不如直接用soap测试工具。

查看完整回答
反对 回复 2019-02-26
?
慕工程0101907

TA贡献1887条经验 获得超5个赞

还不如直接用soap测试工具。

查看完整回答
反对 回复 2019-02-26
  • 2 回答
  • 0 关注
  • 3044 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信