Skip to content

Commit

Permalink
Remove Duplicate Config Definition (dotnet#3200)
Browse files Browse the repository at this point in the history
For whatever reason, the sample XML was duplicated -- this commit removes that duplication so that the example is more readable.
  • Loading branch information
kellenlask authored and Ron Petrusha committed Sep 21, 2017
1 parent 6ab8f52 commit 2c0814b
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions docs/framework/wcf/how-to-configure-a-basic-wcf-client.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,27 +54,6 @@ This is the fifth of six tasks required to create a basic [!INCLUDE[indigo1](../
</endpoint>
</client>
</system.serviceModel>
</configuration><?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5,Profile=Client" />
</startup>
<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="WSHttpBinding_ICalculator" />
</wsHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:8000/ServiceModelSamples/Service/CalculatorService"
binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_ICalculator"
contract="ServiceReference1.ICalculator" name="WSHttpBinding_ICalculator">
<identity>
<userPrincipalName value="[email protected]" />
</identity>
</endpoint>
</client>
</system.serviceModel>
</configuration>
```

Expand Down

0 comments on commit 2c0814b

Please sign in to comment.