我们需要从另一个WCF服务调用WCF服务。为了测试这个,我构建了一个示例控制台应用程序来显示一个简单设置是: 控制台应用程序 - > WCF服务1 - > WCF服务2 Console App调用服务1的方法,服务1方法最终调用service 2方法以返回字符串。我可以调用Console - >服务1但服务1 - >服务2无法正常工作。它引发了一个异常: “无法在ServiceModel客户端配置部分找到引用合同'ITestService2'的默认端点元素。这可能是因为没有为您的应用程序找到配置文件,或者因为在客户端元素中找不到与此合同匹配的端点元素。” 为了实现这一点,我创建了一个WCF服务2,其中一个方法返回一个字符串(没什么特别的)。
namespace TestServices
{
[ServiceContract]
public interface ITestService2
{
[OperationContract]
string GetSomething(string s);
}
}
然后我创建service1 - ITestService1.cs和TestService1.cs,它们使用service2方法GetSomething()。
namespace TestServices
{
[ServiceContract]
public interface ITestService1
{
[OperationContract]
string GetMessage(string s);
}
}
namespace TestServices
{
class TestService1 : ITestService1
{
public string GetMessage(string s)
{
TestService2 client = new TestService2();
return client.GetSomething("WELCOME " + s);
}
}
}
注意:我使用svcutil.exe为Service2创建代理。它创建了我在TestService1项目文件夹中复制的app.config和TestService2.cs文件以供参考。
最后,我创建了一个控制台应用程序,它只创建一个Service1实例并调用GetMessage()方法。
static void Main(string[] args)
{
TestService1 client = new TestService1();
Console.WriteLine(client.GetMessage("Roger Harper"));
Console.ReadKey();
}
当我直接从控制台应用程序调用服务2时,它没有任何问题。在服务1中复制时,相同的配置和代理类会引发错误。配置文件如下所示: 控制台应用程序中服务1的配置文件:
<configuration>
<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="WSHttpBinding_ITestService1" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
allowCookies="false">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<reliableSession ordered="true" inactivityTimeout="00:10:00"
enabled="false" />
<security mode="Message">
<transport clientCredentialType="Windows" proxyCredentialType="None"
realm="" />
<message clientCredentialType="Windows" negotiateServiceCredential="true"
algorithmSuite="Default" establishSecurityContext="true" />
</security>
</binding>
</wsHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:3227/WCFTestSite/TestService1.svc"
binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_ITestService1"
contract="ITestService1" name="WSHttpBinding_ITestService1">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
</client>
</system.serviceModel>
</configuration>
service1文件夹中服务2的配置文件:
<configuration>
<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="WSHttpBinding_ITestService2" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
allowCookies="false">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<reliableSession ordered="true" inactivityTimeout="00:10:00"
enabled="false" />
<security mode="Message">
<transport clientCredentialType="Windows" proxyCredentialType="None"
realm="" />
<message clientCredentialType="Windows" negotiateServiceCredential="true"
algorithmSuite="Default" establishSecurityContext="true" />
</security>
</binding>
</wsHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:3227/WCFTestSite/TestService2.svc"
binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_ISriWCFTestService2"
contract="ITestService2" name="WSHttpBinding_ITestService2">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
</client>
</system.serviceModel>
</configuration>
感谢有人可以帮我解决这个问题。我也尝试使用命名空间为合同名称加前缀,但它不起作用。不确定相同的配置/代理如何直接从控制台工作,而不是在另一个服务中工作。请帮忙!!!提前致谢。
答案 0 :(得分:1)
从我的不足看,你有一个控制台应用程序,它自己托管一个服务调用第二个wcf服务的wcf服务。我猜你有一个在控制台应用程序加载然后尝试调用的dll中定义的wcf service1。我认为您的问题可能是sice服务1在dll中没有加载配置文件,您已经定义了服务的链接2.尝试以编程方式创建端点,看看是否能让您彻底解决问题。