SIlverlight中的通信异常5

时间:2012-03-13 20:09:46

标签: wcf silverlight web-services communicationexception

我有以下问题。我在本地IIS上托管WCF服务,并希望从我的Silverlight 5应用程序中获取数据。我使用ASP.NET托管了Silverlight项目,并且我一直在获得通信异常。

提一下,我没有创建wcf启用Silverlight的服务。是吗?

我的Silverlight .clientconfig:

<configuration>
<system.serviceModel>
    <bindings>
        <basicHttpBinding>
            <binding name="BasicHttpBinding_IService" maxBufferSize="2147483647"
                maxReceivedMessageSize="2147483647">
                <security mode="None" />
            </binding>
        </basicHttpBinding>
    </bindings>
    <client>
        <endpoint address="http://localhost:21016/Service.svc" binding="basicHttpBinding"
            bindingConfiguration="BasicHttpBinding_IService" contract="ServiceReference.IService"
            name="BasicHttpBinding_IService" />
    </client>
</system.serviceModel>

我已经阅读了一些关于该异常的主题,但我没有找到任何有用的东西。

Tnx:)

0 个答案:

没有答案