这是我在这里发表的第一篇文章。通常情况下,我会在其他主题上找到答案,但这次我真的很难过。
我有一个Silverlight应用程序,我可以连接到我的webservice来发送/接收数据就好了,除了我有一个页面。所有其他页面,我可以获取数据,进行更改并将其发送回服务。这一页,我尝试将数据发送到服务,它给了我一个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>
答案 0 :(得分:0)
首先,欢迎来到SO
。
它为您提供了一个登录框,因为您的身份验证模式为Windows
我从您的配置中看到您的端点地址为空address=""
。
您应该在代码或配置文件中提供地址。
查看Microsoft资源http://msdn.microsoft.com/en-us/library/ff648505.aspx