Problems with HTTP...
Thanks Erel for your answer.
I am looking into this right now and think you are right.
How ever I came across another problem:
When I try to Upload a file I recieve Response code 405 Method not allowed.
I recieve the code when hitting the row with Request.GetResponse.
The server is one of mine and I certainly do have write permissions...
Is there anything I am doing wrong here?
This is the code I use:
Sub UploadFile (UpFile, URL)
Response.New1
Request.New1(URL)
Request.Method = "PUT"
Writer.New1(Request.GetStream,True)
Dim Buffer(4096) As byte
FileOpen(c1,AppPath &"\" & UpFile,cRandom)
Reader.New1(c1,True) 'Reads the local file.
count = Reader.ReadBytes(buffer(),4096)
Do While count > 0
Writer.WriteBytes2(buffer(),0,count)
count = Reader.ReadBytes(buffer(),4096)
Loop
FileClose(c1)
Request.GetResponse
End Sub