Hi,
I try to develop a webservice aplication which accepts a big file, processes
it and send back some files to the client.
Currently I use WSE 2.0 with Dime attachments. I first had some problems
with upload size restrictions, but than I found some solution for it in
web.config.
<microsoft.web.services2>
<messaging>
<maxRequestLength>128000</maxRequestLength>
</messaging>
<diagnostics>
<detailedErrors enabled="true" />
</diagnostics>
</microsoft.web.services2>
But now I have another problem sending files back to the client.
When I send back about 24 files with around 3 MB of size everything works
fine. As soon as I try to send back 48 files with around 6 MB I get the
following error message:
Eine nicht behandelte Ausnahme des Typs
'Microsoft.Web.Services2.Dime.DimeFormatException' ist in
microsoft.web.services2.dll aufgetreten.
Zus?tzliche Informationen: WSE352: The size of the record
uuid:36e3a565-413f-4f57-ba40-527352149738 exceed its limit.
(sorry for the german part ;-))
Is there some other setting which limits the attachment size which can be
sent back to the client?
Thanks in advance!
Alex
Lucien - 03 Aug 2004 00:55 GMT
Did you set that setting also in the client app.config? Also check the HTTP
server config limit is increased.
> Hi,
>
[quoted text clipped - 39 lines]
>
> Alex
Alexander Ernst - 03 Aug 2004 23:38 GMT
Thanks for your tip!
After I installed WSE2 SP1 and changed some configuration options a
app.config had been created.
And than I inserted the same code as in web.config.
Now everything works ;-)
Cheers
Alex
> Did you set that setting also in the client app.config? Also check the HTTP
> server config limit is increased.
[quoted text clipped - 43 lines]
> >
> > Alex