Hi all,
Is possible to launch a https url with CBrCtlInterface? I have not problem with http...
Thanks in advance,
Joterito
Hi all,
Is possible to launch a https url with CBrCtlInterface? I have not problem with http...
Thanks in advance,
Joterito
there was one issue accessing https with CBrCtlInterface donot know if it is still there or not. http://lists.macosforge.org/pipermai...il/035351.html
Hi,
(Thanks skumar_rao)
Anyone could confirm that it is an issue in CBrCtlInterface accesing https?
Thanks a lot,
Joterito
Last edited by joterito; 2008-10-20 at 17:18.
I have tested C:\Symbian\9.1\S60_3rd_MR_4\S60Ex\BrCtlSampleApp and when I changed a http url for a https url and it did not go...Maybe there is a bug...¿anyone know?
Thanks again,
Joterito
Hi all,
I am facing the same problem as you, I have been testing the Browser Control example, and it's working fine with http links, but I can't load any https page.
Any idea? Is there someone else experimenting the same behaviour?
Thanks in advance!
yes , just tried hanging error.
(Thanks skumar)
if anyone (skumar_rao or akerfeldt) get aditional information post a message, please.
Thanks in advance,
Joterito
Hi joterito and skumar_rao,
Nothing new by my side.
Did someone else find a solution for this?
Thank you in advance.
Regards.
Hi all,
I have not found a solution, i finally have restringed the url's to http (no https).
Any new information?
Thanks,
Joterito
Hi forum Nokia developers.
I just wonder is there no answer for the question above??
Can an https page be opened by CBrCtlInterface ??
If yes then how??
Please...
Yes Got the answer,
It does support the Https pages.
But before going to an Https page CBrCtlInterface calls DialogConfirmL( )
of MBrCtlDialogsProvider. There you have to pass the bool value according to your choice. i.e if you want Https page to be displayed, return ETrue,else return EFalse.Something like this
Code:virtual TBool DialogConfirmL(const TDesC& aTitle, const TDesC& aMessage, const TDesC& aYesMessage, const TDesC& aNoMessage) { TBuf<256> msg; msg.Append(aMessage); if(CEikonEnv::QueryWinL(msg,_L(""))) return ETrue; else //return EFalse; }