2013-07-08 166 views
0

我正在编写.Net c#中的Web服务客户端,它消耗舞台和生产Web服务。Web方法的功能在阶段和生产中都是相同的。 客户希望能够使用来自生产和舞台Web服务的Web方法进行一些数据验证。我可以这样做,生成两个独立的代理类,也是两个独立的代码库。有没有更好的办法,这样我可以做类似下面共享Web服务方法

if (clintRequest=="production") 
    produtionTypeSoapClient client= new produtionTypeSoapClient() 
else 
    stageSoapClient client= new stagetypeSoapClient() 
//Instantiate object. Now call web methods 

client.authenticate 
client.getUsers 
client.getCities 
+0

您正在使用的Web引用,或一个服务引用(首选)? –

回答

2

你应该能够只用一个客户端脱身消除冗余代码。如果合同相同,则可以通过编程方式指定端点配置和远程地址。

让我们说,你有这样的事情:

1) Staging - http://staging/Remote.svc 
2) Production - http://production/Remote.svc 

如果您正在使用Visual Studio,你应该能够生成两个端点的客户端。

你应该,那么,能够做这样的事情:

C#代码:

OurServiceClient client; 
if (clientRequest == "Staging") 
    client = new OurServiceClient("OurServiceClientImplPort", "http://staging/Remote.svc"); 
else 
    client = new OurServiceClient("OurServiceClientImplPort", "http://production/Remote.svc"); 

这应该允许您使用一组对象以绕过。该“OurServiceClientImplPort”部分以上引用的配置文件端点:

配置:

<system.serviceModel> 
    <bindings> 
     <basicHttpBinding> 
      <binding name="OurServiceClientSoapBinding" openTimeout="00:02:00" receiveTimeout="00:10:00" sendTimeout="00:02:00" allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard" maxBufferSize="2147483647" maxBufferPoolSize="524288" maxReceivedMessageSize="2147483647" messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered" useDefaultWebProxy="true"> 
       <readerQuotas maxDepth="128" maxStringContentLength="9830400" maxArrayLength="9830400" maxBytesPerRead="40960" maxNameTableCharCount="32768"/> 
       <security mode="TransportCredentialOnly"> 
       <transport clientCredentialType="Basic" realm=""/> 
       </security> 
      </binding> 
     </basicHttpBinding> 
    </bindings> 
    <client> 
     <!-- This can be either of the addresses, as you'll override it in code --> 
     <endpoint address="http://production/Remote.svc" binding="basicHttpBinding" bindingConfiguration="OurServiceClientSoapBinding" contract="OurServiceClient.OurServiceClient" name="OurServiceClientImplPort"/> 
    </client> 
</system.serviceModel>