我正在使用使用 RPC 编码的老式设计 WebService。
我的问题似乎与 XML 类型有关。
WSDL 中的一个方法:
<message name="WsPublic_DHT_GetData1Request">
<part name="ALogin" type="xs:string" />
<part name="Aid" type="xs:int" />
<part name="ARow" type="xs:int" />
<part name="ADt" type="xs:dateTime" />
<part name="ADt2" type="xs:dateTime" />
<part name="Afilter" type="xs:string" />
</message>
如您所见,它使用 xs:types。
现在让我们看看我是如何在我的 Java 客户端上调用它的:
Object[] argmts = {"USER=PASSWORD", 15089, 10, "2012-02-16 00:00", "2012-02-16 20:01", ""};
Object lsVal = call.invoke(argmts);
Alogin 包含由“=”分隔的登录名 + 密码。我已经用 vbs 脚本测试了这个 Web 服务,它可以工作。
问题是在执行时,网络服务不断返回我:lsVal = Error_login
我使用的凭证很好,所以我敢打赌这是一个错误的转换 beetween java's String 到 xs:string。我试图手动定义调用的参数,但我只找到了 XSD 类型,它返回了相同的 Error_login 答案。我想知道我是不是错过了什么。有人可以解释一下吗?
这是完整的 .java
package com.verallia.testapp;
import javax.xml.namespace.QName;
import javax.xml.rpc.Call;
import javax.xml.rpc.Service;
import javax.xml.rpc.ServiceFactory;
import javax.xml.rpc.encoding.XMLType;
public class JavaApplication1 {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
try {
// create the Service client object
// using the wsdl and his service name
QName serviceName = new QName(
"IWS_VMS_PUBLIC_DHTservice",
"VisualManagerWS");
ServiceFactory factory = ServiceFactory.newInstance();
Service service = factory.createService(serviceName);
// Call object
Call call = service.createCall();
// operation name
QName operationName = new QName(
"http://10.153.14.29:1024/wsdl/IWS_VMS_PUBLIC_DHT", "WsPublic_DHT_GetData");
call.setOperationName(operationName);
QName portName = new QName(
"IWS_VMS_PUBLIC_DHTPort","IWS_VMS_PUBLIC_DHTPort");
call.setPortTypeName(portName);
// setting return type
call.setReturnType(XMLType.XSD_STRING, String.class);
// specify the RPC-style operation.
call.setProperty(Call.OPERATION_STYLE_PROPERTY,
"rpc");
// and the encoding style
call.setProperty(
Call.ENCODINGSTYLE_URI_PROPERTY,
"http://schemas.xmlsoap.org/soap/encoding/");
// the target endpoint
call.setTargetEndpointAddress(
"http://10.153.14.29:1024/soap/IWS_VMS_PUBLIC_DHT");
//call.
// Invoke the method
Object[] myArgs = {"WS_TALEND=TALEND", 15089, 10, "2012-02-16 00:00", "2012-02-16 20:01", ""};
for (Object o : myArgs)
{
System.out.println(o.toString());
}
Object lsVal = call.invoke(myArgs);
System.out.println("Returned XML String : " + lsVal.toString());
} catch (Throwable th) {
th.printStackTrace();
}
}
}