WCF ReliableMessaging method called twice

Posted by Brian on Stack Overflow See other posts from Stack Overflow or by Brian
Published on 2010-05-25T16:32:54Z Indexed on 2010/06/08 23:12 UTC
Read the original article Hit count: 492

Filed under:
|

Using Fiddler, we see 3 HTTP requests (and matching responses) for each call when:

  • WS-ReliableMessaging is enabled, and,
  • the method returns a large amount of data (17MB)

The first HTTP request is a SOAP message with the action "CreateSequence" (presumable to establish the reliable session). The second and third HTTP requests are identical SOAP messages invoking our webservice method. Why are there two identical messages?

Here is our config:

  <system.serviceModel>   
    <client>
      <endpoint address="http://server/vdir/AccountingService.svc"
                binding="wsHttpBinding"
                bindingConfiguration="customWsHttpBinding" 
                behaviorConfiguration="LargeServiceBehavior"
                contract="MyProject.Accounting.IAccountingService"
                name="BasicHttpBinding_IAccountingService" />
    </client>
    <bindings>
      <wsHttpBinding>
        <binding name="customWsHttpBinding" maxReceivedMessageSize="90000000">
          <reliableSession enabled="true"/>
          <security mode="None" />
        </binding>
      </wsHttpBinding>
    </bindings>
    <behaviors>
      <endpointBehaviors>
        <behavior name="LargeServiceBehavior">
          <dataContractSerializer maxItemsInObjectGraph="2147483647"/>
        </behavior>
      </endpointBehaviors>
    </behaviors>
  </system.serviceModel>

Thanks,

Brian

© Stack Overflow or respective owner

Related posts about wcf

Related posts about ws-reliablemessaging