Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Documentation of WCF Default Binding Settings (e.g. wsHttpBinding)

Does anyone know of documentation that describes all of the default settings for a binding in WCF? It would be great to know the default settings on both the client and server side.

Maybe there's an easy way to programmatically display all the current settings of a binding if documentation doesn't exist???

For example, if I have an endpoint on a server side using wsHttpBinding, how do I know what the default settings are (e.g. maxReceiveMessageSize, maxDepth, security mode, clientCredentialType, etc.).

Thanks.

like image 882
ChrisNel52 Avatar asked Jan 21 '23 04:01

ChrisNel52


1 Answers

The defaults values for the wsHttpBinding configuration are here:

  1. Top level defaults: http://msdn.microsoft.com/en-us/library/ms731299.aspx
  2. <security/> defaults: http://msdn.microsoft.com/en-us/library/ms731362.aspx
  3. <readerQuotas/> defaults: http://msdn.microsoft.com/en-us/library/ms731325.aspx
  4. <transport/> defaults: http://msdn.microsoft.com/en-us/library/ms731313.aspx
  5. <message/> defaults: http://msdn.microsoft.com/en-us/library/ms731346.aspx
like image 171
tom redfern Avatar answered Feb 07 '23 12:02

tom redfern