RE: tomcat and active x problem

2008-03-25 Thread Propes, Barry L
I wonder if that is a breach of javascript across domains. Is that possible? -Original Message- From: loredana loredana [mailto:[EMAIL PROTECTED] Sent: Saturday, March 22, 2008 1:01 PM To: users@tomcat.apache.org Subject: tomcat and active x problem Hi, i have an html page that has

RE: tomcat and active x problem

2008-03-25 Thread Peter Crowther
From: loredana loredana [mailto:[EMAIL PROTECTED] function OpenOutlookDoc() {try{ var outlookApp = new ActiveXObject(Outlook.Application); var nameSpace = outlookApp.getNameSpace(MAPI); mailFolder = nameSpace.getDefaultFolder(6); [...] }catch(e){ alert(e); // act on any error that you get

Re: tomcat and active x problem

2008-03-23 Thread Nikola Milutinovic
Hi, i have an html page that has a javascript function that opens an outlook mail window .the function is pretty basic: function OpenOutlookDoc() {try{ var outlookApp = new ActiveXObject(Outlook.Application); var nameSpace = outlookApp.getNameSpace(MAPI); mailFolder =

Re: tomcat and active x problem

2008-03-23 Thread loredana loredana
: Re: tomcat and active x problem Hi, i have an html page that has a javascript function that opens an outlook mail window .the function is pretty basic: function OpenOutlookDoc() {try{ var outlookApp = new ActiveXObject(Outlook.Application); var nameSpace = outlookApp.getNameSpace(MAPI

Re: tomcat and active x problem

2008-03-23 Thread loredana loredana
: Re: tomcat and active x problem this is the code of the page: html head script language=javascript function OpenOutlookDoc() { try { var outlookApp = new ActiveXObject(Outlook.Application); var nameSpace = outlookApp.getNameSpace(MAPI); mailFolder = nameSpace.getDefaultFolder(6); mailItem

tomcat and active x problem

2008-03-22 Thread loredana loredana
Hi, i have an html page that has a javascript function that opens an outlook mail window .the function is pretty basic: function OpenOutlookDoc() {try{ var outlookApp = new ActiveXObject(Outlook.Application); var nameSpace = outlookApp.getNameSpace(MAPI); mailFolder =