0

開発ファブリックでホストされているローカル アプリケーションで OAuth をテストしています。

特定のホスト名をローカル アプリケーションにバインドしたいのですが、通常は IISExpress で ApplicaiontHosts.config の次の要素を編集します。

        <site name="BasicChat" id="15">
            <application path="/" applicationPool="Clr4IntegratedAppPool">
                <virtualDirectory path="/" physicalPath="C:\Users\xxx.yyy_VAIO\Downloads\Samples-master\Samples-master\BasicChat" />
            </application>
            <bindings>
                <binding protocol="http" bindingInformation="*:44914:localhost" />
            </bindings>
        </site>

DevFabric でテストしている場合、これに相当するものは何ですか? ローカルホストへの呼び出しをエイリアスするにはどうすればよいですか?

4

1 に答える 1

1

ServiceDefinition.csdef 内。

hostheader 属性を追加します。例:

  <Site name="Web">
    <Bindings>
      <Binding name="Endpoint1" endpointName="xxx" hostHeader="my.yyy.com" />
    </Bindings>
于 2013-10-21T00:09:17.120 に答える