gpt4 book ai didi

iphone - 如何通过 SOAP 传输类的实例?

转载 作者:行者123 更新时间:2023-11-29 13:42:05 25 4
gpt4 key购买 nike

我有一个通过 SOAP 与网络服务通信的应用程序。到目前为止,通信都是严格的字符串值等。其中一些值在类中,一些不在类中。

我的问题是:是否可以通过 SOAP 传递类的实例?

语法类似于..

//class declaration in .h
Myclass class

在.m

 class.string = @"stuff";
class.integer = 5;

然后创建 SOAP 字符串

[NSString stringWithFormat:@"<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<stuff xmlns="http://website.com/">
<class>%@</class>
</stuff>
</soap:Body>
</soap:Envelope>,class];

只要网络服务知道如何处理,这样的事情就可能吗?

最佳答案

要传输类的实例,请查看 NSCoding协议(protocol)。

Archiving and Serializations Programming Guide有一些关于如何做你所要求的事情的例子,特别是 Encoding and Decoding Objects章。

关于iphone - 如何通过 SOAP 传输类的实例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8810377/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com