Created
January 6, 2016 21:59
-
-
Save jpda/13fb7fd6f10072ae1644 to your computer and use it in GitHub Desktop.
WCF Client sample app.config
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
| <?xml version="1.0" encoding="utf-8" ?> | |
| <configuration> | |
| <startup> | |
| <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> | |
| </startup> | |
| <system.serviceModel> | |
| <bindings> | |
| <basicHttpBinding> | |
| <binding name="BasicHttpBinding_IAuthService" /> | |
| </basicHttpBinding> | |
| </bindings> | |
| <client> | |
| <endpoint address="http://localhost:24195/AuthService.svc" binding="basicHttpBinding" | |
| bindingConfiguration="BasicHttpBinding_IAuthService" contract="Auth.IAuthService" | |
| name="BasicHttpBinding_IAuthService" /> | |
| </client> | |
| </system.serviceModel> | |
| </configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment