Sharepoint Timeout

Crinder

New Member
Joined
Mar 30, 2011
Messages
18
Hi Everybody,

I'm running out of options in this one. I'm trying to upload a file to a SharePoint, thing is, the code works fine for smaller files, but for anything exceeding 5MB I'm getting a Time out error ("Run Time Error -2147012894(80072ee2): The Operation Timed Out")

The sharepoint itself works fine and I have no problem in uploading the same files manually, so I'm guessing there's something in the code that's causing this.

I imagine the solution would run along the lines of adding some sort of TimeOut setting within the code... but I haven't managed to get it working yet.

Here is the code I'm using:

Code:
Function WebUploadFile(File, url, user, pass)
'On Error GoTo Continue:
  Dim objXMLHTTP
  Dim objADOStream
  Dim arrbuffer
  Set objADOStream = CreateObject("ADODB.Stream")
  
  objADOStream.Open
  objADOStream.Type = 1
  objADOStream.LoadFromFile File
  arrbuffer = objADOStream.Read()
  Set objXMLHTTP = CreateObject("MSXML2.ServerXMLHTTP")
  objXMLHTTP.Open "PUT", url, False, user, pass
  
  objXMLHTTP.send arrbuffer
  Success = 1
Continue:
ActiveWorkbook.Close
End Function

I Appreciate any input, Thanks.
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.

Forum statistics

Threads
1,224,609
Messages
6,179,874
Members
452,949
Latest member
Dupuhini

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top