Hi,
If I use HttpJob.Download it works fine, but if I use HttpJob.Download2 then I get the following error
This code words fine.
But the following code fails.
Any info, why Download2 is throwing such an error ?
Regards
Anser
If I use HttpJob.Download it works fine, but if I use HttpJob.Download2 then I get the following error
B4X:
Error: java.lang.IllegalStateException: Target host must not be null, or set in parameters. scheme=null, host=null, path=www.myserver.com/myphp/myscripts.php
This code words fine.
B4X:
Dim Login As HttpJob
Login.Initialize("L",Me)
Login.Download("http://www.myservername.com/myphp/myscripts.php?action=Login&user_id=myuserid&password=mypassword")
But the following code fails.
B4X:
Dim Login As HttpJob
Login.Initialize("L",Me)
Login.Download2("www.myservername.com/myphp/myscripts.php", Array As String("action","Login","user_id",cUserName,"password",cPassword ) )
Any info, why Download2 is throwing such an error ?
Regards
Anser