Objective C 和 apex Web 服务
我需要向 apex web 服务发送一些数据。然后,Web 服务的名称是“UpdateData”,方法的名称是“update”,它采用以下参数:
id = String
type = String
BinaryObject = Blob / Base64 Encoded value
BinaryObjectType = String
我还获得了一个 WSDL 文件。
我不知道如何将此数据发送到网络服务,有人可以指出我正确的方向吗?谢谢。
I need to send an apex web service some data. Then name of the webservice is "UpdateData" and the name of the method is "update" and it takes these params:
id = String
type = String
BinaryObject = Blob / Base64 Encoded value
BinaryObjectType = String
I was also given a WSDL file.
I have no idea how to send this data to the web service, can someone point me in the correct direction? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
iOS 没有好的soap/wsdl 堆栈。您可能想查看 force.com iOS 工具包,它包含一些帮助调用自定义 apex Web 服务的代码。
There's no good soap/wsdl stack for iOS. You might want to look at the force.com iOS toolkit, it contains some code to help call custom apex web services.