SudzC iPhone 请求
我想要一些有关 iPhone 版 SudzC 的说明。 SudzC 支持 SOAP 1.2 吗? 我尝试将 SudzC 与 Web 服务 http://www.restfulwebservices.net/wcf/CurrencyService 一起使用.svc?wsdl 并且它工作正常,但对于我的网络服务却不行。我能发现的唯一区别是上面的服务使用 SOAP1.1,而我的服务使用 1.2。
问候,
EC
I wanted some clarification regarding SudzC for iPhone. Does SudzC support SOAP 1.2?
I tried using SudzC with the web service http://www.restfulwebservices.net/wcf/CurrencyService.svc?wsdl and it works fine but with my web service it doesn't. The only difference I can spot is that the above service uses SOAP1.1 while mine used 1.2.
Regards,
EC
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你几乎回答了你自己的问题。需要 SOAP 1.2 消息的服务不需要向后兼容 SOAP 1.1 格式的消息。您可以将 WCF 配置为接受 Soap 1.1 消息 通过创建自定义绑定,如下所示。 虽然该 WCF 配置适用于客户端,但您也可以配置服务以使用该自定义绑定。如果服务需要支持soap 1.2消息,您只需按原样保留现有端点配置并为soap 1.1自定义绑定创建一个新端点。
You pretty much answered your own question. A service expecting a soap 1.2 message is not required to be backward compatible to soap 1.1 formatted messages. You can configure WCF to accept soap 1.1 messages by creating a custom binding as show here. Although that WCF config is for a client, you can also configure a service to use that custom binding. If the service needs to support soap 1.2 messages, you can just leave your existing endpoint configured as-is and create a new endpoint for the soap 1.1 custom binding.