Currently baseAddress
is fixed in the app.config file for both service and client
App.Config for both service and client
<host>
<baseAddresses>
<add baseAddress="http://localhost:8080/service" />
</baseAddresses>
</host>
Is it possible to it programmatically? Like
baseAddress = txtbaseAddress.Text;
Or any?