wcf服务配置以及解决超时问题


       
           
                                    openTimeout="00:01:00" receiveTimeout="00:20:00" sendTimeout="00:01:00"
                    bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
                    maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
                    messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
                    allowCookies="false">
                                            maxBytesPerRead="4096" maxNameTableCharCount="16384" />
                                            enabled="false" />
                   
                                                    realm="" />
                                                    algorithmSuite="Default" establishSecurityContext="true" />
                   

               

           

       

       
                            binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_LogSysService"
                contract="LogSysServer.LogSysService" name="WSHttpBinding_LogSysService">
               
                   
               

           

       

       
           
               
                   
                   
               

           

       

       
           
               
                   
                       
                   

               

               
           

        

   

红色标注部分是用来解决wcf服务请求超时的配置当然也是可以通过程序来解决的。比如下面这一段:

 Binding bindinginstance = null;

WSHttpBinding ws = new WSHttpBinding(SecurityMode.None);
            ws.Name = wsName;
            ws.CloseTimeout = new TimeSpan(00, 01, 00);
            ws.OpenTimeout = new TimeSpan(00, 01, 00);
            ws.ReceiveTimeout = new TimeSpan(00, 10, 00);
            ws.SendTimeout = new TimeSpan(00, 01, 00);
            .........  ......  ......
            bindinginstance = ws;

红色标注也是用来解决超时问题的,不过是写在程序里面作为动态配置.

至于配置文件的其它标记标识的含义,请关注下一篇。

你可能感兴趣的:(C#的Forever)