任何方式使用axis2客户端Web服务没有生成存根类?

时间:2010-01-13 17:48:06

标签: axis2

是否有任何方法可以利用java接口文件调用轴Web服务而不生成存根类?我们控制双方(客户端和服务器)。

1 个答案:

答案 0 :(得分:1)

是的,您可以使用org.apache.axis2.client.ServiceClient使用“adhoc”客户端。它看起来像这样。

import org.apache.axis2.client.ServiceClient;
import org.apache.axiom.om.OMAbstractFactory;
import org.apache.axiom.om.OMContainer;
import org.apache.axiom.om.OMElement;
import org.apache.axiom.om.OMFactory;
import org.apache.axiom.om.OMNamespace;
import java.net.URL;


...
String endpoint = "http://wsendpoint.com/ServiceName"
 QName operation = new QName("http://namespace","WsRequest");               
             OMElement payload = buildPayload("requestdata");


 try{
                   ServiceClient sender= new ServiceClient(
                            null,
                            new URL(endpoint),
                            null,
                            null);
                   OMElement result = sender.sendReceive(operation,payload);
           logger.debug("response is:" + result.toString());                                   

                    }

             }catch (Exception e)  {
                 logger.debug("exception caught: " + e.getMessage());
             }