【问题标题】:Xamarin/Mono Mac - Handshake failure in AppStore buildXamarin/Mono Mac - AppStore 构建中的握手失败
【发布时间】:2014-05-07 12:30:09
【问题描述】:

我有一个应用程序现在需要部署到应用商店,因为有了 Gatekeeper,它正在慢慢变得不可避免。

唯一的问题是网络请求似乎失败了,因为它们甚至没有被触发。

以下代码 sn-p 已从 Xamarin Bugzilla 文章中提取,并在为 Release 和 Debug 构建时成功;

            try
            {
                WebClient test = new WebClient();
                Console.WriteLine("Testing SSL GET...");
                string testresponse = test.DownloadString(checkFileUrl);
                Console.WriteLine("testresponse = " + testresponse);
            } catch (Exception e)
            {
                Console.WriteLine(e.Message);
                Console.WriteLine(e.InnerException.Message);
            }

但是,当我使用沙盒和网络 IO 授权切换到 AppStore 构建时,请求永远不会被发送出去,正如 Charles 在非 SSL 解密模式下所验证的那样。以下内容从控制台吐出;

Testing SSL GET...
Error getting response stream (Write: The authentication or decryption has failed.): SendFailure
The authentication or decryption has failed.

这似乎是问题所在,因为我们使用对 IIS 服务的 SOAP 调用来执行操作,首先是登录。对于调试和发布,登录工作正常,因为调用已完成。再一次,AppStore 构建甚至没有尝试建立联系。

证书有效,并且 CA 已安装在我的钥匙串中。

在此之前,我在代码中(在调试中)遇到了一些异常,例如;

System.Exception..ctor (message="invalid encoding specification.") in /private/tmp/source/bockbuild-mono-3.2.6/profiles/mono-mac-xamarin/build-root/mono-3.2.6/mcs/class/corlib/System/Exception.cs:81

System.Exception..ctor (message="Store Root doesn't exists.") in /private/tmp/source/bockbuild-mono-3.2.6/profiles/mono-mac-xamarin/build-root/mono-3.2.6/mcs/class/corlib/System/Exception.cs:81

System.Exception..ctor (message="Store CA doesn't exists.") in /private/tmp/source/bockbuild-mono-3.2.6/profiles/mono-mac-xamarin/build-root/mono-3.2.6/mcs/class/corlib/System/Exception.cs:81

这仍然让我相信这是一个证书问题。测试 URL 是 S3 链接,登录服务器是具有有效证书的 EC2 实例。

干杯。

【问题讨论】:

  • 我也遇到过类似的问题,当我使用http 而不是https 时一切正常,但我想如果您需要SSL,这并不能解决您的问题

标签: c# ssl mono ssl-certificate xamarin.mac


【解决方案1】:

检查您的应用程序是如何打包的。

默认情况下,在构建项目时(在 Xamarin Studio 或 Visual Studio 中),它将调用一个名为 mtouch 的工具,其中包括托管代码的链接器。此工具用于从类库中删除应用程序未使用的功能。

或者mtouch希望你相信。

链接器行为的默认选项是Link all assembiles。这将使用mtouch 尝试通过修改用户代码使应用程序尽可能小。这可以并且将会破坏以mtouch 无法检测到的方式使用功能的代码(例如 Web 服务、反射或序列化)。

我使用的解决方法是禁用链接。通过将链接器行为更改为Don't Link,这将确保没有修改任何程序集。

您可以通过右键单击相关项目并选择Options来找到执行此操作的菜单:

Xamarin Studio - 项目选项窗口

尝试将链接器行为更改为Don't Link(如上所示)并重建。

更多信息

Xamarin Guides - Linker with iOS

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2018-07-28
    • 2017-06-19
    • 2023-03-26
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多