httputils2: job.download

grafsoft

Well-Known Member
Licensed User
Longtime User
Hi,

I am doing this:

Dim job1, job2 As HttpJob
job1.Initialize("Job1", Me)
job2.Initialize("Job2", Me)

job1.Download ("http://www.grafsoft.at/2scanme/qrs.php?phone=11111" )
This works

job2.Download ("http://www.grafsoft.at/2scanme/qrpics/e3afed0047b08059d0fada10f400c1e5.png")
This throws an error
"Illegal character in scheme at index 0"

in httpjob.bas here *:
Public Sub Download(Link As String)
mLink = Link
* req.InitializeGet(Link)
CallSubDelayed2(HttpUtils2Service, "SubmitJob", Me)
End Sub

Why? When I go to the link with my browser it works.

Thank you

Peter
 
Top