これを使用してWindowsサービスによってホース接続されているWCFサービスがあります。app.config
<services>
<service behaviorConfiguration="serviceBehavior" name="AgileServer.AgileService">
<endpoint address="AgileService" binding="basicHttpBinding" name="basicHttp" contract="AgileServer.AgileService" />
<endpoint binding="mexHttpBinding" name="mex" contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:24453/AgileService" />
</baseAddresses>
</host>
</service>
サービスにサービス参照を追加しようとすると([サービス参照の追加]プロンプトで[検出]をクリックして)、http://localhost:33908/AgileService.svc
サービスでURIとして使用するhttp://localhost:24453/AgileService
ようにURIが表示されます。どうすればこれを達成できますか?