我在 Azure 上创建了一个虚拟机,上面安装了 Windows Server 2012 和 SQL Server 2012。我还打开了在 vm 上打开的入站端口 80 和 1433。
我创建了一个数据库和报告(rdl)并部署到服务器。
当我编写一个简单的 WinForms 应用程序时,它能够呈现托管在 vm 的 ReportServer 上的报告。
现在我正在编写一个 WP7 应用程序来通信并从远程服务器获取 xml。这次我收到一个错误:
远程服务器返回错误:NotFound
内部异常:System.Net.HttpStatusCode.Unauthorized
我不确定问题出在哪里;我需要从服务器端做任何事情吗?
客户端
下面是我的配置和代码:
1) 如本文所述,我添加了对报告服务器的服务引用,下面是 ServiceReferences.ClientConfig 文件:
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="ReportExecutionServiceSoap" maxBufferSize="2147483647"
maxReceivedMessageSize="2147483647">
<security mode="None" />
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://virtualmachine.cloudapp.net:80/ReportServer/ReportExecution2005.asmx"
binding="basicHttpBinding" bindingConfiguration="ReportExecutionServiceSoap"
contract="ServiceReference1.ReportExecutionServiceSoap" name="ReportExecutionServiceSoap" />
</client>
</system.serviceModel> </configuration>
2)以下是我的代码:
void MainPage_Loaded(object sender, RoutedEventArgs e)
{
ReportExecutionServiceSoapClient client = new ReportExecutionServiceSoapClient();
client.LogonUserCompleted += new EventHandler<System.ComponentModel.AsyncCompletedEventArgs>(client_LogonUserCompleted);
client.LogonUserAsync("username", "password", "virtualmachine.cloudapp.net");
}
这里的用户名是“管理员”,我用来登录虚拟机。那会是个问题吗?
服务器端
下面是我的 Reportserver\web.config
<authentication mode="Windows" />
<identity impersonate="true" />
下面是我的 Reportserver\rsreportserver.config
<Authentication>
<AuthenticationTypes>
<RSWindowsNTLM/>
</AuthenticationTypes>
<RSWindowsExtendedProtectionLevel>Off</RSWindowsExtendedProtectionLevel>
<RSWindowsExtendedProtectionScenario>Proxy</RSWindowsExtendedProtectionScenario>
<EnableAuthPersistence>true</EnableAuthPersistence>