Click here to Skip to main content
15,881,172 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
My x64 Outlook Addin got some problem when loading java applet. In My Outlook AddIn, I use webBrowerControl to load java applet. I tested in windows7 x64 and MS Outlook 2010 x64. There is no issue at all. But the problem is started when I went to customer side and install. When webBrowsercontrol load the java applet, the whole outlook is crash and exit. Is there any setting that cause the this problem? the client environment used windows7 x64 and MS Outlook2010 x64. they have both x64 and x32 java 7 update 42.

Here is the source that cause the problem

C#
private void Form3_Load(object sender, EventArgs e)
    {
        try
        {
            this.Refresh();

            String APPLETCHK_URL = System.Configuration.ConfigurationManager.AppSettings["ELMS_APPLETCHK_URL"];
            APPLETCHK_URL = SERVERURL + APPLETCHK_URL;                
            logger.Debug("Downloading Applet from " + APPLETCHK_URL);
            this.webBrowser1.Url = new System.Uri(APPLETCHK_URL);                
            logger.Debug("Downloading completed.");
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.Message);
        }
    }


error caused in the following line.

C#
this.webBrowser1.Url = new System.Uri(APPLETCHK_URL); 


Thanks

What I have tried:

Developing Outlook AddIn x64. At testing environment , it is working. but at client machine, it is keep quitting the Outlook.
Posted
Updated 1-Mar-16 22:37pm

1 solution

Conflict with some addIn that encrypt the email, now working after unloading this mail encrypt addIn.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900