我有一个在VS开发服务器上运行良好的WCF服务,但如果我转到项目设置并将Web选项卡服务器更改为使用本地IIS Web服务器,则会收到BadImageFormatException。我知道这通常是在32位应用程序引用64位dll时引起的。我的所有程序集都是为AnyCPU构建的。
我真的不知道哪些信息会对您有所帮助,所以请发表评论,我会根据需要修改问题。
对于初学者,我会说我正在使用Autofac WCF集成(这也适用于VS Dev服务器而不是IIS)。我还应该补充一点,我检查了IIS设置。为DefaultAppPool配置,设置为.NET 4 Integrated管道。启用匿名身份验证,禁用Windows。
以下是我的配置文件示例。
<system.serviceModel>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
<bindings>
<basicHttpBinding>
<binding name="Binding_basicHttp">
<readerQuotas maxDepth="1000000000" maxStringContentLength="1000000000" maxArrayLength="1000000000" maxBytesPerRead="1000000000" maxNameTableCharCount="1000000000"/>
</binding>
</basicHttpBinding>
</bindings>
<services>
<service behaviorConfiguration="ServiceBehavior_MetaAndDebug" name="Service1">
<endpoint binding="basicHttpBinding" name="Service1Endpoint_basicHttp" contract="IService1">
<identity>
<dns value="localhost"/>
</identity>
</endpoint>
<endpoint address="/mex" binding="mexHttpBinding" bindingConfiguration="" name="Service1Endpoint_mex" contract="IMetadataExchange"/>
<host>
<baseAddresses>
<add baseAddress="http://localhost/Site/Service1/"/>
</baseAddresses>
</host>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="ServiceBehavior_MetaAndDebug">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
<behavior name="">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="false" />
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>