在IIS上托管WCF服务

时间:2010-06-21 01:11:40

标签: sql-server wcf iis-6

我正在尝试使用IIS托管WCF服务(在Cassini中正常工作)。但是,当我在IIS中托管它时,我收到以下错误:

“已成功与服务器建立连接,但在登录过程中发生错误。(提供程序:共享内存提供程序,错误:0 - 管道的另一端没有进程。)”

我认为这可能是由于IIS和Windows身份验证,所以我更改了connectionstring以使用uid和密码直接登录到数据库,没有任何区别。我认为我没有那么远,因为如果是这种情况我会发现sql安全错误。

我已经建立了一个全新的服务器(2008),但我仍然遇到同样的问题......

为实现这一目标,我需要实施哪些设置?

示例WCF代码

private GenericDataClassesDataContext _db = new GenericDataClassesDataContext();

 public ReferenceValue[] GetReferenceValues()
        {
            try
            {
                return _db.ReferenceValues.ToArray();
            }
            catch (Exception e)
            {
                throw new FaultException(e.Message);
            }
        }

的Web.Config

<?xml version="1.0"?>
<configuration>
    <appSettings/>
    <connectionStrings>
    <!--<add name="TtasConnectionString" connectionString="Data Source=stdev07;Initial Catalog=Ttas;;uid=srvTtas;pwd=pa$$w0rd;MultipleActiveResultSets=True" providerName="System.Data.SqlClient"/>-->
    <add name="TTASConnectionString" connectionString="Data Source=STDEV07;Initial Catalog=IRF;Integrated Security=SSPI" providerName="System.Data.SqlClient"/>
    </connectionStrings>

  <system.web>
        <compilation debug="true" targetFramework="4.0">
        </compilation>
        <authentication mode="Windows"/>
    <identity impersonate="true"/>      
        <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"/></system.web>
    <system.serviceModel>   
        <extensions>
   <behaviorExtensions>
    <add name="silverlightFaults" type="Moe.Tactical.GenericData.Wcf.SilverlightFaultBehavior, Moe.Tactical.GenericData.Wcf, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" />
   </behaviorExtensions>
  </extensions>
  <serviceHostingEnvironment aspNetCompatibilityEnabled="true"/>   
    <behaviors>
       <endpointBehaviors>
          <behavior name="SilverlightFaultBehavior">
             <silverlightFaults />
          </behavior>
       </endpointBehaviors>
       <serviceBehaviors>
          <behavior name="Moe.Tactical.GenericData.Wcf.GenericDataServiceBehavior">
             <serviceMetadata httpGetEnabled="true" />
             <!--<serviceDebug includeExceptionDetailInFaults="false" />-->
             <serviceDebug includeExceptionDetailInFaults="true"/>
          </behavior>
       </serviceBehaviors>
    </behaviors>
    <bindings>
            <basicHttpBinding>
                <binding name="winAuthBasicHttpBinding">
                    <security mode="TransportCredentialOnly">
                        <transport clientCredentialType="Ntlm"/>
                    </security>
                </binding>
            </basicHttpBinding>
        </bindings>
        <services>
            <service behaviorConfiguration="Moe.Tactical.GenericData.Wcf.GenericDataServiceBehavior" name="Moe.Tactical.GenericData.Wcf.GenericDataService">
                <!--bindingConfiguration="winAuthBasicHttpBinding" [in gap]-->
                <endpoint address=""
                  binding="basicHttpBinding"
                  behaviorConfiguration="SilverlightFaultBehavior"
                  contract="Moe.Tactical.GenericData.Wcf.IGenericDataService">
                    <identity>
                        <dns value="localhost:3637"/>
                    </identity>
                </endpoint>
                <!--<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>-->
            </service>
        </services>

    </system.serviceModel>
</configuration>

1 个答案:

答案 0 :(得分:0)

我认为原因在于web.config的以下行:

    <identity impersonate="true"/>  

您应该将其更改为

    <identity impersonate="false"/>