Re: POST command error

2011-05-07 Thread JosepM
Thanks for the information Bernand, and with my own certificate I will have the same problem? I mean that the error isn't a question if the certificate is shared or personal. This is important so when you comunicate with a databases from iPads, iPhones, Androids, to secure the data you send and r

Re: POST command error

2011-05-07 Thread Bernard Devlin
Josep, even with libURLSetSSLVerification to false, the network communication will be encrypted if you are using SSL. However, one can argue it is not secure, in the sense that your client application cannot be sure that the SSL certificate being accepted by it is really one that is presented by y

Re: POST command error

2011-05-07 Thread JosepM
Hi, But the comunication is secure, isn't? The only think is that I can't check if the SSL Certificate is valid, isn't? Salut, Josep -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/POST-command-error-tp3503001p3505400.html Sent from the Revolution - User maili

Re: POST command error

2011-05-07 Thread Terry Judd
On 07/05/2011, at 4:44 PM, "JosepM" wrote: > Hi, > > By the moment I must left the libURLSetSSLVerification to false... That's what I ended up doing. Terry... > > Maybe I need my own certificate, isn't? > > > Salut, > Josep > > -- > View this message in context: > http://runtime-revol

Re: POST command error

2011-05-06 Thread JosepM
Hi, By the moment I must left the libURLSetSSLVerification to false... Maybe I need my own certificate, isn't? Salut, Josep -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/POST-command-error-tp3503001p3505122.html Sent from the Revolution - User mailing list

Re: POST command error

2011-05-06 Thread Pierre Sahores
Add my vote to this clearly important request... > These issues with SSL/HTTPS and certificates keep coming up and never seem > to be adequately resolved. I really think the Rev team should put together a > series of lessons and/or sample stacks around these issues. I'm sure I'm not > the only one

Re: POST command error

2011-05-06 Thread Terry Judd
These issues with SSL/HTTPS and certificates keep coming up and never seem to be adequately resolved. I really think the Rev team should put together a series of lessons and/or sample stacks around these issues. I'm sure I'm not the only one who has wasted a fair amount of time trying to get this s

Re: POST command error

2011-05-06 Thread JosepM
Hi, In my keychain I don't found the certificate. Must be there? About the post with a solution, the SSL Certificated that I use is a shared certificate, I can't not open it. Salut, Josep -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/POST-command-error-tp3503

Re: POST command error

2011-05-06 Thread Pierre Sahores
Should't this discussion help : ? Le 7 mai 2011 à 01:46, Bob Sneidar a écrit : > Hmmm... a self signed certificate? Shouldn't be the case unless this is your > server and you created one yourself. You can try dele

Re: POST command error

2011-05-06 Thread Bob Sneidar
Hmmm... a self signed certificate? Shouldn't be the case unless this is your server and you created one yourself. You can try deleting the local certificate and try again. On a Mac you do that in your keychain. On a PC, I don't know where you would do that. Easy to find out though. Google it.

Re: POST command error

2011-05-06 Thread Mike Bonner
Oh, far beyond me then, hopefully someone will be able to point you the right direction. On Fri, May 6, 2011 at 4:06 PM, JosepM wrote: > I get this error... > > error -Error with certificate at depth: 4 issuer = /C=SE/O=AddTrust > AB/OU=AddTrust External TTP Network/CN=AddTrust External CA Ro

Re: POST command error

2011-05-06 Thread JosepM
I get this error... error -Error with certificate at depth: 4 issuer = /C=SE/O=AddTrust AB/OU=AddTrust External TTP Network/CN=AddTrust External CA Root subject = /C=SE/O=AddTrust AB/OU=AddTrust External TTP Network/CN=AddTrust External CA Root err 19:self signed certificate in certificate c

Re: POST command error

2011-05-06 Thread JosepM
Hi, Yes, yes, I use POST... but I go to the check the PHP script... Salut, Josep -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/POST-command-error-tp3503001p3504446.html Sent from the Revolution - User mailing list archive at Nabble.com. __

Re: POST command error

2011-05-06 Thread Mike Bonner
Are you sure its set up to use post data? Works fine with http get instead. * * *on mouseUp* * put empty into field "resultat"* * * * * * set httpHeaders to "Content-type: application/x-www-form-urlencoded" & cr* * get libURLFormData("ID",39)* * put URL merge(" https://delphi.nocdirect

Re: POST command error

2011-05-06 Thread JosepM
I try this but nothing happen... on mouseUp put empty into field "resultat" set httpHeaders to "Content-type: application/x-www-form-urlencoded" & cr get libURLFormData("ID",39) post it to URL "https://delphi.nocdirect.com/~heroesqu/espais/partes2/info-customer.php"; p

Re: POST command error

2011-05-06 Thread Pierre Sahores
Josep, Here is the way HTTP POST works fine there. >set httpHeaders to "Content-type: application/x-www-form-urlencoded" & cr >post URLEncode(yourdatas) to URL > "https://www.mydomain.com/info-customer.php"; >get it Best, Pierre > Hi, > > I need some help. I trying to do a post c