这是我在这里的第一篇文章。通常,我会在其他线程上找到我的答案,但这次我真的很难过。
我有一个 Silverlight 应用程序,我可以连接到我的网络服务来发送/接收数据,除了我拥有的一页。所有其他页面,我可以获取数据、进行更改并将其发送回服务。在这一页中,我尝试将数据发送到服务,它为我提供了 Web 服务器的登录框。无论我是否输入凭据,我都会收到错误“远程服务器返回错误:未找到”。我有一个在页面加载事件中加载的组合框,它从服务中获取数据就好了。
任何帮助表示赞赏。
这是我的 web.config 文件:
<configuration>
<system.web>
<authentication mode="Windows"/>
<compilation debug="true" strict="false" explicit="true" targetFramework="4.0" />
<customErrors mode="Off"/>
</system.web>
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior name="">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="false" />
</behavior>
</serviceBehaviors>
</behaviors>
<bindings>
<customBinding>
<binding name="Network_Integrity_Control_Panel.Web.Service_AD_SQL.customBinding0">
<binaryMessageEncoding />
<httpTransport authenticationScheme="Negotiate"/>
</binding>
</customBinding>
</bindings>
<serviceHostingEnvironment
aspNetCompatibilityEnabled="true"
multipleSiteBindingsEnabled="true" />
<services>
<service name="Network_Integrity_Control_Panel.Web.Service_AD_SQL">
<endpoint address="" binding="customBinding" bindingConfiguration="Network_Integrity_Control_Panel.Web.Service_AD_SQL.customBinding0"
contract="Network_Integrity_Control_Panel.Web.Service_AD_SQL" />
<endpoint address="mex" binding="customBinding" bindingConfiguration="Network_Integrity_Control_Panel.Web.Service_AD_SQL.customBinding0"
contract="IMetadataExchange" />
</service>
</services>
</system.serviceModel>
</configuration>