Page 1 of 1

https issue in 6.5.2?

Posted: Fri Jan 31, 2014 11:07 pm
by MadManSoft
I started running into some really strange behavior today in regards to https...

Code: Select all

put gBaseURL & "login.cfc?method=login&username=" & fld username & "&" & "password=" & fld "password" & "&ULIF=" & gULIF into tUrl
Calls like the above using https that had been working fine stopped working when I closed my app down on my desktop and opened it up on my laptop. Blank on what I got back and a cert error in the result.

That was in the IDE. When I replaced https with http it worked fine. Put https back and run the app in the IDE, same thing.

Launched the app in the iOS simulator and it works fine with https. I am totally baffled.

I reopened the app on my desktop and now it's hit or miss in the IDE with it mostly being a miss.

The cert is valid, not expired and calls placed to it in a browser work fine, as they do in the iOS simulator.

A little googling showed this may have been an issue earlier this year, and maybe this regressed?

Is anyone else seeing this?

Thanks,

Steve MacLean
.

Re: https issue in 6.5.2?

Posted: Sat Feb 01, 2014 2:48 am
by Simon
Hi Steve,
Are you using libURLSetSSLVerification?

Simon

Re: https issue in 6.5.2?

Posted: Sat Feb 01, 2014 4:15 am
by MadManSoft
Hi Simon,

I am not, as it is not supported on iOS... is this why it's failing on the IDE and not iOS?

If so, why did it work before and now not so much?

Sorry, just very confused.

Thanks,

Steve

Re: https issue in 6.5.2?

Posted: Sat Feb 01, 2014 5:43 am
by Simon
I think it is recently supported on mobile... might not be in the docs yet.
Give it a try.

Simon

Re: https issue in 6.5.2?

Posted: Sun Feb 02, 2014 5:54 pm
by MadManSoft
Hi Simon,

Thanks so much for that, it seems to be working fine now by setting libURLSetSSLVerification to false in both the IDE and on iOS.

Thanks again!

Best,

Steve