ServiceReference.ClientConfig
<binding name="BasicHttpBinding_IPickerWCF" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647"> <security mode="None" /> </binding> <endpoint address="http://localhost:3178/ActionsWCF.svc" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IActionsWCF" contract="ActionsWCF.IActionsWCF" name="BasicHttpBinding_IActionsWCF" /> My WebConfig is <system.serviceModel> <diagnostics performanceCounters="Default"> <messageLogging logEntireMessage="true" logMalformedMessages="true" logMessagesAtServiceLevel="false" logMessagesAtTransportLevel="false" maxMessagesToLog="100000" maxSizeOfMessageToLog="2621440" /> </diagnostics> <behaviors> <serviceBehaviors> <behavior name="WCFServiceBehaviour"> <serviceMetadata httpGetEnabled="true" /> <serviceDebug includeExceptionDetailInFaults="true" /> <dataContractSerializer maxItemsInObjectGraph="2147483647" /> </behavior> </serviceBehaviors> </behaviors> <!--<serviceHostingEnvironment multipleSiteBindingsEnabled="true"/>--> </system.serviceModel>
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)