Uploading files to MSMQ

  • Thread starter Thread starter Alex
  • Start date Start date
A

Alex

Dear Gurus,

I have to upload big size files to MSMQ from ASP.NET. How can I do this?

Early answers are appreciated.

alex
 
Are you having trouble with the file upload or actually putting the file into
the queue?

Brian Delahunty
 
I am able to upload the small files. But when I am trying to upload file
with more than 2 mb I am getting in sufficient resources to perform
operation error message. I have set the registry to to FFFFFF as said in
one of the KB article. Even after I am getting the same error. Can you
pls provide me some resolution.

alex
 
It's possible MSMQ is running out of disk space, or at least that's the same
error reported by MSMQ when it does.

Check the storage location for MSMQ on the machine using the control panel
applet. Is it set to the default directory under %SYSTEMDIR%? You might want
to try to move it to another drive, if indeed you're running out of space.

Also, remember that messages cannot be larger than 4MB. If you are writing
text, for example, that is Unicode-encoded you'll use twice the space to
store it. That sounds like something that might be happening, since you seem
to break at 2MB.
 
Back
Top