我正在尝试从我们制作的dll中调用WCF Web服务,在我们的CAD软件中运行。 我不能让它工作。
当我尝试建立代理时,出现以下错误:
在ServiceModel客户端配置部分找不到名为“BasicHttpBinding_IAxaptaService”的端点元素并签署“AxaptaProxy.IAxaptaService”。这可能是因为没有为您的应用程序找到配置文件,或者因为在客户端元素中找不到与此名称匹配的端点元素。
我搜索了abit,我认为问题是由于我的DLL在另一个程序中运行。 有一些关于将EndPoint配置从应用程序复制到服务的文章,但我没有抓到,我应该做什么。
任何人都有一个想法,我是如何做到这一点的?
由我的客户创建的App.Config是:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IAxaptaService" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="None">
<transport clientCredentialType="None" proxyCredentialType="None"
realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:4726/LM/AxaptaService.svc"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IAxaptaService"
contract="AxaptaProxy.IAxaptaService" name="BasicHttpBinding_IAxaptaService" />
</client>
</system.serviceModel>
</configuration>
我尝试将此合并到我的web.config中,在托管网络服务的网站上,如下所示:
<system.serviceModel>
<bindings>
<customBinding>
<binding name="GetStream.customBinding0">
<binaryMessageEncoding/>
<httpTransport/>
</binding>
</customBinding>
<basicHttpBinding>
<binding name="BasicHttpBinding_IAxaptaService" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="None">
<transport clientCredentialType="None" proxyCredentialType="None"
realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
</basicHttpBinding>
</bindings>
<behaviors>
<endpointBehaviors>
<behavior name="AutoCompletionAspNetAjaxBehavior">
<enableWebScript/>
</behavior>
</endpointBehaviors>
<serviceBehaviors>
<behavior name="">
<serviceMetadata httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true"/>
<services>
<service name="AutoCompletion">
<endpoint address="" behaviorConfiguration="AutoCompletionAspNetAjaxBehavior" binding="webHttpBinding" contract="AutoCompletion"/>
</service>
<service name="GetStream">
<endpoint address="" binding="customBinding" bindingConfiguration="GetStream.customBinding0" contract="GetStream"/>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
</service>
</services>
<client>
<endpoint address="http://localhost:4726/LM/AxaptaService.svc"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IAxaptaService"
contract="AxaptaProxy.IAxaptaService" name="BasicHttpBinding_IAxaptaService" />
</client>
</system.serviceModel>
其中还有其他一些东西。我可以删除它们,如果这样可以更容易。我把它们留了下来,因为它们对它有影响。
所以我从一个独立的winform应用程序测试了这个服务,它运行正常。 可能是因为App.config?我的配置是否加载了.dll?
答案 0 :(得分:3)
您需要将连接信息从MyDll.dll.config复制到Web.config。
小心合并配置部分,而不是简单地并排添加新数据或替换它。如果已经存在具有相同名称的部分,则可能需要将它们组合在一起。
这是一篇描述app.config的WCF部分内容的文章:
http://msdn.microsoft.com/en-us/library/ms734663.aspx
主要部分是:
<system.serviceModel>
<bindings>
<!-- various bindings go here... -->
</bindings>
<client>
<!-- endpoints go here... -->
</client>
</system.serviceModel>
您需要将这些节点中的所有内容组合在一起 - 将各种类型的endpoint
元素和binding
元素添加到服务的web.config中。
所以,如果你有一个如下所示的配置:
<system.serviceModel>
<bindings>
<someBindingType name="someBinding" />
</bindings>
<client>
<endPoint name="someEndpoint />
</client>
</system.serviceModel>
您需要复制someBindingType
和endPoint
元素。整个元素,包括结束标记(如果有的话)和子元素。
确保您不会复制system.serviceModel
,bindings
或client
元素。如果它们已经存在,则合并到它们中而不是创建新元素/重复。
答案 1 :(得分:1)
我终于开始工作了!
问题是,我的.dll项目中没有加载app.config。 为了解决这个问题,我在代码中创建了绑定,而不是通过app.config创建绑定,如此线程中所述: WCF Configuration without a config file
感谢您提供所有帮助。梅琳,没有你的帮助,我甚至都没有这么远。