简体   繁体   English

CXF客户端和WS-Addressing属性

[英]CXF Client and WS-Addressing attributes

I have a webservice that I'm trying to invoke with the following client-side code: 我有一个要尝试使用以下客户端代码调用的Web服务:

    import com.test.wsdl.CxfAdd;
    import com.test.wsdl.CxfAddService;

    import java.util.Map;

    import javax.xml.ws.BindingProvider;

    import org.apache.cxf.ws.addressing.AddressingProperties;
    import org.apache.cxf.ws.addressing.AttributedURIType;
    import org.apache.cxf.ws.addressing.EndpointReferenceType;
    import org.apache.cxf.ws.addressing.JAXWSAConstants;

    public class Main {

        public static void main(String[] args) {

            CxfAddService service = new CxfAddService();
            CxfAdd client = service.getCxfAddPort();

            Map<String, Object> requestContext = ((BindingProvider)client).getRequestContext();

            AddressingProperties maps = new AddressingProperties();
            EndpointReferenceType ref = new EndpointReferenceType();
            AttributedURIType add = new AttributedURIType();

            add.setValue("http://www.w3.org/2005/08/addressing/anonymous");
            ref.setAddress(add);
            maps.setReplyTo(ref);
            maps.setFaultTo(ref);

            requestContext.put(JAXWSAConstants.CLIENT_ADDRESSING_PROPERTIES, maps);

            client.myMethodOneWay("Input message");
        }
    }

On the server-side (Tomcat), the webservice is implemented as the following: 服务器端 (Tomcat)上,Web服务的实现方式如下:

CxfAdd.java: CxfAdd.java:

    package com.test.ws;

    import javax.jws.Oneway;
    import javax.jws.WebResult;
    import javax.jws.WebService;
    import javax.xml.ws.soap.Addressing;

    @WebService(targetNamespace = "http://test.com/wsdl")
    @Addressing(enabled = true, required = true)
    public interface CxfAdd {

        @WebResult(name = "response")
        public abstract String myMethod(String message);

        @WebResult(name="response")
        @Oneway
        public void myMethodOneWay(String message);
    }

CxfAddImpl.java: CxfAddImpl.java:

    package com.test.ws;

    import javax.annotation.Resource;
    import javax.jws.Oneway;
    import javax.jws.WebService;
    import javax.xml.ws.WebServiceContext;
    import javax.xml.ws.soap.Addressing;

    @WebService
    @Addressing
    public class CxfAddImpl implements CxfAdd {

        @Resource
        WebServiceContext webServiceContext;

        public String myMethod(String message) {
            System.out.println("Invoking sayHello in " + getClass());
            return "Hello " + message;
        }

        @Oneway
        public void myMethodOneWay(String message) {
            // TODO Auto-generated method stub      
        }
    }

However, when I run the client-side code, at the server-side I get the following error: 但是,当我运行客户端代码时,在服务器端会出现以下错误:

INFO: Inbound Message
----------------------------
ID: 46
Address: http://localhost:8080/CxfAddressingServer/services/cxfadd
Encoding: UTF-8
Http-Method: POST
Content-Type: text/xml; charset=UTF-8
Headers: {Accept=[*/*], cache-control=[no-cache], connection=[keep-alive], Content-Length=[211], content-type=[text/xml; charset=UTF-8], host=[localhost:8080], pragma=[no-cache], SOAPAction=[""], user-agent=[Apache CXF 3.1.3]}
Payload: <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns2:myMethodOneWay xmlns:ns2="http://test.com/wsdl"><arg0>Input message</arg0></ns2:myMethodOneWay></soap:Body></soap:Envelope>
--------------------------------------
Out 30, 2015 7:18:56 PM org.apache.cxf.ws.addressing.ContextUtils retrieveMAPs
WARNING: WS-Addressing - failed to retrieve Message Addressing Properties from context

It seems that I'm not sending the ws-addressing attributes, can anyone help me figure out what's wrong or missing in my code? 似乎我没有发送ws-addressing属性,有人可以帮助我弄清楚代码中有什么错误或缺失吗? Thank you. 谢谢。

In the client-side code, I've replaced the following: 在客户端代码中,我替换了以下内容:

CxfAdd client = service.getCxfAddPort();

With the following: 具有以下内容:

CxfAdd client = service.getCxfAddPort(
                      new org.apache.cxf.ws.addressing.WSAddressingFeature());

And it works now. 现在就可以了。

Solution was provided by someone else here: 解决方案是由其他人在这里提供的:

http://www.coderanch.com/t/657413/Web-Services/java/CXF-Client-WS-Addressing-attributes http://www.coderanch.com/t/657413/Web-Services/java/CXF-Client-WS-Addressing-attributes

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM