1

我创建了一个 WCF 服务来与数据库通信,首先我创建了一个Helloworld!工作正常的示例方法

但是当我尝试调用实际方法时,它会给出以下异常

接收对http://10.11.32.211:87/Service.svc的 HTTP 响应时出错。这可能是由于服务端点绑定未使用 HTTP 协议。

在浏览器中

现有连接被远程主机强行关闭

我的 web.config 文件

<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0"/>
</system.web>

<!--<system.serviceModel>
<behaviors>
  <serviceBehaviors>
    <behavior name="">
      <serviceMetadata httpGetEnabled="true"/>
      <serviceDebug includeExceptionDetailInFaults="true"/>
    </behavior>
  </serviceBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true"/>
</system.serviceModel>-->

<system.serviceModel>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true"/>
<services>
  <service behaviorConfiguration="ServiceBehavior" name="Service">
    <endpoint address="" binding="basicHttpBinding" contract="IService">
      <identity>
        <dns value="localhost"/>
      </identity>
    </endpoint>
    <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
  </service>
  </services>
  <behaviors>
   <serviceBehaviors>
     <behavior name="ServiceBehavior">
      <serviceMetadata httpGetEnabled="true"/>
      <serviceDebug includeExceptionDetailInFaults="true"/>
      <dataContractSerializer maxItemsInObjectGraph="2147483646"/>
       <serviceThrottling maxConcurrentCalls="3000" maxConcurrentSessions="3000" maxConcurrentInstances="3000"/>
     </behavior>
    </serviceBehaviors>
  </behaviors>
 </system.serviceModel>
 </configuration>

我浏览了这些链接,但没有用 MSDN LINK1

编辑

实际上我用这个服务做的是在服务器上执行一个存储过程

using (con = new SqlConnection(connectionString))
        {
            using (cmd = new SqlCommand(selectStatement, con) { CommandType = CommandType.StoredProcedure })
            {
                adapter = new SqlDataAdapter(cmd);
                table = new DataTable();
                adapter.Fill(table);
                return table;
            }
        }

我可以从不同的网站手动调用相同的存储过程,但不使用此服务....

它是什么?为什么会这样?

4

2 回答 2

2

我在这里找到了答案,我们只需要在其构造函数中实例化具有指定名称的数据表

DataTable dt = new DataTable("TableName");

我不知道为什么这会出错,但这解决了问题......

于 2012-06-06T07:56:35.170 回答
0

尝试增加发送或接收超时并为basicHttpBinding.

  <bindings>
    <basicHttpBinding>
      <binding  maxBufferSize="5000000" maxBufferPoolSize="524288" maxReceivedMessageSize="5000000" receiveTimeout="00:10:00" sendTimeout="00:10:00" >
        <readerQuotas maxDepth="32" maxStringContentLength="80192" maxArrayLength="50000000" maxBytesPerRead="4096" maxNameTableCharCount="16384"/>
      </binding>
    </basicHttpBinding>
  </bindings>
于 2012-05-30T13:10:20.590 回答