0

Good morning everyone:

I've been searching the internet and have not found what to do on this.

I'm currently trying to upload a file bigger than 100 MB to the UCM (Universal Content Management of Oracle 10g) web service. It works fine on files smaller than 100 MB but with bigger files I get the 10055 socket error saying that there is not avaiable buffer space or queue is full.

So I have no way to chage the UCM Web service but I would like to know if I change my code somehow to upload this big files. The WS offers a method that receives the byte array (byte[]) containing the file contents, no chunks...

Any help, hints, tips or tricks will be appreciated. Thanks!

Jportelas
  • 646
  • 10
  • 21
  • If you are in control of this file that is being uploaded, then can you not upload it in batches? – Pradeep Dec 21 '10 at 13:02
  • Well, researching a bit more I've found that the problem seems to be at the client, because the web service is never called when the file is bigger than 100 MB. – Jportelas Dec 22 '10 at 23:09

1 Answers1

0

Depending on what webserver you're running it might just need configuring to allow large requests. For IIS try here.

Matthew Steeples
  • 7,858
  • 4
  • 34
  • 49