how to solve org.xmlpull.v1.XmlPullParserException: unexpected type (position:END_DOCUMENT null@1:1 in java.io.InputStreamReader@40d310f0)

后端 未结 1 1230
耶瑟儿~
耶瑟儿~ 2021-01-22 04:38

i have create simple webservice using jax-ws. i need to consume that webservice in android. when i consume that webservice i got this error org.xmlpull.v1.XmlPull

相关标签:
1条回答
  • 2021-01-22 04:49

    After talking to @jeevamuthu, the problem was he had to add the ksoap library to his build path, and make minor adjustments to his code. If you are having a similar issue please contact @jeevamuthu for information in solving this problem.

    PropertyInfo propInfo = new PropertyInfo(); 
    propInfo.name = "arg0"; propInfo.value=cu; 
    propInfo.type = Customer.class; 
    request.addProperty(propInfo);
    
    0 讨论(0)
提交回复
热议问题