RE: Using a Custom COM Object

2007-07-06 Thread John Mason
the permissions you give the account. John [EMAIL PROTECTED] -Original Message- From: jonese [mailto:[EMAIL PROTECTED] Sent: Friday, July 06, 2007 1:15 PM To: CF-Talk Subject: Re: Using a Custom COM Object Got it registered now it work. Thanks michael! jonese On 7/6/07, Dawson

Re: Using a Custom COM Object

2007-07-06 Thread jonese
Got it registered now it work. Thanks michael! jonese On 7/6/07, Dawson, Michael <[EMAIL PROTECTED]> wrote: > Have you registered the object yet? > > -Original Message- > From: jonese [mailto:[EMAIL PROTECTED] > Sent: Friday, July 06, 2007 10:29 AM > To: CF-Tal

Re: Using a Custom COM Object

2007-07-06 Thread jonese
No how do i do that? jonese On 7/6/07, Dawson, Michael <[EMAIL PROTECTED]> wrote: > Have you registered the object yet? > > -Original Message- > From: jonese [mailto:[EMAIL PROTECTED] > Sent: Friday, July 06, 2007 10:29 AM > To: CF-Talk > Subject: Re: Using a

Re: Using a Custom COM Object

2007-07-06 Thread jonese
[mailto:[EMAIL PROTECTED] > Sent: Friday, July 06, 2007 11:29 AM > To: CF-Talk > Subject: Re: Using a Custom COM Object > > Tried that Dave didn't work. gave me the "java.lang.Exception: Invalid COM > object" error. > > An exception occurred

RE: Using a Custom COM Object

2007-07-06 Thread John Mason
Which windows account is Coldfusion running under? John [EMAIL PROTECTED] -Original Message- From: jonese [mailto:[EMAIL PROTECTED] Sent: Friday, July 06, 2007 11:29 AM To: CF-Talk Subject: Re: Using a Custom COM Object Tried that Dave didn't work. gave me the "java.lang

RE: Using a Custom COM Object

2007-07-06 Thread Dawson, Michael
Have you registered the object yet? -Original Message- From: jonese [mailto:[EMAIL PROTECTED] Sent: Friday, July 06, 2007 10:29 AM To: CF-Talk Subject: Re: Using a Custom COM Object Tried that Dave didn't work. gave me the "java.lang.Exception: Invalid COM object" error.

RE: Using a Custom COM Object

2007-07-06 Thread Dave Watts
> Tried that Dave didn't work. gave me the > "java.lang.Exception: Invalid COM object" error. Are you sure you registered the object with regsvr32? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our trai

Re: Using a Custom COM Object

2007-07-06 Thread jonese
Tried that Dave didn't work. gave me the "java.lang.Exception: Invalid COM object" error. An exception occurred when instantiating a Com object. The cause of this exception was that: coldfusion.runtime.com.ComObjectInstantiationException: An exception occurred when instantiating a Com object. Th

Re: Using a Custom COM Object

2007-07-06 Thread jonese
Also i'm putting the .dll file in the same directory as the calling script. Should i be placing it somewhere else? it's not in the root of the website. jonese On 7/5/07, Dave Watts <[EMAIL PROTECTED]> wrote: > > Here's a small sample VB program that uses the object (which, > > of course, has to b

RE: Using a Custom COM Object

2007-07-05 Thread Dave Watts
> Here's a small sample VB program that uses the object (which, > of course, has to be registered): > > Private Sub Form_Load() > > Dim oEncryptAs Object > Dim sInput As String > Dim sOutput As String > > Set oEncrypt = CreateObject("CustomEncrypt.Class1") > >