我使用下面的代码来访问soap web服务。但我得到例外。请帮忙。
例外:
org.xmlpull.v1.XmlPullParserException: expected:
START_TAG {http://schedmas.xmlsoap.org/soap/envelope/}
Envelop (position:START_TAG<definitions targetNamespace='urn:schedule'>@2:425 in java.io.InputStreamreader@43d36520)
代码:
public SoapObject soap(String METHOD_NAME, String SOAP_ACTION, String NAMESPACE, String URL) throws IOException, XmlPullParserException {
SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME); //set up request
request.addProperty("access_key", "5rrtrtr");
request.addProperty("type", "facebook");
request.addProperty("access_secrete", "5rtrt");
request.addProperty("message", "5");
request.addProperty("date", "2010/12/16");
request.addProperty("time", "05:10:00");
request.addProperty("ampm", "AM");
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.setOutputSoapObject(request); //prepare request
HttpTransportSE httpTransport = new HttpTransportSE(URL);
httpTransport.debug = true;
httpTransport.call(SOAP_ACTION, envelope); //send request
SoapObject result=(SoapObject)envelope.getResponse(); //get response
return result;
}
答案 0 :(得分:0)
我不确定,但在我的情况下,我检查了网址&amp; namespace.I我得到了同样的错误。请先尝试一下。