问题是当我在VS2012中创建一个新的解决方案并添加wcf的服务引用时,一切正常。但是,当我向我的一个项目添加相同的服务引用时,方法会收到超时异常。问题可能是当我添加对项目的引用时,在我取消选中“重用引用程序集中的类型”选项之前,visual studio不会创建代码。我检查了配置文件,但看不出任何区别。我还是包含了配置文件的一部分:
<system.serviceModel>
<client>
<endpoint address="url"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IService"
contract="NewsBannersCampaignService.IService" name="BasicHttpBinding_IService" />
</client>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IService" />
</basicHttpBinding>
<wsHttpBinding>
<binding name="DefaultBinding">
<security mode="Message">
<message clientCredentialType="UserName" />
</security>
</binding>
</wsHttpBinding>
</bindings>
<services>
<service behaviorConfiguration="DefaultBehavior" name="project.Services.Integration">
<endpoint address="" binding="wsHttpBinding" bindingConfiguration="DefaultBinding" name="Integration" contract="project.Services.IIntegration" />
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
</service>
</services>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
编辑:对于任何可能遇到此问题的人;在我的情况下的问题是我忘了删除配置文件中的defaultProxy设置。删除后一切正常。我刚刚删除了
<system.net>
<defaultProxy>
<proxy proxyaddress="http://address" bypassonlocal="True" />
</defaultProxy>
</system.net>