我在Win2008R2终端服务器上创建并部署了一个WCF客户端(从VSTO Word Addin启动)。
当执行WCF代理的默认构造函数时,抛出InvalidOperationException
,指出无法找到合同的默认端点。
部署到Win7 x64计算机时,相同的WCF客户端使用相同的.dll.config运行正常
我尝试在PowerShell中创建一个实例并收到同样的错误。
如果在PowerShell中创建专用端点,我可以执行服务方法:
$binding = New-Object System.ServiceModel.BasicHttpBinding
$endpoint = New-Object System.ServiceModel.EndPointAddress("http://myserver:7777/CompanyService.svc")
$client = New-Object MyClient.CompanyServiceReference.CompanyServiceClient($binding, $endpoint)
$v = $client.Version()
服务Web.config(部分)
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior>
<serviceMetadata httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
</behaviors>
<bindings>
<basicHttpBinding>
<binding name="NoHttpSecurity" sendTimeout="00:03:00">
<security mode="None" />
</binding>
</basicHttpBinding>
</bindings>
<services>
<service name="CompanyService">
<endpoint address="http://myserver:7777/mex" contract="IMetadataExchange" binding="mexHttpBinding" />
<endpoint name="Version" address="http://myserver:7777/Version" contract="MyService.ICompanyService" binding="basicHttpBinding" bindingConfiguration="NoHttpSecurity" />
<endpoint name="CompanyList" address="http://myserver:7777/CompanyList" contract="MyService.ICompanyService" binding="basicHttpBinding" bindingConfiguration="NoHttpSecurity" />
</service>
</services>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
MyClient.dll.config(部分)
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_ICompanyService" closeTimeout="00:01:00">
<security mode="None">
<transport clientCredentialType="None" proxyCredentialType="None" realm="" />
</security>
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://myserver:7777/CompanyService.svc" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_ICompanyService"
contract="CompanyServiceReference.ICompanyService" name="BasicHttpBinding_ICompanyService" />
</client>
</system.serviceModel>
更新
我通过将Client.config复制到Office程序文件夹并将其重命名为WINWORD.EXE.config来“修复”此问题。
答案 0 :(得分:9)
此问题是由部署项目在清单文件的注册表中没有正确的条目引起的。上面的解决方法是因为 - 没有找到加载项word / excel等的配置文件,请查看默认位置(它们的程序目录)并查找默认的配置文件名 - 在MsWord WINWORD.EXE的情况下。配置。
清单条目的错误表单是:
[TARGETDIR]Addin.vsto|vstolocal
应该是:
file:///[TARGETDIR]Addin.vsto|vstolocal
然后您的配置文件将正确加载。
有关详细信息,请参阅here
答案 1 :(得分:2)
您能以编程方式创建端点吗?
MyProxy proxy = new MyProxy (new BasicHttpBinding(), new EndpointAddress("http://server/Service.svc"));
如果这样可行,则很可能 是配置问题。
答案 2 :(得分:1)
我们通过Visual Studio 2010 .NET4创建的Excel 2010 Addin遇到了完全相同的问题。我们按照此帖中的更新修复程序修复了我们的问题,但希望详细说明我们的修复程序,请参阅下文。
<强>更新强> 我通过将Client.config复制到Office程序文件夹并将其重命名为WINWORD.EXE.config来“修复”此问题。
我们的修复细节如下:
我们从来没有弄清楚为什么会在某些机器上发生这种情况,而不是其他机器,但我们知道这个修复/解决方法允许我们继续测试Addin功能。我们处理出现此问题的Addin安装的解决方案是提供系统管理员可以运行的.bat或VB脚本,该脚本将配置文件复制并重命名到适当的位置。
我希望这些信息可以帮助每个人解决同样的问题,并澄清任何遗漏的细节:)