X-MIME-Autoconverted: from quoted-printable to 8bit by
htk.kharkov.ua id oA1FicEH024278
{font:style=font-family: trebuchet ms,geneva; font-size: 10pt;}Hi Navin,{font}
{font:style=font-family: trebuchet ms,geneva; font-size: 10pt;} \\{font}
{font:style=font-family: trebuchet ms,geneva; color: #808080; font-size: 10pt;}> In JExplorer I didn't have to write any code for handling security. It simply poped up a warning dailog in case it couldn't verify the certificate. Shouldn't the behavior be similiar?{font}
{font:style=font-family: trebuchet ms,geneva; font-size: 10pt;} \\{font}
{font:style=font-family: trebuchet ms,geneva; font-size: 10pt;}You may see by default the certificate popup warning dialog in JExplorer because this is default behavior when certificate problems occur in Internet Explorer engine. But Mozilla engine in this case just displays a web page with warning message, this is default behavior for Mozilla engine. I agree that behavior should be similar, this is why we provide HttpSecurityHandler that allows processing security problems in the same maner for different engines.{font}
{font:style=font-family: trebuchet ms,geneva; font-size: 10pt;} \\{font}
{font:style=font-family: trebuchet ms,geneva; font-size: 10pt;}Please note that for different engines could be different secrutity problem reasons. Please try to register HttpSecurityHandler that allows ignoring all security problems. For example:{font}
{code:java}В В В browser.setHttpSecurityHandler(new HttpSecurityHandler() {\\ В В В В В В В public HttpSecurityAction onSecurityProblem(Set
problems) {\\ В В В В В В В В В В В return HttpSecurityAction.CONTINUE;\\ В В В В В В В }\\ В В В });{code}
{font:style=font-family: trebuchet ms,geneva; font-size: 10pt;} \\{font}
{font:style=font-family: trebuchet ms,geneva; color: #808080; font-size: 10pt;}> Also in case of JExplorer I had to call Browser.close() before I could remove the browser panel from the window containing it. All this was done because the browser window would not be disposed otherwise. Is this still the case?{font}
{font:style=font-family: trebuchet ms,geneva; font-size: 10pt;} \\{font}
{font:style=font-family: trebuchet ms,geneva; font-size: 10pt;}Yes, to dispose Browser instance you should invoke the Browser.dispose method (Browser.close analog in JExplorer). \\{font}