1

部署到生产环境后,我只收到 404 - 找不到文件。

该服务需要配置为虚拟目录 ( /v1 )。它有自己的应用程序池。

我根据http://www.jamesgoodfellow.com/blog/post/IIS-60---HTTP-404---File-not-found-Internet-Information-Services.aspx启用了 ASP .Net 4.0

我根据在 IIS 6 中托管 .net 4.0 REST WCF 服务添加了通配符并删除了 Windows 集成安全性

它仍然不起作用...

这是我的 web.config 的 ServiceModel 部分:

    <system.serviceModel>
    <extensions>
        <behaviorExtensions>
            <add name="restHttpBehavior" type="--hidden for security purposes--, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null"/>
        </behaviorExtensions>
    </extensions>
    <services>
        <service name="--hidden for security purposes--" behaviorConfiguration="MetadataBehavior">
            <host>
                <baseAddresses>
                    <add baseAddress="http://localhost/v1/api.svc"/>
                </baseAddresses>
            </host>

            <endpoint behaviorConfiguration="WebBehavior" binding="webHttpBinding" bindingConfiguration="restNoSSL" contract="--hidden for security purposes--"/>
            <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
        </service>
    </services>
    <behaviors>
        <endpointBehaviors>
            <behavior name="WebBehavior">
                <restHttpBehavior/>
            </behavior>
        </endpointBehaviors>
        <serviceBehaviors>
            <behavior name="MetadataBehavior">
                <serviceMetadata httpGetEnabled="true"/>
                <serviceDebug includeExceptionDetailInFaults="false"/>
            </behavior>
        </serviceBehaviors>
    </behaviors>
    <bindings>
        <webHttpBinding>

            <binding name="restNoSSL">
            </binding>
        </webHttpBinding>
    </bindings>
</system.serviceModel>

请帮忙!!

4

2 回答 2

1

事实证明,ISAPI 过滤器实际上阻止了该服务。所以我删除了通配符,添加了后视窗集成安全性——现在网站可以正常工作了。

于 2011-06-05T07:13:46.197 回答
1

看到了同样的问题,但对我来说这是因为 ISAPI 通配符使用了不正确的 ISAPI 文件。

这些版本存在

64 位 .net 2.0 aspnet_isapi.dll

32 位 .net 2.0 aspnet_isapi.dll

64 位 .net 4.0 aspnet_isapi.dll

32 位 .net 4.0 aspnet_isapi.dll

可以应用 32 位 .net 4.0 aspnet_isapi.dll 并且仍然允许我的网站工作。

于 2013-02-06T14:10:29.783 回答