java - 运行 axis2 客户端版本 1.5

标签 java exception soap client axis2

所以我已经没有办法尝试让客户端连接到我通过 axis2 运行的 SOAP 服务了。

我尝试了两种方法,一种是使用 wsdl2java 构建 stub 和关联的客户端类,然后编写一个客户端类来构建请求消息并通过 stub 发送它们。另一种方法是使用 ServiceClient 连接..

两者都以自己的方式失败..

选项 #1,每次通过 stub 发送消息时,我都会返回:

org.apache.axis2.AxisFault: The input stream for an incoming message is null.
at org.apache.axis2.transport.TransportUtils.createSOAPMessage(TransportUtils.java:87)
at org.apache.axis2.transport.TransportUtils.createSOAPMessage(TransportUtils.java:67)
at org.apache.axis2.description.OutInAxisOperationClient.handleResponse(OutInAxisOperation.java:354)
at org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:417)
at org.apache.axis2.description.OutInAxisOperationClient.executeImpl(OutInAxisOperation.java:229)
at org.apache.axis2.client.OperationClient.execute(OperationClient.java:165)

选项#2,每次我运行它都会得到这个异常:

org.apache.axis2.deployment.DeploymentException: org.apache.axis2.transport.local.LocalTransportSender

选项 #2 来源:

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.axis2.addressing.EndpointReference;
import org.apache.axis2.client.Options;
import org.apache.axis2.Constants;
import org.apache.axis2.client.ServiceClient;

public class loyaltyClient {

    private static EndpointReference targetEPR = 
         new EndpointReference(
           "http://localhost:8080/axis2/services/service");

    public static OMElement verifyCustomer(String customer_id) {
        OMFactory fac = OMAbstractFactory.getOMFactory();
        OMNamespace omNs = fac.createOMNamespace(
                "http://localhost/", "service");
        OMElement method = fac.createOMElement("VerifyCustomer", omNs);
        OMElement value1 = fac.createOMElement("customer_id",omNs);
        OMElement value2 = fac.createOMElement("source_id",omNs);
        OMElement value3 = fac.createOMElement("source_password",omNs);
        OMElement value4 = fac.createOMElement("source_txnid",omNs);
        OMElement value5 = fac.createOMElement("timestamp",omNs);

value1.addChild(fac.createOMText(value1, customer_id));
value2.addChild(fac.createOMText(value2, "source"));
value3.addChild(fac.createOMText(value3, "1234"));
value4.addChild(fac.createOMText(value4, "123"));
value5.addChild(fac.createOMText(value5, "06-01-2010 12:01:01"));
        method.addChild(value1);
        method.addChild(value2);
        method.addChild(value3);
        method.addChild(value4);
        method.addChild(value5);
        return method;
    }

    public static void main(String[] args) {
        try {
            OMElement vctest = loyaltyClient.verifyCustomer("6177740603");
            Options options = new Options();
            options.setTo(targetEPR);

options.setTransportInProtocol(Constants.TRANSPORT_HTTP);

            ServiceClient sender = new ServiceClient();
            sender.setOptions(options);
            OMElement result = sender.sendReceive(vctest);

            String response = result.getFirstElement().getText();
            System.out.println(response);

        } catch (Exception e) { //(XMLStreamException e) {
            System.out.println(e.toString());
        }
    }

最佳答案

在使用 Axis 连接到 .Net 服务提供商时,我也遇到了错误“传入消息的输入流为空”。

问题是 .Net 不支持称为“分块编码”的功能,默认情况下,Axis 会将其请求 header 分成 block ,这被认为是符合 HTTP 1.1 的。

无论如何,您可以通过执行以下操作在 Axis 中关闭此功能:

// Turn off the Axsis Chunked feature, some service providers (like .Net) don't support chunked headers.
Options options = serviceClient.getOptions();
options.setProperty(HTTPConstants.CHUNKED, Constants.VALUE_FALSE);
serviceClient.setOptions(options);            

这对我有用。处理 .Net 服务时要确保的另一件事是能够指定端口名称并确保您的消息负载具有每个元素的 namespace 前缀。

希望此信息对某人有所帮助。

干杯, 直流电

关于java - 运行 axis2 客户端版本 1.5,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2953557/

相关文章:

java - 在 SQLite 中使用 long 插入数据时出现问题始终返回 -1

java.lang.NullPointerException - 找不到 null 变量

c# - 将字符串转换为双重异常

java - Galaxy S4 Android 自定义相机问题

java - 更新 TeamCity Server SSL 证书后断开 TeamCity Build Agent

java - Joda Time 未得到预期结果

jquery - IE 8 JQuery .find() 不适用于 XML 字符串

c# - 我可以以编程方式启用/禁用中断异常吗?

php - 无法使用证书连接 BeSimpleSOAP 客户端

c# - 如何使用 dotnet 使用 ColdFusion Web 服务