4 Replies Last post: Aug 20, 2008 8:48 PM by mark111  
jasond   18 posts since
Apr 24, 2006
Currently Being Moderated

Jan 8, 2008 12:39 AM

handling onAuthenticate on Vista generates access-violation

 

Windows Vista Ultimate, IE 7.0.6000.16512,  JDK 1.5_12

 

 

Internet Options is configured to use a proxy server that requires authentication.

 

 

You can reproduce this by editing the JExplorerDemo. Open TabbedBrowsersPane.java, find the createBrowser method.

 

 

Add this code, and replace the username and password with your username and password for your proxy server. Then rebuild the jar. 

 

 

        webBrowser.setAuthenticateHandler(new AuthenticateHandler() {

 

           public String getPassword() {

              return("proxyPassword");

           }

 

           public String getUserName() {

              return("proxyUser");

           }

 

           public void onAuthenticate() {

 

           }

 

          });

 

 

 

 

Once the getUserName() and getPassword() methods are called, I get this error:

 

 

Exception c0000005, at 76EC20E3

Access violation: attempting to write memory at address 00000000

Native function stack data: b913ef0,b6e0078,4045f9df,88000000

 

 

And the page fails to load.

 

 

-Jason

 

 

 

 

 

 

 

 

Vladimir Ikryanov TeamDev Ltd. 404 posts since
Apr 24, 2006
Currently Being Moderated
2. Jan 9, 2008 6:39 PM in response to: jasond
Re: handling onAuthenticate on Vista generates access-violation

Hello Jason,

 

Thank you for reporting this issue.

 

We will investigate it and let you know the results when the issue will be solved.

 

Regards,

Vladimir Ikryanov

mark111   9 posts since
Apr 19, 2008
Currently Being Moderated
3. May 6, 2008 11:35 PM in response to: Vladimir Ikryanov
Re: handling onAuthenticate on Vista generates access-violation

 

Hi,

 

 

Has there been any progress on this issue?  I am seeing the same problem running JExplorer 1.9 on Vista.

 

 

thanks,

 

 

Mark

 

 

mark111   9 posts since
Apr 19, 2008
Currently Being Moderated
4. Aug 20, 2008 8:48 PM in response to: mark111
Re: handling onAuthenticate on Vista generates access-violation

using build 902 of JExplorer 1.9 and this is still a problem on Vista.  Any plans on revisiting this?

More Like This

  • Retrieving data ...