- 论坛徽章:
- 0
|
现在要在一个WEB程序调用.NET的一个Web Service
主要代码如下:
public static int login(String userId, String password) throws
MalformedURLException, RemoteException, NumberFormatException {
int ResultCode=123456;
try {
String i = new String("loginid");
String j = new String("password");
URL url = new URL("http://s2.iwtek.net/FVM/FVMService.asmx");
Service service = new Service();
Call call = (Call) service.createCall();
call.setTargetEndpointAddress(url);
call.setOperationName(new QName("http://tempuri.org/FVM/FVMService","login "));
call.addParameter("loginid",XMLType.XSD_STRING, ParameterMode.IN );
call.addParameter("password",XMLType.XSD_STRING, ParameterMode.IN );
call.setReturnType(org.apache.axis.encoding.XMLType.XSD_INT);
call.setUseSOAPAction(true);
call.setSOAPActionURI("http://tempuri.org/FVM/FVMService/login");
// ResultCode = Integer.parseInt((String)call.invoke(url,"http://tempuri.org/FVM/FVMService/login")) ;
ResultCode = Integer.parseInt((String)call.invoke(new Object[]{i,j})) ;
System.out.println(ResultCode);
}
catch (ServiceException ex) {
ex.printStackTrace();
}
return ResultCode;
}
但是出现了下面提示的错误,因为以前没怎么接触过.所以向各位请教.
AxisFault
faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
faultSubcode:
faultString: org.xml.sax.SAXException: SimpleDeserializer encountered a child element, which is NOT expected, in something it was trying to deserialize.
faultActor:
faultNode:
大概知道是什么错,但是因为不熟悉,不知道错误在那里. |
|