Page 1 of 1

Post to URL no result

Posted: Sat May 07, 2011 8:14 pm
by JosepM
Hi,

I trying this code but I haven't any result... what is wrong? On desktop work.

on mouseUp

put empty into field "resultat"
libURLSetSSLVerification false
--set httpHeaders to "Content-type: application/x-www-form-urlencoded" & cr
get libURLFormData("ID",45)
put it into tpost
answer tpost
post tpost to URL "https://www.mydomain.com/info-customer.php"
answer the result
put it into field "resultat"

end mouseUp

Salut,
Josep

Re: Post to URL no result

Posted: Sun May 08, 2011 10:27 am
by Klaus
Hi Joseph,

from the iOS Release Notes!
...
Note that the iOS engine does not support libUrl,
...
"libURLSetSSLVerification" is part of "LibURL" so I guess this is not yet supported on iOS.


Best

Klaus

Re: Post to URL no result

Posted: Mon May 09, 2011 12:40 pm
by JosepM
Hi Klaus,

You are right. Now is working fine.

Salut,
Josep

Re: Post to URL no result

Posted: Sat Jan 21, 2012 6:41 pm
by teacherguy
Klaus wrote:Hi Joseph,

from the iOS Release Notes!
...
Note that the iOS engine does not support libUrl,
...
"libURLSetSSLVerification" is part of "LibURL" so I guess this is not yet supported on iOS.


Best

Klaus
Thanks for this... built the ios post string manually rather than using librul and all is well.