如何使用具有不同命名空间和相同JAXB类的两个不同端点? [英] How can I have two different endpoint with different namespace and same JAXB class?

查看:78
本文介绍了如何使用具有不同命名空间和相同JAXB类的两个不同端点?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用春天肥皂。

我有以下JAXB域类对应复杂类型

I have following JAXB domain classes correspond to complex types

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "reference",
    "reason"
})
@XmlRootElement(name = "request-message")
public class RequestMessageType {

    @XmlElement(name = "reference", required = true)
    protected String reference;
    @XmlElement(name = "reason")
    protected String reason;

   // I have getters and setters but removed here.
}

我跟随@XmlRegistry注释课程

I have following class with @XmlRegistry annotations

@XmlRegistry
public class ObjectFactory {

    private final static QName _RequestMessage_QNAME = new QName("http://namespace/url", "request-message");

    public ObjectFactory() {
    }

    @XmlElementDecl(namespace = "http://namespace/url", name = "request-message")
    public JAXBElement<RequestMessageType> createDisconnectRequestMessage(RequestMessageType  value) {
        return new JAXBElement<RequestMessageType>(_RequestMessage_QNAME, RequestMessageType.class, null, value);
    }    
}

以下是端点

   @Endpoint
    public class FirstEndPoint {

        private static final String NAMESPACE_URI = "http://first/url/version";

        private static final Logger LOG = Logger.getLogger(FirstEndPoint.class);

        @PayloadRoot(namespace = NAMESPACE_URI, localPart = "request-message")
        @ResponsePayload
        public JAXBElement<ResponseMessageType> requestMessage(@RequestPayload JAXBElement<RequestMessageType> requestMessage) {
            LOG.info("request-message : first version ID : " + requestMessage.getValue().getReference());
        //Preparing response and return response 
        }
    }

    @Endpoint
    public class SecondEndPoint {

        private static final String NAMESPACE_URI = "http://second/url/version";
        private static final Logger LOG = Logger.getLogger(SecondEndPoint.class);


        @PayloadRoot(namespace = NAMESPACE_URI, localPart = "request-message")
        @ResponsePayload
        public JAXBElement<ResponseMessageType> requestMessage(@RequestPayload JAXBElement<RequestMessageType> requestMessage) {
            LOG.info("request-message : second version ID : " + requestMessage.getValue().getReference());
         //Preparing response and return response 

        }
    }

当我发出Soap请求时,我在肥皂请求中使用端点中给出的NAMESPACE_URI。

When I make Soap request, I am using NAMESPACE_URI given in endpoints in soap request.

在这种情况下,我得到以下响应

Here, in this case, I am getting following response

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    <SOAP-ENV:Header/>
    <SOAP-ENV:Body>
        <SOAP-ENV:Fault>
            <faultcode>SOAP-ENV:Server</faultcode>
            <faultstring xml:lang="en">unexpected element (uri:"http://first/url/version", local:"request-message"). Expected elements are &lt;{http://namespace/url}request-message&gt;</faultstring>
        </SOAP-ENV:Fault>
    </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

如果我使用 http:// namespace / url 作为NAMESPACE_URI在端点和soap请求中我得到了正确的响应,但我尝试使两个具有两个不同命名空间的端点不同然后它不起作用并在上面给出响应。

If I use "http://namespace/url" as NAMESPACE_URI in endpoint and in soap request I am getting the proper response but I try to make it different for two endpoints with two different namespaces then it is not working and gives above response.

如何为具有相同JAXB类的两个不同端点使用两个不同的命名空间?我对spring和web服务完全不熟悉。

How can I use two different namespaces for two different endpoints with same JAXB class? I am completely new to spring and web service.

其他信息:RequestMessageType类和ObjectFactory类在一个包中,在package-info.java命名空间中是

Additional info : RequestMessageType class and ObjectFactory class are in one package and in package-info.java namespace is

@javax.xml.bind.annotation.XmlSchema(namespace="http://namespace/url",elementFormDefault=javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
package com.example

我是否需要更改任何内容在package-info.java文件中?

Do I need to change anything in package-info.java file ?

推荐答案

我创建了一个示例项目。我希望它对你有用。您可以在此处查看: https://github.com/angeloimm/spring-ws-示例
基本上这是我的WSDL文件(在SOAP Web服务中全部由WSDL统治):

I created a sample project. I hope it can be useful to you. You can give a look at it here: https://github.com/angeloimm/spring-ws-sample Basically this is my WSDL file (in SOAP Web Service all is ruled by WSDL):

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:ss="http://www.example.org/SpringSample/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="SpringSample"
    targetNamespace="http://www.example.org/SpringSample/">
    <wsdl:types>
        <xsd:schema targetNamespace="http://www.example.org/SpringSample/">
            <xsd:complexType name="abstractRequest">
                <xsd:sequence minOccurs="1" maxOccurs="1">
                    <xsd:element name="reqName" type="xsd:string" nillable="false"
                        maxOccurs="1" minOccurs="1" />
                </xsd:sequence>
            </xsd:complexType>
            <xsd:complexType name="abstractResponse">
                <xsd:sequence minOccurs="1" maxOccurs="1">
                    <xsd:element name="responseName" type="xsd:string"
                        nillable="false" maxOccurs="1" minOccurs="1" />
                </xsd:sequence>
            </xsd:complexType>
            <xsd:element name="requestImplementation" type="ss:abstractRequest" />
            <xsd:element name="responseImplementation" type="ss:abstractResponse" />
            <xsd:element name="requestImplementation2" type="ss:abstractRequest" />
            <xsd:element name="responseImplementation2" type="ss:abstractResponse" />
        </xsd:schema>
    </wsdl:types>
    <wsdl:message name="OperationRequest">
        <wsdl:part element="ss:requestImplementation" name="request" />
    </wsdl:message>
    <wsdl:message name="OperationResponse">
        <wsdl:part element="ss:responseImplementation" name="response" />
    </wsdl:message>
    <wsdl:message name="OperationRequest2">
        <wsdl:part element="ss:requestImplementation2" name="request2" />
    </wsdl:message>
    <wsdl:message name="OperationResponse2">
        <wsdl:part element="ss:responseImplementation2" name="response2" />
    </wsdl:message>
    <wsdl:portType name="SpringSample">
        <wsdl:operation name="Operation1">
            <wsdl:input message="ss:OperationRequest" />
            <wsdl:output message="ss:OperationResponse" />
        </wsdl:operation>
        <wsdl:operation name="Operation2">
            <wsdl:input message="ss:OperationRequest2" />
            <wsdl:output message="ss:OperationResponse2" />
        </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="SpringSampleSOAP" type="ss:SpringSample">
        <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
        <wsdl:operation name="Operation1">
            <soap:operation style="document" soapAction="http://www.example.org/SpringSample/Operation1" />
            <wsdl:input>
                <soap:body use="literal" />
            </wsdl:input>
            <wsdl:output>
                <soap:body use="literal" />
            </wsdl:output>
        </wsdl:operation>
        <wsdl:operation name="Operation2">
            <soap:operation style="document" soapAction="http://www.example.org/SpringSample/Operation2" />
            <wsdl:input>
                <soap:body use="literal" />
            </wsdl:input>
            <wsdl:output>
                <soap:body use="literal" />
            </wsdl:output>
        </wsdl:operation>
    </wsdl:binding> 
    <wsdl:service name="SpringSample">
        <wsdl:port binding="ss:SpringSampleSOAP" name="SpringSampleSOAP">
            <soap:address location="http://www.example.org/" />
        </wsdl:port>
    </wsdl:service>
</wsdl:definitions>

如你所见,我定义了2种复杂类型: abstractRequest abstractResponse 。然后我通过使用元素 requestImplementation requestImplementation2 它们> responseImplementation , responseImplementation2 根据WS-I规范,您需要使用单独的操作和元素

As you can see I defined 2 complex type: abstractRequest and abstractResponse. Then I implemented them by using the elements requestImplementation,requestImplementation2,responseImplementation,responseImplementation2 According to WS-I specification you need to use separate operations and elements

然后我写了这个端点:

@Endpoint
public class SampleEndpoint
{
    private static final Logger logger = LoggerFactory.getLogger(SampleEndpoint.class.getName());
    private static final String NAME_SPACE_URI = "http://www.example.org/SpringSample/";

    @PayloadRoot(namespace = NAME_SPACE_URI, localPart="requestImplementation")
    @ResponsePayload
    public JAXBElement<AbstractResponse> operationOneResp(@RequestPayload JAXBElement<AbstractRequest> ar)
    {
        if( logger.isDebugEnabled() )
        {
            logger.debug("Operation 1 request "+ar.getValue().getReqName());
        }
        ObjectFactory of = new ObjectFactory();
        AbstractResponse aResp = of.createAbstractResponse();
        aResp.setResponseName("operation 1 response");
        JAXBElement<AbstractResponse> result = of.createResponseImplementation(aResp);
        return result;
    }
    @PayloadRoot(namespace = NAME_SPACE_URI, localPart="requestImplementation2")
    @ResponsePayload
    public JAXBElement<AbstractResponse> operationTwoResp(@RequestPayload JAXBElement<AbstractRequest> ar)
    {
        if( logger.isDebugEnabled() )
        {
            logger.debug("Operation 2 request "+ar.getValue().getReqName());
        }
        ObjectFactory of = new ObjectFactory();
        AbstractResponse aResp = of.createAbstractResponse();
        aResp.setResponseName("operation 2 response");
        JAXBElement<AbstractResponse> result = of.createResponseImplementation(aResp);
        return result;
    }
}

正如你现在所见,我总是使用 AbstractRequest AbstractResponse 两种方法中的JAXBElement。这2种方法也可以在2个不同的端点

As you can see now I always use AbstractRequest and AbstractResponse JAXBElement in both methods. The 2 methods can also be in 2 different endpoints

我希望它是你所需要的而且它很有用

I hope it's what you needed and it's useful

Angelo

这篇关于如何使用具有不同命名空间和相同JAXB类的两个不同端点?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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