Created
January 6, 2011 15:37
-
-
Save jfromaniello/768024 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<services> | |
<service name="Agatha.ServiceLayer.WCF.WcfRequestProcessor" behaviorConfiguration="RequestProcessorBehavior"> | |
<endpoint address="" contract="Agatha.Common.WCF.IWcfRequestProcessor" binding="basicHttpBinding" bindingConfiguration="RequestProcessorBinding" /> | |
</service> | |
<service name="System.Web.ApplicationServices.AuthenticationService" behaviorConfiguration="AppServiceBehaviors"> | |
<endpoint contract="System.Web.ApplicationServices.AuthenticationService" binding="basicHttpBinding" bindingConfiguration="userHttp" bindingNamespace="http://asp.net/ApplicationServices/v200" /> | |
</service> | |
</services> | |
<bindings> | |
<basicHttpBinding> | |
<binding name="RequestProcessorBinding" | |
maxReceivedMessageSize="2147483647" | |
receiveTimeout="00:30:00" | |
sendTimeout="00:30:00" allowCookies="true"> | |
<readerQuotas maxStringContentLength="2147483647" maxArrayLength="2147483647" /> | |
<security mode="None" /> | |
</binding> | |
<binding name="userHttp"> | |
<!-- this is for demo only. Https/Transport security is recommended --> | |
<security mode="None" /> | |
</binding> | |
</basicHttpBinding> | |
</bindings> | |
<behaviors> | |
<serviceBehaviors> | |
<behavior name="RequestProcessorBehavior"> | |
<serviceMetadata httpGetEnabled="true" /> | |
<serviceDebug includeExceptionDetailInFaults="true" /> | |
<dataContractSerializer maxItemsInObjectGraph="2147483647" /> | |
<serviceThrottling maxConcurrentCalls="500" maxConcurrentInstances="500" /> | |
</behavior> | |
<behavior name="AppServiceBehaviors"> | |
<serviceMetadata httpGetEnabled="true" /> | |
<serviceDebug includeExceptionDetailInFaults="true" /> | |
</behavior> | |
<behavior name=""> | |
<serviceMetadata httpGetEnabled="true" /> | |
<serviceDebug includeExceptionDetailInFaults="true" /> | |
</behavior> | |
</serviceBehaviors> | |
</behaviors> | |
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" /> | |
</system.serviceModel> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment