日期:2014-05-17 浏览次数:20446 次
<system.serviceModel>
<services>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="Basicbindings">
<dataContractSerializer maxItemsInObjectGraph="2147483647"/>
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
<serviceThrottling maxConcurrentCalls="20" maxConcurrentSessions="20" maxConcurrentInstances="30" />
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
<bindings>
<basicHttpBinding>
<binding name="Basicbindings" maxReceivedMessageSize="202400000">
<readerQuotas maxStringContentLength="2024000000"/>
</binding>
</basicHttpBinding>
</bindings>
</system.serviceModel>
<client>
<endpoint address="http://localhost:1678/Interface/UserInterface.svc" behaviorConfiguration="NewBehavior"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IUserInterface"
contract="UserInterface.IUserInterface" name="BasicHttpBinding_IUserInterface" />
<span style="font-family:Times New Roman;font-size:18px;"><?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
&nbs