I have a web server to update prices on a web site. I have written both ends in VDF 17.0. If I transfer 1000 pairs of data it works fine, but if I transfer 2100 it gives me an error 4422 (Soap/Http Transfer error. Http request failed).

I am transferring a part number and a price.

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<LoadPrices xmlns="http://tempuri.org/">
<sPassword>xxxxxxx</sPassword>
<stPrices>
<TiPrices>
<sSprNum>AA0102 </sSprNum>
<nPrice>191.1</nPrice>
</TiPrices>
<TiPrices>
<sSprNum>AA0722 </sSprNum>
<nPrice>29</nPrice>
</TiPrices>
<TiPrices>
<sSprNum>AM5006 </sSprNum>
<nPrice>0.6</nPrice>
</TiPrices>
</stPrices>
</LoadPrices>
</soap:Body>
</soap:Envelope>

Is there something I have to set in IIS or Webapp to use more data?

Doug Lawson