我正在尝试使用来自android的Soap调用magento api,但我得到的是XMLpullparser异常。我正在使用ksoap库。我在谷歌上搜索但我找不到任何解决方案。我是我的代码..
1 import java.io.IOException;
2 import org.ksoap2.SoapEnvelope;
3 import org.ksoap2.serialization.SoapObject;
4 import org.ksoap2.serialization.SoapSerializationEnvelope;
5 import org.ksoap2.transport.AndroidHttpTransport;
6 import org.xmlpull.v1.XmlPullParserException;
7 import android.app.Activity;
8 import android.os.Bundle;
9 import android.util.Log;
10 public class MagentoSoapActivity extends Activity {
11 /** Called when the activity is first created. */
12 private static final String NAMESPACE = "urn:Magento";
13 private static final String Method_Name="login";
14 private static final String URL ="http://www,mymagento,com/api/soap/?wsdl=1";
15 private static final String SOAP_ACTION ="urn:Magento/login";
16 @Override
17 public void onCreate(Bundle savedInstanceState) {
18 super.onCreate(savedInstanceState);
19 setContentView(R.layout.main);
20 try {
21 SoapObject request = new SoapObject(NAMESPACE,Method_Name);
22 request.addProperty("username", "XXX");
23 request.addProperty("apiKey", "YYY");
24 SoapSerializationEnvelope envelopes = new SoapSerializationEnvelope(
25 SoapEnvelope.VER11);
26 envelopes.dotNet = false;
27 envelopes.xsd = SoapSerializationEnvelope.XSD;
28 envelopes.enc = SoapSerializationEnvelope.ENC;
29 envelopes.setOutputSoapObject(request);
30 AndroidHttpTransport androidHttpTransport = new AndroidHttpTransport(URL);
31 androidHttpTransport.debug =true;
32 androidHttpTransport.call(SOAP_ACTION, envelopes);//Getting the Exception here
33 Object result = envelopes.getResponse();
34 Log.d("sessionId", result.toString());
35 //making call to get list of customers
36 String sessionId = result.toString();
37 request = new SoapObject(NAMESPACE,"customerCustomerList");
38 request.addProperty("sessionId",sessionId );
39 envelopes.setOutputSoapObject(request);
40 androidHttpTransport.call(SOAP_ACTION, envelopes);
41 result = envelopes.getResponse();
42 Log.d("Customer List", result.toString());
43 } catch (Exception e) {
44 e.printStackTrace();
45 }
46 }
47 }
下面是stacktrace:
org.xmlpull.v1.XmlPullParserException: expected: START_TAG
{http://schemas.xmlsoap.org/soap/envelope/}Envelope (position:START_TAG <definitions
name='Magento' targetNamespace='urn:Magento'>@4:50 in
java.io.InputStreamReader@44f13f40)
请帮助我,我真的很沮丧这个错误。 提前致谢
答案 0 :(得分:6)
从适合我的网址中删除后缀“?wsdl”。 希望这有助于某人〜
答案 1 :(得分:3)
更改:
private static final String URL ="http://indieswebs.in/demostore/api/soap/?wsdl=1";
要
private static final String URL ="http://indieswebs.in/demostore/api/soap";
相关:
答案 2 :(得分:1)
我解决了我的问题。我改变了完整的代码而不是现在使用SOAP我使用的是XMLRPC。http://code.google.com/p/android-xmlrpc/有XmLRPC库,还有如何使用这个库的例子。
这是如何在android http://inchoo.net/mobile-development/android-development/parsing-the-xmlrpc-webservice-response-in-android/
中解析此响应的链接希望这有助于某人。
感谢大家的回复。
答案 3 :(得分:1)
我们已经在这类应用程序上做了很多工作,我们刚刚开源了适用于Android和iOS的SDK,以简化与Magento API的连接。也许它可以帮助您进行开发或为您提供有关如何解决此问题的建议,因为我们还使用ksoap进行SOAP通信:http://github.com/agilemonkeys/meets-android