加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

Retrofit框架请求SOAP WebService

发布时间:2020-12-16 22:08:00 所属栏目:安全 来源:网络整理
导读:前言: ? ? ? ? 近期android使用Retrofit框架进行网络请求,已经非常流行,但是网上的例子或是现有请求后台服务器一般基于Rest方式,即发送请求时发送的参数一般直接放到header或是path路径里,稍复杂点的参数放到表单里请求。如果后台基于WebService方式,


前言:

? ? ? ? 近期android使用Retrofit框架进行网络请求,已经非常流行,但是网上的例子或是现有请求后台服务器一般基于Rest方式,即发送请求时发送的参数一般直接放到header或是path路径里,稍复杂点的参数放到表单里请求。如果后台基于WebService方式,发送的数据格式是SOAP型的XML数据,大家一般用的都是ksoap框架来请求。如果一个客户端如果有两种后台服务,在客户端代码中用两套网络框架,一般不是大家希望的。随着Retrofit框架的不断更新,此框架进行网络请求应该是大势所趋。然而用Retrofit进行Webservice请求,网上资源太少,这两天查找,也只找到两篇相关的文档和一个demo:

? ? ? ? 文章一:http://m.blog.csdn.net/article/details?id=51133893这是转载一个台湾人写的,只有片断式的零星代码,没有从头到尾讲清楚数据的组装,更没有一个可以直接运行的demo,也没有讲清楚不同的SOAP版本,请求也大不相同;

? ? ? ? 文章二:http://m.blog.csdn.net/article/details?id=51163808这篇是作者本人的实践,不得不说费了一番功夫,但是数据组装也没有讲清楚,也没有展示的demo。且作者在发送请求时,直接把请求的model直接用字符串传过去,没有发挥出retrofit的SimpleXmlConverterFactory的强大优势。

? ? ? ? 例子:demo下载地址是https://github.com/asanchezyu/RetrofitSoapSample,不得不说,这是一个能运行完整demo,但这是基于SOAP Version1.2的,对于不同的SOAP版本, 在请求上还是大不一样。而且作者的返回里没有数据,无法看到解析返回数据。


? ? ? ?看到网上这点零星的资料,好几次都想转回ksoap战营。但做为一名开发人员,不能一直copy他人代码,不动脑筋的程序员不是好程序员。下定决心一定要用Retrofit成功请求Webservice数据,终于经过两天研究,终于功夫不负有心人,成功请求出数据。


? ? ? ? SOAP Webservice的测试工具一般都是基于SoapUI工具,此工具在导入工程后可以清楚查看WebService包含的方法,SOAP版本,各方法请求参数。还可以直接模拟网络请求,查看返回结果。具体的SoapUI使用方法在这里就不多说,下面是用http://www.webservicex.net/uszip.asmx?WSDL这个工程测试的,左侧展示的是工程包含的方法,中间是请求发送的xml包,右边是服务器返回xml数据。


? ? ? ??

? ? ? ? 如果成功调用过函数,也可用charles抓包工具看看请求数据的封装。

? ? ? ? 这是成功用retrofit框架请求webservice的截图



? ? ? 通过SoapUI工具可以清楚查看到请求体,实现方面也会更容易。下面具体说说如何用Retrofit实现SOAP WebService网络请求。


实现:

1. SOAP版本

不同SOAP版本所需的命名空间有些不一样,具体查看,可以通过SoapUI工具,也可以问后台开发人员,通过查看SoapEnvelop源码可以看到。



从上图可以看出,1.0,1.1,1.2版本,命名空间都有些不一样,这会影响到后面编写Envelope包封装的请求。


2. 准备工作,因为WebService数据请求及返回都是xml形式,需要导入Retrofit xml解析的依赖包(需要把stax|stax-api|xpp3这三个类排除掉,否则编译时会报错)

compile("com.squareup.retrofit2:converter-simplexml:2.0.0-beta3")
{
    exclude module: 'stax'  exclude module: 'stax-api'  exclude module: 'xpp3' }
 

3. 编写Retrofit请求对象,包括请求的基址,请求头Content-Type设为text/xml;charset=UTF-8,转换器设置为
SimpleXmlConverterFactory

/**
 * 家校互动部分服务器Retrofit变量初始化
 * Created by SmileXie on 16/7/16.
 */
public class JXHDRetrofitGenerator {

    private static Strategy strategy = new AnnotationStrategy();
    private static Serializer serializer = new Persister(strategy);

    private static OkHttpClient.Builder okHttpClient = new OkHttpClient.Builder();

   private static Retrofit.Builder retrofitBuilder =  new Retrofit.Builder()
            .addConverterFactory(SimpleXmlConverterFactory.create(serializer))
            .baseUrl(Constant.BASE_URL); //请求的webservice基址

    public static <S> S createService(Class<S> serviceClass) {
        okHttpClient.interceptors().add(new Interceptor() {
            @Override
            public okhttp3.Response intercept(Interceptor.Chain chain) throws IOException {
                Request original = chain.request();

                Request.Builder requestBuilder = original.newBuilder()
                        .header("Content-Type","text/xml;charset=UTF-8")//添加请求头
                        .method(original.method(),original.body());

                Request request = requestBuilder.build();
                return chain.proceed(request);
            }
        });

        OkHttpClient client = okHttpClient.connectTimeout(2,TimeUnit.MINUTES)
                .writeTimeout(2,TimeUnit.MINUTES)
                .readTimeout(2,TimeUnit.MINUTES)
                .build();
        Retrofit retrofit = retrofitBuilder.client(client).build();
        return retrofit.create(serviceClass);
    }
}

4. 编写请求函数
/**
 * 家校互动部分数据请求
 * Created by SmileXie on 16/7/15.
 */
public interface JXHDInterfaceFun {
    @Headers({"SOAPAction: getRoleinfo"})//请求的Action,类似于方法名
    @POST("service?wsdl")//请求的地址
    Call<RoleInfoResponseEnvelope> getRoleInfo(@Body RoleInfoRequestEnvelope requestEnvelope);
}

5. 组装请求Request Model
主要组装xml数据如下:

1)组装最外层的soapenv:Envelope,这里请求就涉及到命名空间,不同的SOAP版本是不一样的,下面是SOAP1.1版本的:
/**
 * Created by SmileXie on 16/7/15.
 */
@Root(name = "soapenv:Envelope")
@NamespaceList({
        @Namespace(reference = "http://www.w3.org/2001/XMLSchema-instance",prefix = "xsi"),@Namespace(reference = "http://www.w3.org/2001/XMLSchema",prefix = "xsd"),@Namespace(reference = "http://schemas.xmlsoap.org/soap/encoding/",prefix = "enc"),@Namespace(reference = "http://schemas.xmlsoap.org/soap/envelope/",prefix = "soapenv")
})
public class RoleInfoRequestEnvelope {
    @Element(name = "soapenv:Body",required = false)
    public RoleInfoRequestBody body;

    @Element(name = "soapenv:Header",required = false)
    public String aHeader;

}
如果你服务器是SOAP1.2版本的,命名空间应该这样写,前缀可以自己定义,但要对应上@Element里的前缀。
@Root(name = "soap12:Envelope")
@NamespaceList({
        @Namespace( prefix = "xsi",reference = "http://www.w3.org/2001/XMLSchema-instance"),@Namespace( prefix = "xsd",reference = "http://www.w3.org/2001/XMLSchema"),@Namespace( prefix = "soap12",reference = "http://www.w3.org/2003/05/soap-envelope")
})
2)组装最外层的Body部分:
/**
 * 用户角色返回body
 * Created by SmileXie on 16/7/15.
 */
@Root(name = "soapenv:Body",strict = false)
public class RoleInfoRequestBody {
    @Element(name = "getroleinfo",required = false)
    public UserInfoBaseRequest getroleinfo;
}

3)组装getroleinfo部分:
/**
 * 用户信息
 * Created by SmileXie on 16/7/15.
 */

public class UserInfoBaseRequest {

    @Element(name = "token",required = false)
    public String token;

    @Element(name = "userId")
    public String userid;

    @Element(name = "userType")
    public String userType;

    public String getToken() {
        return token;
    }

}

至此,Request部分组装完成。所有请求变量都可以写成private,再用setter方法赋值。因为这里不涉及到修改数据,所以笔者全部用了public。
6. 编写请求Response Model
如果事先不知道返回的数据格式,这部分可以先不写,返回数据直接用ResponseBody来接收,通过抓包工具,查看Response部分,获取到数据的返回结果,再进行编写。
接收的数据格式跟Request Model一样,一层一层解析。Retrofit默认用的是SAX解析,所以每个标签都需要进行解析,要不会报错。
1)先解析最外层的soapevn:Envelope
/**
 * 用户角色返回总信息
 * Created by SmileXie on 16/7/15.
 */
@Root(name = "soapenv:Envelope")
@NamespaceList({
        @Namespace(reference = "http://www.w3.org/2001/XMLSchema-instance",prefix = "soapenv")
})
public class RoleInfoResponseEnvelope {
    @Element(name = "Body")
    public RoleInfoResponseBody body;

}

2)解析soapenv:Body部分
/**
 * 用户角色返回body
 * Created by SmileXie on 16/7/15.
 */
@Root(name = "Body")
public class RoleInfoResponseBody {

    @Element(name = "getroleinfoResponse",required = false)
    public RoleInfoResponse roleInfoResponse;

}
3)解析getroleinfoResponse部分
/**
 * 用户角色返回
 * Created by SmileXie on 16/7/15.
 */

@Root(name = "getroleinfoResponse")
@NamespaceList({
        @Namespace(reference = "http://www.w3.org/2001/XMLSchema-instance",@Namespace(reference = "http://schemas.xmlsoap.org/soap/envelope",prefix = "env"),prefix = "encodingStyle"),})
public class RoleInfoResponse {
    @Attribute(name = "encodingStyle")
    public String encodingStyle;


    @Element(name = "getroleinfoReturn")
    public RoleInfoResponseReturn reolInfo;

}

4)解析最里一层,getroleinfoReturn部分
/**
 * 用户角色返回
 * Created by SmileXie on 16/7/18.
 */

@Root(name = "getroleinfoReturn")
@Namespace(reference = "http://www.w3.org/2001/XMLSchema-instance",prefix = "xsi")
public class RoleInfoResponseReturn {
    @Attribute(name = "type")
    public String xsiType;

    @Text()
    public String message;

}

最里边的数据其实是String型,直接用@Text注解获取,我们这里返回的是一个json,最后转用Gson来解析的。
7. 编写请求代码
private void testSOAP() {
        JXHDInterfaceFun apiService = JXHDRetrofitGenerator.createService(JXHDInterfaceFun.class);
        RoleInfoRequestEnvelope requestEnvelope = new RoleInfoRequestEnvelope();    //soapenv:Envelope
        RoleInfoRequestBody requestBody = new RoleInfoRequestBody();    // body
        UserInfoBaseRequest baseRequest = new UserInfoBaseRequest();    // getroleinfo
        baseRequest.userid = "liliting";
        baseRequest.userType = "2";
        requestBody.getroleinfo = baseRequest;
        requestEnvelope.body = requestBody;

        Call<RoleInfoResponseEnvelope> call = apiService.getRoleInfo(requestEnvelope);
        call.enqueue(new Callback<RoleInfoResponseEnvelope>() {
            @Override
            public void onResponse(Response<RoleInfoResponseEnvelope> response) {
                Util.stopProgressDialog();
                RoleInfoResponseEnvelope roleInfoResponseEnvelope = response.body();
                if (roleInfoResponseEnvelope != null ) {
                    String message = roleInfoResponseEnvelope.body.roleInfoResponse.reolInfo.message;
                    BaseResponse baseResponse = GsonUtil.getJsonObject(message,BaseResponse.class);
                    if(baseResponse != null) {
                        RoleInfoResponse roleResponse = GsonUtil.getJsonObject(baseResponse.getMessage(),RoleInfoResponse.class);
                        String roleType = roleResponse.getRoles();
                    }

                }
            }
            @Override
            public void onFailure(Throwable t) {
                Util.stopProgressDialog();
                Toast.makeText(SendMessageActivity.this,getString(R.string.load_fail),Toast.LENGTH_SHORT).show();
            }
        });
    }

采用Retrofit进行WebService请求,上面代码完整显示了请求数据的封装,返回数据的解析,请求函数的编写,Retrofit对象组装,请求代码等。稍候我会把在项目实施中遇到的一些问题进行总结,并把相应代码整理成demo,供大家参考。
后记:
两种框架对比:
用Retrofit进行WebService请求,在组装请求数据时,需要进行Envelop,Body,RequestMode的组装,至少要用到3个类;
在解析返回的XML数据时,也要进行Envelop,Body,ResponseModel的解析,至少需要用3个类。
这样Retrofit框架比ksoap框架进行WebService请求,类变多了,但并没有变麻烦。这样写使整个请示都清晰了,开发者可以清楚看到数据的组装。

用ksoap请求,请求头公共的,可以写在一起,请求的对象只需要通过HashMap传值过去,ksoap会相应的组装body部分;
返回的对象解析只需要用到一个类,比WebService编写简单。
但ksoap需要单独写个AsyncTask来进行网络请求,而Retrofit包含了同步和异步请求框架,不用开发者单独写线程请求。
且Retrofit结合RxJava,现在变得越来越流行起来。
具体大家如何决择,还得具体情况具体分析。

--------------------我是华丽的分隔线-----------------------
这两天写了个demo,利用Retrofit网络框架进行WebService SOAP1.1请求,以请求天气预报为例,天气预报的请求网址为:
http://www.webxml.com.cn/WebServices/WeatherWebService.asmx?op=getWeatherbyCityName
这里边也很详情的说明了SOAP1.1和SOAP1.2请求model和返回model的数据格式。
工程下载地址为:
https://github.com/xiewenfeng/RetorfitWebServiceSample

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读