Hey Kalpesh. Thanks for the response but this klink is for a dynamic connection string. I am looking for help on Dynamic End Points for my Web Services. Basically, I want to change the URI Address of the Web Services when the user logs in. When the user logs in, I will check to see the company they are associated with, get the web service address and use the dynamically created endpoint to call the web service. My web.config is below but this is hard coded in web.config.
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="AccountXML" />
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://hpsm-dev.azurewebsites.net/Services/OAuthService.svc"
binding="basicHttpBinding" bindingConfiguration="AccountXML"
contract="OAuthService.IOAuthService" name="AccountXML" />
</client>
</system.serviceModel>