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 上进行测试时,什么是等效的?如何将调用别名为 localhost?

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 回答