我有一个应用程序现在需要部署到应用程序商店,因为由于 Gatekeeper,它正在慢慢变得不可避免。
唯一的问题是 Web 请求似乎失败了,因为它们甚至没有被触发。
以下代码片段是从 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 实例。
干杯。