远程服务器返回意外响应:(400)错误请求,WCF

时间:2012-01-01 16:27:30

标签: c# asp.net wcf

我正在尝试将图像发送到我的WCF,当我这样做时,我得到了。

  

远程服务器返回了意外响应:(400)Bad Request。

其他所有工作都可以发送到WCF并且图像不是那么大~90kb。我发现了很多线程,但没有任何帮助我。我试图增加大小限制,但这不起作用。

的web.config

  <system.serviceModel>
    <bindings>
      <wsHttpBinding>
        <binding name="WSHttpBinding_IService" closeTimeout="00:01:00"
        openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
        bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
        maxBufferPoolSize="2000000" maxReceivedMessageSize="2000000"
        messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
        allowCookies="false">
          <readerQuotas maxDepth="2000000" maxStringContentLength="2000000" maxArrayLength="2000000"
          maxBytesPerRead="2000000" maxNameTableCharCount="2000000" />
          <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" />
          <security mode="Message">
            <transport clientCredentialType="Windows" proxyCredentialType="None" realm="" />
            <message clientCredentialType="Windows" negotiateServiceCredential="true"
            algorithmSuite="Default" establishSecurityContext="true" />
          </security>
        </binding>
      </wsHttpBinding>
    </bindings>
    <client>
      <endpoint address="http://localhost:8732/Design_Time_Addresses/WcfDataLager/Service1/"
        binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IService"
        contract="ServiceReference.IService" name="WSHttpBinding_IService">
        <identity>
          <dns value="localhost" />
        </identity>
      </endpoint>
    </client>
  </system.serviceModel>

的app.config

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <configSections>
  </configSections>
  <connectionStrings>
    <add name="WcfDataLager.Properties.Settings.WebbshopConnectionString"
      connectionString="Data Source=(local);Initial Catalog=Webbshop;Integrated Security=True"
      providerName="System.Data.SqlClient" />
  </connectionStrings>
  <system.web>
    <compilation debug="true" />
  </system.web>
  <system.serviceModel>
    <bindings />
    <client />
    <services>
      <service name="WcfDataLager.Service">
        <endpoint address="" binding="wsHttpBinding" contract="WcfDataLager.IService">
          <identity>
            <dns value="localhost" />
          </identity>
        </endpoint>
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
        <host>
          <baseAddresses>
            <add baseAddress="http://localhost:8732/Design_Time_Addresses/WcfDataLager/Service1/" />
          </baseAddresses>
        </host>
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior>
          <serviceMetadata httpGetEnabled="True"/>
          <serviceDebug includeExceptionDetailInFaults="True" />
        </behavior>
      </serviceBehaviors>
    </behaviors>
  </system.serviceModel>
</configuration>

页码。

protected void btnAdd_Click(object sender, EventArgs e)
{
    Produkt produkt = new Produkt();
    produkt.Namn = txtNamn.Text;
    produkt.Pris = Convert.ToDouble(txtPris.Text);
    produkt.Beskrivning = txtbeskrivning.Text;
    produkt.LagerAntal = Convert.ToInt32(txtAntal.Text);
    produkt.Typ = txtGenre.Text;
    //produkt.ImageAsByte = fupBild.FileBytes;
    produkt.Bild = new System.Drawing.Bitmap(fupBild.PostedFile.InputStream);
    using (ServiceReference.ServiceClient wcfClient = new ServiceReference.ServiceClient())
    {
        wcfClient.AddProdukt(produkt);
    }
}

WCF代码。

public void AddProdukt(Produkt produkt)
{
   DataSetTableAdapters.ProduktTableAdapter itemsTA = new
WcfDataLager.DataSetTableAdapters.ProduktTableAdapter();
   byte[] bmpAsByte;
   using (System.IO.MemoryStream stream = new System.IO.MemoryStream())
   {
       produkt.Bild.Save(stream, System.Drawing.Imaging.ImageFormat.Bmp);
       stream.Position = 0;
       bmpAsByte = new byte[stream.Length];
       stream.Read(bmpAsByte, 0, (int)stream.Length);
       stream.Close();
   }
   produkt.ID = 7;
   itemsTA.InsertProdukt(produkt.Namn, produkt.Pris, produkt.Beskrivning, produkt.LagerAntal, bmpAsByte);
   itemsTA.InsertGenre(produkt.Typ, produkt.ID);
   DataSet dataset = new DataSet();
   itemsTA.Adapter.Update(dataset);
}

1 个答案:

答案 0 :(得分:4)

maxReceivedMessageSize属性需要存在于服务边界,服务和使用者的两侧。因此,您需要将绑定元素添加到客户端配置中。

<强>更新

您需要在服务app.config中包含web.config的绑定:

<bindings>
  <wsHttpBinding>
    <binding name="WSHttpBinding_IService" closeTimeout="00:01:00"
    openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
    bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
    maxBufferPoolSize="2000000" maxReceivedMessageSize="2000000"
    messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
    allowCookies="false">
      <readerQuotas maxDepth="2000000" maxStringContentLength="2000000" maxArrayLength="2000000"
      maxBytesPerRead="2000000" maxNameTableCharCount="2000000" />
      <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" />
      <security mode="Message">
        <transport clientCredentialType="Windows" proxyCredentialType="None" realm="" />
        <message clientCredentialType="Windows" negotiateServiceCredential="true"
        algorithmSuite="Default" establishSecurityContext="true" />
      </security>
    </binding>
  </wsHttpBinding>
</bindings>

然后,您可以使用端点bindingConfiguration属性在app.config中的服务端点中引用此绑定元素,在这种情况下,您可以将其设置为与{{1}的名称相同的值} element,这是“WSHttpBinding_IService”。

例如

wsHttpBinding
相关问题