SOLVED
It seems I solved the problem bij doing a POST request instead of a
GET. I just uploaded a 13Mb document this way.
In case anybody finds this (and because I HATE to find somebody
posting a thank you I soved the problem and not telling what the
solution was) , this is the code I used which, so far, seems to make
the timeout disappear to a more acceptable value:
[code]
set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP")
xmlhttp.open "POST", SCRIBD_URL, false
xmlhttp.setRequestHeader "Content-Type", "application/x-www-form-
urlencoded"
xmlhttp.send "method=docs.UploadFromUrl&doc_type=" & doctype & "&url="
& server.urlencode(docurl) & "&api_key=" & SCRIBD_APIKEY
result = xmlhttp.responseText
set xmlhttp = nothing
[/code]