0

我遇到了一个概念问题,阻止我解决一个微不足道的问题。我需要将对象发送到 Web 服务。我有一个端点,并且我有可以序列化对象的代码,所以我可以创建一个包含序列化对象的 org.jdom.Document 或 byte[] 对象。

我还可以创建一个使用axis2 调用Web 服务的客户端片段。最后,我尝试将手动创建的消息发送到 Web 服务(它没有 WSDL ;( )并且我使用 Charles 来查看发生了什么(请求)。

我不知道如何将 byte[] 或 org.jdom.Document 对象转换为 OMElement 对象。显然 serviceClient.sendReceive(elem) 需要一个 OMElement 参数。

到目前为止,这是我尝试过的(一旦我确信它会消失,我就删除了我发送的 OMElement):

package testAxis2Client01;

import java.util.Map;

import javax.xml.stream.XMLStreamException;

import org.apache.axiom.om.OMAbstractFactory;
import org.apache.axiom.om.OMElement;
import org.apache.axiom.om.OMFactory;
import org.apache.axiom.om.OMNamespace;
import org.apache.axiom.soap.SOAPEnvelope;
import org.apache.axis2.addressing.EndpointReference;
import org.apache.axis2.client.Options;
import org.apache.axis2.client.ServiceClient;
import org.apache.axis2.transport.http.HTTPConstants;

public class testAxis2Client01 {

               private static final int MXMOCONNECTIONTIMEOUT = 2;//don't really know what this should be.
               /**
               * @param args
               */
               public static void main(String[] args) {
                              try {
                                             callAxisWS();
                              } catch (XMLStreamException e) {
                                             e.printStackTrace();
                              } catch (Exception e) {
                                             e.printStackTrace();
                              }

               }
public static void callAxisWS() throws XMLStreamException, Exception {

                              //Axis2 client code to call a WS

                              OMElement response=null;
                              try{
                                             OMFactory factory = OMAbstractFactory.getSOAP11Factory();
                                             SOAPEnvelope theEnvelope = OMAbstractFactory.getSOAP12Factory().getDefaultEnvelope();
                                             theEnvelope.declareNamespace("http://www.w3.org/2001/XMLSchema","xsd");
                                             theEnvelope.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");

                                             ServiceClient serviceClient = new ServiceClient();
                                             Options options = serviceClient.getOptions();
                                             options.setProperty(HTTPConstants.AUTO_RELEASE_CONNECTION, true);               // Another API to release connection.
                                             options.setTimeOutInMilliSeconds(10000); // Setting the connection timeout.
                                             EndpointReference targetEPR = new EndpointReference(theUrl);
                                             options.setTo(targetEPR);
                                             options.setAction("processDocument");

                                             serviceClient.setOptions(options);
                                             //response = serviceClient.sendReceive(myOMElement);
                                             response = serviceClient.sendReceive(elem)
                                             if (response != null) {
                                                            System.out.println("SUCCESS!!");
                                                            System.out.println(response.toStringWithConsume());
                                             }
                              }catch(Exception af){
                                            af.printStackTrace();
                                            System.out.println(af.getMessage());
                              }

               }
}
4

1 回答 1

0

使用axis2的重点是它可以处理所有事情。您只需要提供一个 wsdl 文件,它就会生成客户端存根。如果您没有原始 wsdl,您仍然可以自己制作一个。

对您来说最好的方法是手动创建 wsdl 文件,生成客户端存根并直接调用存根。

于 2013-10-31T20:54:57.657 回答