需要azure mobileservice代理身份验证

时间:2013-05-08 11:52:37

标签: azure proxy azure-mobile-services

我正在开发一个使用Azure MobileServices在Azure中存储数据的Windows应用商店应用。只要我没有使用代理,一切都运行良好但是一旦我的移动服务连接通过代理,我就会得到一个HttpRequestException:“远程服务器返回错误:(407)代理验证需要“。

我正在使用 MobileServiceClient 类的实例连接到我的移动服务。

public static MobileServiceClient MobileService = new MobileServiceClient(
        "https://xxxxxx.azure-mobile.net/",
        "xxxxxx"
    );

如何使Windows应用商店应用使用默认系统代理(如IE中的LAN设置中指定)连接到Azure MobileService?

TIA

1 个答案:

答案 0 :(得分:1)

这不是Azure或移动服务的问题,这完全是使用Windows应用程序和需要身份验证的Web代理的问题。

Microsoft acknowledges此问题但暂时不提供任何解决方案,只是白名单列出您要访问的地址,以便绕过代理呼叫。