基于SpringBoot 的SOAP WebService实现(二)

一、使用postman工具调用服务接口

成功启动springboot应用后,使用postman新建POST请求,地址: http://localhost:8080/soap/userManagement

 正文body选择raw,XML格式。

headers填入如下键值对:

 其中xlms字段是 WSDL中的namespace字段。

 

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://service.tmy.example.org/">
   <soapenv:Header/>
   <soapenv:Body>
     <ser:getUserByName>
        
        <name>Jerry</name>
     </ser:getUserByName>
   </soapenv:Body>
</soapenv:Envelope>

发送请求,返回了一个User类 。

至此,webservice SOAP服务发布测试成功。

二、使用客户端测试接口

新建客户端模块,maven依赖和服务端相同。

实体类User、服务接口UserManagement.java和服务端保持一致。

客户端结构如下:

测试类如下:

@SpringBootApplication
public class WebserviceClientApplication {
    public static void main(String[] args) {
        SpringApplication.run(WebserviceClientApplication.class, args);

        JaxWsDynamicClientFactory dcflient=JaxWsDynamicClientFactory.newInstance();

        Client client=dcflient.createClient("http://localhost:8080/soap/userManagement?wsdl");//http://localhost:8080/soap/userManagement

        System.out.println("client= "+client);
        try{
            //namespace= http://service.tmy.example.org/
            QName opname=new QName("http://service.tmy.example.org/","getUserByName");          
            Object[] objects=client.invoke(opname,"Jerry");//getUserByName
            System.out.println("getUserByName 调用结果:"+objects[0].toString());


        }catch (Exception e){
            e.printStackTrace();
        }
    }
}

启动服务端后,运行客户端,返回了一个User类,说明客户端测试成功。

 

 文章来源地址https://uudwc.com/A/vm9vj

原文地址:https://blog.csdn.net/uestc_tmy/article/details/128808153

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请联系站长进行投诉反馈,一经查实,立即删除!

h
上一篇 2023年09月12日 05:11
Unity实现简单自动寻路,自动导航
下一篇 2023年09月12日 05:15