Как я могу установить адрес службы WCF из командной строки клиента при использовании spring.net

Мой сервис WCF может работать на любых серверах. Мой клиент - это консольное приложение. В параметрах командной строки я хочу установить адрес моей службы WCF. Тока в конфиге клиента у меня есть:

...
<spring>
    <context>
      <resource uri="assembly://MyAssembly.Console/MyAssembly.Console/ServerWeb.xml"/>
    </context>
  </spring>
...
<system.serviceModel>
 <client>
      <endpoint behaviorConfiguration="Default" name="serverWebDataServiceEndpoint" address="http://localhost/mydata/DataService.svc"
                binding="basicHttpBinding" bindingConfiguration="basicHttpBinding1" contract="MyData.Contracts.IDataService"/>
    </client>
...

Файл ServerWeb.xml является:

<?xml version="1.0" encoding="utf-8" ?>
<objects xmlns="http://www.springframework.net"
         xmlns:wcf="http://www.springframework.net/wcf">

  <wcf:channelFactory id="serverWebDataService"
    channelType="VimpelCom.Fmrad.Theseus.WcfDataLayer.CommonTypes.Contracts.IDataService, VimpelCom.Fmrad.Theseus.WcfDataLayer.CommonTypes"
    endpointConfigurationName="serverWebDataServiceEndpoint" />

</objects>

В приложении я использую следующий код для методов вызова:

IApplicationContext _ctx = ContextRegistry.GetContext();
IDataService _dataService = _ctx["serverWebDataService"] as IDataService;

var rule = _dataService.GetRuleById(ruleId);

Как я могу использовать другой адрес службы WCF из командной строки?

1 ответ

Попробуйте что-то подобное:

<wcf:channelFactory id="serverWebDataService"
    channelType="VimpelCom.Fmrad.Theseus.WcfDataLayer.CommonTypes.Contracts.IDataService, VimpelCom.Fmrad.Theseus.WcfDataLayer.CommonTypes"
    endpointConfigurationName="serverWebDataServiceEndpoint">
  <!-- You can use classic DI to configure the ChannelFactory<T> instance -->
  <wcf:property name="Endpoint.Address">
    <object type="System.ServiceModel.EndpointAddress, System.ServiceModel">
      <constructor-arg name="uri" value"${serviceUrl}"/>
    </object>
  </wcf:property>
</wcf:channelFactory>

Вы можете использовать абстракцию IVariableSource для получения значения свойства из командной строки. Смотрите: http://www.springframework.net/doc-latest/reference/html/objects.html

<object type="Spring.Objects.Factory.Config.VariablePlaceholderConfigurer, Spring.Core">
   <property name="VariableSources">
      <list>
         <object type="Spring.Objects.Factory.Config.CommandLineArgsVariableSource, Spring.Core">
           <property name="ArgumentPrefix" value="--" />
           <property name="ValueSeparator" value="="/>
         </object>
      </list>
   </property>
</object>

Установите переменную в командной строке следующим образом: program.exe --serviceUrl=http://localhost/Service.svc

Другие вопросы по тегам