G
Guest
Hello
I've an ASP.NET Web application that has one form where the user can upload
a file to be sent and saved on a database. The app sends the file via DIME
attachments and SOAP envelopes to a Web Service that reads that package and
records the file on a specific record in a database.
It all goes well when my files are smaller than 4Mb.
Files larger than that origins a error message of "File extends size limits"
or something like that
I know that .NET has file size limitations and search on you web page for the
solution that arrives in the form of a code to add to my app web config....
the code is the following
<httpRuntime
executionTimeout="150"
maxRequestLength="11264"
seFullyQualifiedRedirectUrl="false"
minFreeThreads="8"
minLocalRequestFreeThreads="4"
appRequestQueueLimit="100"
/>
Doing this on just my ASP.NET Web app the result is the same error...
But if I include it on my Web Service's Web.Config file it sents back a
different error: something like "HTTP 400... Bad request"
When doing debug i noticed that execution never enters my web service in the
method called... it allways sents the error first.
Can you assist me here?!?!
How can I force my web service to receive files larger that 4Mb
best regards
Jorge Ribeiro
I've an ASP.NET Web application that has one form where the user can upload
a file to be sent and saved on a database. The app sends the file via DIME
attachments and SOAP envelopes to a Web Service that reads that package and
records the file on a specific record in a database.
It all goes well when my files are smaller than 4Mb.
Files larger than that origins a error message of "File extends size limits"
or something like that
I know that .NET has file size limitations and search on you web page for the
solution that arrives in the form of a code to add to my app web config....
the code is the following
<httpRuntime
executionTimeout="150"
maxRequestLength="11264"
seFullyQualifiedRedirectUrl="false"
minFreeThreads="8"
minLocalRequestFreeThreads="4"
appRequestQueueLimit="100"
/>
Doing this on just my ASP.NET Web app the result is the same error...
But if I include it on my Web Service's Web.Config file it sents back a
different error: something like "HTTP 400... Bad request"
When doing debug i noticed that execution never enters my web service in the
method called... it allways sents the error first.
Can you assist me here?!?!
How can I force my web service to receive files larger that 4Mb
best regards
Jorge Ribeiro