如何通过WebService向服务器提交XML字符串

时间:2014-02-14 04:30:17

标签: android web-services android-ksoap2

我想通过Android设备中的webservce将以下xml字符串提交给服​​务器。

<?xml version="1.0" encoding="utf-8"?>
<submit>
 <work pk_sysuser="u0001" pk_work="work0001">
  <captaincompany>abc</captaincompany>
   <task_list>
    <task itemcode="t0001">2</task>
     <task itemcode="t0002">2013-12-31 12:00:00</task>
     <task itemcode="t0003">2013-12-31 13:00:00</task>
     <task itemcode="t0004">2</task>
     <task itemcode="t0005">Y</task>
     </task_list>
     <signaturepath>pic string</signaturepath>
 </work>
</submit> 

如果我按如下方式创建soapobject: soapobject.addproperty(“workdata”,xmlString);

并将其发送到将导致java.io.eofexception的服务器。 任何人都可以帮助我吗?

0 个答案:

没有答案