无法使用Retrofit 2和Simple XML Converter获得SOAP信封主体 [英] Cannot get SOAP envelope body using Retrofit 2 and Simple XML Converter

查看:224
本文介绍了无法使用Retrofit 2和Simple XML Converter获得SOAP信封主体的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用Retrofit 2.2.0和Retrofit SimpleXML Converter 2.2.0.我使用 addConverterFactory 方法向 Retrofit 实例中添加了 SimpleXmlConverter .

I am using Retrofit 2.2.0 and Retrofit SimpleXML Converter 2.2.0. I added SimpleXmlConverter to the Retrofit instance with the addConverterFactory method.

问题是,当我收到响应时,它收到以下错误

The problem is that when I receive the response, it gets the following error

java.lang.RuntimeException:org.simpleframework.xml.core.ElementException:元素"Body"在第1行的ResponseEnvelope类中不匹配

java.lang.RuntimeException: org.simpleframework.xml.core.ElementException: Element 'Body' does not have a match in class ResponseEnvelope at line 1

我应该得到这样的XML响应:

I should get an XML response like this:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
   <soapenv:Body>
      <ns:autenticarUsuarioPorEmailResponse xmlns:ns="http://business.curitiba.org.br">
         <ns:return xsi:type="ax2471:AutenticaUsuarioPorEmailSaida" xmlns:ax2471="http://saidas.curitiba.org/xsd" xmlns:ax2469="http://entities.curitiba.org/xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ax2467="http://entradas.curitiba.org/xsd">
            <ax2471:idCredencial>3282</ax2471:idCredencial>
            <ax2471:tokenAcesso>635E3DA9-7C02-4DB7-9653-E7688C66B02C</ax2471:tokenAcesso>
         </ns:return>
      </ns:autenticarUsuarioPorEmailResponse>
   </soapenv:Body>
</soapenv:Envelope>

ResponseEnvelope.java

@Root(name = "soapenv:Envelope")
@Namespace(prefix = "soapenv", reference = "http://schemas.xmlsoap.org/soap/envelope/")
public class ResponseEnvelope {

    @Element(name = "soapenv:Body", required = false)
    private ResponseBody body;

    public ResponseBody getBody() {
        return body;
    }

    public void setBody(ResponseBody body) {
        this.body = body;
    }
}

ResponseBody.java

@Root(name = "soapenv:Body", strict = false)
public class ResponseBody {

    @Element(name = "ns:cadastrarCredencialEmailResponse", required = false)
    private ResponseData requestData;

    public ResponseData getRequestData() {
        return requestData;
    }

    public void setRequestData(ResponseData requestData) {
        this.requestData = requestData;
    }

}

ResponseData.java

@Root(name = "ns:cadastrarCredencialEmailResponse", strict = false)
@Namespace(prefix = "ns", reference = "http://business.curitiba.org")
public class ResponseData {

    @Element(name = "ns:return", required = false)
    private ResponseInfo info;

    public ResponseInfo getInfo() {
        return info;
    }

    public void setInfo(ResponseInfo info) {
        this.info = info;
    }
}

ResponseInfo.java

@Root(name = "ns:return", strict = false)
@NamespaceList({
        @Namespace(prefix = "ax2471", reference = "http://saidas.curitiba.org/xsd"),
        @Namespace(prefix = "ax2469", reference = "http://entities.curitiba.org/xsd"),
        @Namespace(prefix = "xsi", reference = "http://www.w3.org/2001/XMLSchema-instance"),
        @Namespace(prefix = "ax2467", reference = "http://entradas.curitiba.org/xsd")
})
public class ResponseInfo {

    @Element(name = "ax2471:codigoAtivacao", required = false)
    private String codigoAtivacao;
    @Element(name = "ax2471:idCredencial", required = false)
    private String idCredencial;

    public String getCodigoAtivacao() {
        return codigoAtivacao;
    }

    public void setCodigoAtivacao(String codigoAtivacao) {
        this.codigoAtivacao = codigoAtivacao;
    }

    public String getIdCredencial() {
        return idCredencial;
    }

    public void setIdCredencial(String idCredencial) {
        this.idCredencial = idCredencial;
    }
}

我想问题出在 ResponseInfo 类中,我不知道如何将属性 xsi:type 放入其中.有人可以帮我吗?

I guess the problem is in the ResponseInfo class, that I don't know how to put the attribute xsi:type into it. Can anybody help me?

推荐答案

我不知道Simple XML Converter的确切工作方式,但是元素名称是元素名称,可以使用前缀.这似乎很混乱,因为:字符用于分隔物理XML文档(标记)中的名称空间前缀和元素名称.

I don't know how the Simple XML Converter works exactly, but element names are elements names, and they can be prefixed. This seems to be the confusion because the : character is used to delimit namespace prefixes and element names in physical XML document (tags).

您可以从名称中删除前缀",然后添加 @Namespace 批注.例如:

You can just remove the "prefix" from the name and add the @Namespace annotation. For example:

@Root(name = "Envelope")
@Namespace(prefix = "soapenv", reference = "http://schemas.xmlsoap.org/soap/envelope/")
final class ResponseEnvelope {

    @Element(name = "Body", required = false)
    @Namespace(prefix = "soapenv", reference = "http://schemas.xmlsoap.org/soap/envelope/")
    final ResponseBody body;

    private ResponseEnvelope(
            @Element(name = "Body") final ResponseBody body
    ) {
        this.body = body;
    }

}

ResponseBody.java

@Root(name = "Body", strict = false)
@Namespace(prefix = "soapenv", reference = "http://schemas.xmlsoap.org/soap/envelope/")
final class ResponseBody {

    @Element(name = "autenticarUsuarioPorEmailResponse", required = false)
    @Namespace(prefix = "ns", reference = "http://business.curitiba.org")
    final ResponseData requestData;

    private ResponseBody(
            @Element(name = "autenticarUsuarioPorEmailResponse") final ResponseData requestData
    ) {
        this.requestData = requestData;
    }

}

ResponseData.java

@Root(name = "autenticarUsuarioPorEmailResponse", strict = false)
@Namespace(prefix = "ns", reference = "http://business.curitiba.org")
final class ResponseData {

    @Element(name = "return", required = false)
    @Namespace(prefix = "ns", reference = "http://business.curitiba.org")
    final ResponseInfo info;

    private ResponseData(
            @Element(name = "return") final ResponseInfo info
    ) {
        this.info = info;
    }

}

ResponseInfo.java

@Root(name = "return", strict = false)
@Namespace(prefix = "ns", reference = "http://business.curitiba.org")
final class ResponseInfo {

    @Element(name = "tokenAcesso", required = false)
    @Namespace(prefix = "ax2471", reference = "http://saidas.curitiba.org/xsd")
    final String accessToken;

    @Element(name = "idCredencial", required = false)
    @Namespace(prefix = "ax2471", reference = "http://saidas.curitiba.org/xsd")
    final String credentialId;

    private ResponseInfo(
            @Element(name = "tokenAcesso") final String accessToken,
            @Element(name = "idCredencial") final String credentialId
    ) {
        this.accessToken = accessToken;
        this.credentialId = credentialId;
    }

}

所以下面的例子:

final ResponseInfo info = responseEnvelope.body.requestData.info;
System.out.println(info.accessToken);
System.out.println(info.credentialId);

将输出:

635E3DA9-7C02-4DB7-9653-E7688C66B02C
3282

635E3DA9-7C02-4DB7-9653-E7688C66B02C
3282

这篇关于无法使用Retrofit 2和Simple XML Converter获得SOAP信封主体的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆