Created
December 28, 2011 09:05
-
-
Save JoanComasFdz/1527198 to your computer and use it in GitHub Desktop.
Basic binding for a WCF service client using username and password.
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
<client> | |
<endpoint address="YOUR_SERVICE_URL" | |
binding="netTcpBinding" | |
bindingConfiguration="NetTcpBinding_YOUR_REFERENCED_SERVICE_INTERFACE" | |
contract="YOUR_REFERENCED_SERVICE.YOUR_REFERENCED_SERVICE_INTERFACE" | |
name="NetTcpBinding_YOUR_REFERENCED_SERVICE_INTERFACE"> | |
<identity> | |
<dns value="dev_cert_2"/> | |
<certificate encodedValue="..." /> | |
</identity> | |
</endpoint> | |
</client> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment