编程配置WCF服务 [英] Configure wcf service programatically

查看:127
本文介绍了编程配置WCF服务的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个远程WCF服务,我用WsHttpBinding的连接。如果我使用空服务构造这意味着它会采取一切配置从app.config中,每一件事情是确定的,(我的意思是为MyService S =新的MyService())。 现在我想以编程方式配置的WCF。这是简单的,直到我到达的身份验证问题,它是如此很难做到这一点。下面是我用的,你可以看到我的安全配置在app.config。

I have a remote wcf service , I connect it by WSHttpBinding. If I use the empty service constructor which mean it will take all the configurations from the app.config , every thing is ok, (I mean MyService s = new MyService()). Now I want to configure the wcf programatically . it's simple till I arrive to the authentication issue , it was so hard to do that . Here is the app.config which I use , you can see there my security configurations .

<system.serviceModel>
    <bindings>
        <wsHttpBinding>
            <binding name="SecuredEndPoint" 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="true" />
                <security mode="Message">
                    <transport clientCredentialType="Windows" proxyCredentialType="None"
                        realm="" />
                    <message clientCredentialType="UserName" negotiateServiceCredential="true"
                        algorithmSuite="Default" />
                </security>
            </binding>               
        </wsHttpBinding>
    </bindings>
    <client>
        <endpoint address="http://MyWcfService.svc"
            binding="wsHttpBinding" bindingConfiguration="SecuredEndPoint"
            contract="ServiceReference1.IMyService" name="SecuredEndPoint">
            <identity>
                <certificate encodedValue="*******************************************************************" />
            </identity>
        </endpoint>            
    </client>
</system.serviceModel>

在此先感谢...

Thanks in advance ...

推荐答案

我已经做到了这一点,你可能需要修改你的code为安全模式下,可在配置

I have done this, you might have to modify your code for security mode you have in config

public virtual ChannelFactory<T> Proxy<T>(string address) {
      //Validate Address
      if (string.IsNullOrEmpty(address)) throw new ArgumentNullException("Address can not be null or empty.");
      //Address
      EndpointAddress endpointAddress = new EndpointAddress(address);

      //Binding
      WSHttpBinding wsHttpBinding = new WSHttpBinding(SecurityMode.None, false);
      wsHttpBinding.OpenTimeout = wsHttpBinding.CloseTimeout = new TimeSpan(0, 1, 0);
      wsHttpBinding.ReceiveTimeout = wsHttpBinding.SendTimeout = new TimeSpan(0, 10, 0);
      wsHttpBinding.MaxReceivedMessageSize = wsHttpBinding.MaxBufferPoolSize = 2147483647;
      wsHttpBinding.BypassProxyOnLocal = wsHttpBinding.AllowCookies = wsHttpBinding.TransactionFlow = false;
      wsHttpBinding.MessageEncoding = WSMessageEncoding.Text;
      wsHttpBinding.TextEncoding = Encoding.UTF8;
      wsHttpBinding.UseDefaultWebProxy = true;
      wsHttpBinding.HostNameComparisonMode = HostNameComparisonMode.StrongWildcard;
      wsHttpBinding.ReaderQuotas = new XmlDictionaryReaderQuotas(); //ReaderQuotas, setting to Max
      wsHttpBinding.ReaderQuotas.MaxArrayLength = wsHttpBinding.ReaderQuotas.MaxBytesPerRead = 2147483647;
      wsHttpBinding.ReaderQuotas.MaxStringContentLength = wsHttpBinding.ReaderQuotas.MaxNameTableCharCount = 2147483647;
      wsHttpBinding.ReaderQuotas.MaxDepth = 2147483647;

      //Create the Proxy
      ChannelFactory<T> proxy = new ChannelFactory<T>(wsHttpBinding, endpointAddress);

      //Sets the MaxItemsInObjectGraph, so that client can receive large objects
      foreach (var operation in proxy.Endpoint.Contract.Operations) {
          DataContractSerializerOperationBehavior operationBehavior = operation.Behaviors.Find<DataContractSerializerOperationBehavior>();
          //If DataContractSerializerOperationBehavior is not present in the Behavior, then add
          if (operationBehavior == null) {
              operationBehavior = new DataContractSerializerOperationBehavior(operation);
              operation.Behaviors.Add(operationBehavior);
          }
          //IMPORTANT: As 'operationBehavior' is a reference, changing anything here will automatically update the value in list, so no need to add this behavior to behaviorlist
          operationBehavior.MaxItemsInObjectGraph = 2147483647;
      }
      return proxy;
 }

在此代理对象,你需要做的 .CreateChannel()来使用它。

On this proxy object you will need to do .CreateChannel() to use it.

希望这有助于。

这篇关于编程配置WCF服务的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆