未应用WCF Web服务绑定配置

时间:2010-11-02 04:28:14

标签: wcf asp.net-3.5 wcf-binding

我有一个名为“Palladium”的WCF Web服务,它是作为VS2008解决方案中的项目创建的 我有一个ASP.Net Web应用程序,在名为“Palladium.svc”的页面上托管此服务 当我将表单数据发布到Web服务时,我的服务会收到该数据并可以使用它来处理。

现在我正在向服务发布图片,帖子大小超过了WCF的默认 maxReceivedMessageSize 属性。为了解决这个问题,我在ASP.Net Web应用程序的 web.config 文件的末尾添加了一个绑定配置。

我的问题是绑定配置似乎没有应用。

该服务正在从iPhone应用程序发布到,当帖子大小低于65k时,该服务正常。一旦帖子大小超过此值,我就会收到400(错误请求)错误 出于测试目的,我在ASP.Net Web应用程序中创建了一个test.aspx文件,该文件将一些表单值和图像发布到Web服务。同样,当帖子大小低于默认的65k大小时,服务工作正常。超过65k我得到400错误。

测试页面发布到与以下URITemplate /job-photo/{photoId}/{palladiumId}/{jobId}

匹配的网址

如果有人可以帮我调试这个问题,我们将不胜感激。

测试页的标记:

        <html xmlns="http://www.w3.org/1999/xhtml" >
        <head runat="server">
            <title></title>
        </head>
        <body>
            <form id="form1" action="http://localhost/cds/resources/services/palladium.svc/job-photo/1/235DE168-5D1C-46A4-89F2-FD17C6B9F415/567" method="post" enctype="multipart/form-data">
            <div>
                <input type="text" name="user" value="joe bloggs" />

                <input type="file" name="photo" />
                <input type="submit" name="btnsubmit" value="submit" />
            </div>
            </form>
        </body>
        </html>

来自 web.config 的服务信息:

     <system.serviceModel>
       <bindings>
         <wsHttpBinding>
           <binding name="large_message_binding" maxBufferPoolSize="5242880" maxReceivedMessageSize="5242880">
             <readerQuotas maxStringContentLength="5242880" maxArrayLength="5242880" maxBytesPerRead="5242880" />
           </binding>
         </wsHttpBinding>
       </bindings>

       <behaviors>
       <serviceBehaviors>
        <behavior name="CDS.UI.Resources.Services.PalladiumBehavior">
         <serviceMetadata httpGetEnabled="true" />
         <serviceDebug includeExceptionDetailInFaults="true" />
        </behavior>
       </serviceBehaviors>
      </behaviors>

      <services>
       <service behaviorConfiguration="CDS.UI.Resources.Services.PalladiumBehavior"
        name="CDS.UI.Resources.Services.Palladium">
        <endpoint address="" binding="wsHttpBinding" bindingConfiguration="large_message_binding" contract="CDS.PalladiumService.IPalladium">

         <identity>
          <dns value="localhost" />
         </identity>
        </endpoint>
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
       </service>
      </services>

     </system.serviceModel>

来自 Palladium.svc 的标记

    <%@ ServiceHost Language="C#" Debug="true" Service="CDS.PalladiumService.Palladium" Factory="System.ServiceModel.Activation.WebServiceHostFactory" %>

1 个答案:

答案 0 :(得分:4)

我的理解是

Service="CDS.PalladiumService.Palladium"

应引用基础类型。

这里的name属性应该如此:

<service behaviorConfiguration="CDS.UI.Resources.Services.PalladiumBehavior"
    name="CDS.UI.Resources.Services.Palladium">

如果您将它们分配给基础服务类的实际类型,它会解决您的问题吗?