473,396 Members | 1,921 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

.NET COm Interop in IE?

Im trying to package two dll files to be used as a web control.
Im using a C# class that is exposed through com interop that I
created in Visual studio 2005 to add some business functionality.
That depends on a third-party dll: MAPI33.dll http:/
www.mapi33.adexsolutions.com.I'm trying to package them to be embedded
in my webpage to be used with javascript like so:<Html>
<Script Language="javascript" defer="true">

var outlook = new ActiveXObject("Net.Em.Outlook");
//do something with object

</Script>
<Body>

<OBJECT id="test" CLASSID="CLSID:
81C599FB-9C61-4ae6-8866-22397D8D6FA4"
CODEBASE="emoutlook.cab#version=1,0,0,0">
</OBJECT>
</Body>
</html>
Here is the inf file I've created to install the dll's on the
client: [version]
signature="$CHICAGO$"
AdvancedINF=2.0
[Add.Code]
emoutlook.dll=emoutlook.dll
MAPI33.dll=MAPI33.dll
[MAPI33.dll]
FileVersion=4,5,2709,24579
file-win32-x86=thiscab
RegisterServer=yes
[emoutlook.dll]
FileVersion=1,0,0,0
file-win32-x86=thiscab
RegisterServer=yes I've packaged the dll's along with the inf
file in a cab using cabarc.exe cabarc N emoutlook.cab
emoutlook.inf emoutlook.dll MAPI33.dll I've adjusted all my IE
setttings to allow download and installation of an unsigned activex
object, like: download unsigned activex controls: Enable
initialize and script activex controls marked as unsafe: Enable
etc, etc... When I browse my page, IE prompts me to download and
install emoutlook.cab. Using fiddler I see that it does in fact
download the cab. I can go to Tools Manage Add-ons and see the
entry for Net.em.Outlook, It's type is activex control, and I see that
it is enabled as well. One thing I find odd is that the file
associated with it is mscoree.dll, not either of the dlls in the
cab. I get the following javascript error: "automation server can't
create object"at the line: var outlook = new
ActiveXObject("Net.Em.Outlook");

Jul 19 '07 #1
1 2693
because is not signed, nor marked safe for scripting, the browser will
not load it. change your browser security setting to fully trust your
web site.

-- bruce (sqlwork.com)

super todd wrote:
Im trying to package two dll files to be used as a web control.
Im using a C# class that is exposed through com interop that I
created in Visual studio 2005 to add some business functionality.
That depends on a third-party dll: MAPI33.dll http:/
www.mapi33.adexsolutions.com.I'm trying to package them to be embedded
in my webpage to be used with javascript like so:<Html>
<Script Language="javascript" defer="true">

var outlook = new ActiveXObject("Net.Em.Outlook");
//do something with object

</Script>
<Body>

<OBJECT id="test" CLASSID="CLSID:
81C599FB-9C61-4ae6-8866-22397D8D6FA4"
CODEBASE="emoutlook.cab#version=1,0,0,0">
</OBJECT>
</Body>
</html>
Here is the inf file I've created to install the dll's on the
client: [version]
signature="$CHICAGO$"
AdvancedINF=2.0
[Add.Code]
emoutlook.dll=emoutlook.dll
MAPI33.dll=MAPI33.dll
[MAPI33.dll]
FileVersion=4,5,2709,24579
file-win32-x86=thiscab
RegisterServer=yes
[emoutlook.dll]
FileVersion=1,0,0,0
file-win32-x86=thiscab
RegisterServer=yes I've packaged the dll's along with the inf
file in a cab using cabarc.exe cabarc N emoutlook.cab
emoutlook.inf emoutlook.dll MAPI33.dll I've adjusted all my IE
setttings to allow download and installation of an unsigned activex
object, like: download unsigned activex controls: Enable
initialize and script activex controls marked as unsafe: Enable
etc, etc... When I browse my page, IE prompts me to download and
install emoutlook.cab. Using fiddler I see that it does in fact
download the cab. I can go to Tools Manage Add-ons and see the
entry for Net.em.Outlook, It's type is activex control, and I see that
it is enabled as well. One thing I find odd is that the file
associated with it is mscoree.dll, not either of the dlls in the
cab. I get the following javascript error: "automation server can't
create object"at the line: var outlook = new
ActiveXObject("Net.Em.Outlook");
Jul 20 '07 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: roy | last post by:
I try to call com written in VB 6.0. When I use VS.net Studio to do the debuging, some time it works fine, some time I got the following message: Server Error in '/GISOnlineReservation'...
0
by: roy | last post by:
I try to call com written in VB 6.0., some time it works fine, some time I got the following message: Server Error in '/GISOnlineReservation' Application....
0
by: keefah | last post by:
Hi, I'm writing a C# web app that uses Outlook to send email. I use a reference to the Microsoft Outlook 11.0 Object Library, but it's giving me problems. I tracked down some stuff on the Net...
0
by: lacour | last post by:
I can't seem to figure out the difference between adding a COM dll reference in VS2003 and by using TLBIMP. I have a COM dll that references another COM dll, and I want the syntax of my...
1
by: Nadav | last post by:
Hi, Introduction *************** I have a system build of a collection of 'Native COM objects' and '.NET COM interop' objects, all of the COM objects are managed through a 'Native COM' layer,...
8
by: Rob Edwards | last post by:
When trying to add the Microsoft CDO for Exchange Management Library (aka CDOEXM.dll) I receive the following message: "A reference to 'Microsoft CDO for Exchange Management Library' could not be...
7
by: R Reyes | last post by:
Can someone please explain to me why I can't get the MS Word Interop assembly to work in my VS2005 project? I'm trying to manipulate MS Word from my Web Form application and I can't get passed...
2
by: JC | last post by:
Anybody knows what problem has this code? I think, in the Garbage Collector? You know the Solution? The program in the test's case, whit 350 contacts, run OK before number 86. The error is a...
1
by: allbelonging | last post by:
C#.Net Outlook 2003 automation (programmatically) with Office.Interop.Outlook Problem: I have my outlook 2003 configured with multiple mailbox on my local machine. I want to specify the mailbox...
0
by: Tina | last post by:
I've gotten this before where it says there is a problem with Interop.MSDASC but I can't remember what causes this. This is a 1.1 app I'm trying to debug in vs2005. It was running yesterday just...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.