diff options
-rw-r--r-- | samples/OAuthConsumer/Web.config | 2 | ||||
-rw-r--r-- | samples/OAuthConsumerWpf/App.config | 3 | ||||
-rw-r--r-- | samples/OAuthServiceProvider/Web.config | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/samples/OAuthConsumer/Web.config b/samples/OAuthConsumer/Web.config index 0241480..1b28537 100644 --- a/samples/OAuthConsumer/Web.config +++ b/samples/OAuthConsumer/Web.config @@ -40,7 +40,7 @@ <!-- Allow DotNetOpenAuth to publish usage statistics to library authors to improve the library. --> <reporting enabled="true" /> - <!-- FOR TESTING ONLY, we relax the SSL requirements. --> + <!-- Relaxing SSL requirements is useful for simple samples, but NOT a good idea in production. --> <messaging relaxSslRequirements="true" /> </dotNetOpenAuth> diff --git a/samples/OAuthConsumerWpf/App.config b/samples/OAuthConsumerWpf/App.config index dab6eed..d0ba299 100644 --- a/samples/OAuthConsumerWpf/App.config +++ b/samples/OAuthConsumerWpf/App.config @@ -28,6 +28,9 @@ <dotNetOpenAuth> <!-- Allow DotNetOpenAuth to publish usage statistics to library authors to improve the library. --> <reporting enabled="true"/> + + <!-- Relaxing SSL requirements is useful for simple samples, but NOT a good idea in production. --> + <messaging relaxSslRequirements="true" /> </dotNetOpenAuth> <appSettings> diff --git a/samples/OAuthServiceProvider/Web.config b/samples/OAuthServiceProvider/Web.config index 76f2232..fbab32e 100644 --- a/samples/OAuthServiceProvider/Web.config +++ b/samples/OAuthServiceProvider/Web.config @@ -40,7 +40,7 @@ <!-- Allow DotNetOpenAuth to publish usage statistics to library authors to improve the library. --> <reporting enabled="true" /> - <!-- FOR TESTING ONLY, we relax the SSL requirements. --> + <!-- Relaxing SSL requirements is useful for simple samples, but NOT a good idea in production. --> <messaging relaxSslRequirements="true" /> </dotNetOpenAuth> |