菜鸟教程小白 发表于 2022-12-13 10:05:59

iOS 使用 HTTPS 使用 WCF 服务


                                            <p><p>我正在开发一个 iPad 应用程序,它将使用 WCF 服务 HTTPS(可能使用肥皂)。</p>

<p>我在 iPad 上使用 NSURLConnection 连接到 HTTP 网络服务并且工作正常。但是 WCF 服务将使用 HTTPS。
WCF 作为一些不同的配置(例如安全模式:Transport、Message 和 TransportWithMessageCredential)。 </p>

<p>iPad 使用 HTTPS 使用 WCF 服务是否有任何限制?最好的方法是什么?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以使用 NSURLConnection 本身。如果您想在连接到服务器时处理安全凭据,您必须查看以下方法,</p>

<pre><code>- (BOOL)connection:(NSURLConnection *)conn canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace

- (void)connection:(NSURLConnection *)conn didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
</code></pre>

<p>以下来自 Apple 的示例项目将为您提供帮助,</p>

<p> <a href="http://developer.apple.com/library/ios/#samplecode/AdvancedURLConnections/Introduction/Intro.html" rel="noreferrer noopener nofollow">http://developer.apple.com/library/ios/#samplecode/AdvancedURLConnections/Introduction/Intro.html</a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于iOS 使用 HTTPS 使用 WCF 服务,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/8355832/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/8355832/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iOS 使用 HTTPS 使用 WCF 服务