使用包含属性的 Properties 创建 KSOAP 请求
有没有一种简单的方法可以使用 KSOAP2 for Android 创建一个请求,该请求包含本身包含属性的属性,而无需创建序列化的类?
请求应该包含某事。喜欢
<Code>
<OwnProperty firstAttribute="1stAttr" secondAttribute="2ndAttr"> propertyValue</OwnProperty>
</Code>
任何帮助表示赞赏, 里戈罗斯
is there an easy way to create a request with KSOAP2 for Android that contains Properties that themselves contain Attributes, without creating an class that gets serialized?
The Request should contain sth. like
<Code>
<OwnProperty firstAttribute="1stAttr" secondAttribute="2ndAttr"> propertyValue</OwnProperty>
</Code>
Any help is appreciated,
Rigoroth
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SoapObject 请求 = new SoapObject(命名空间,方法名称);
request.addAtribute("姓名","彼得");
我想你需要这些,抱歉我迟到了
SoapObject request = new SoapObject(Namespace,MethodName);
request.addAtribute("name","peter");
i think is these you need sorry i'm late
我认为如果不实现 KVSeriazable 这是不可能的
I don't think thats possible without implementing KVSeriazable