ok, i have read all the docs on cfcomet, still having problems on my local
nt box.
i have given the cf services admin rights.
any ideas?

thank you 
-paul

----------------------------------------------------------------------------
----

Error Occurred While Processing Request
Error Diagnostic Information

Could not complete the operation because the service provider does not
support it.

The error occurred while processing an element with a general identifier of
(CFSCRIPT), occupying document position (20:1) to (20:10).


Date/Time: 04/02/01 08:44:05
Browser: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 4.0; AIT)
Remote Address: 127.0.0.1
HTTP Referer: http://localhost/ol/

 
----------------------------------------------------------------------------
----
-------------------------code-----------------------------------------------
----
<!--- Try to connect to the Outlook application object --->
<CFTRY>    
    <!--- If it exists, connect to it --->    
    <CFOBJECT         
        ACTION="CONNECT"         
        CLASS="Outlook.Application"         
        NAME="objOutlook"         
        TYPE="COM">  
  <CFCATCH>    
    <!--- The object doesn't exist, so create it --->    
    <CFOBJECT         
        ACTION="CREATE"         
        CLASS="Outlook.Application"         
        NAME="objOutlook"         
        TYPE="COM">   
  </CFCATCH>
</CFTRY>

<!--- This will create an Appointment, aka Meeting --->
<CFSCRIPT>
    /* Get the object name space - currently MAPI is the only option */    
     objNameSpace = objOutlook.getNameSpace("MAPI");

    /* Create a new appointment structure using 'CreateItem' - '1' is for
'New Appointment' */
     newAppointment = objOutlook.CreateItem(1);    
     
    /* Sets the status of the Appointment */
     newAppointment.MeetingStatus = 1;    
     newAppointment.MessageClass = "IPM.meeting";

    /* Set parameters for the Appointment -- there are others available */
     newAppointment.Subject = "Cool Meeting";    
     newAppointment.Location = "Think Tank";    
     newAppointment.Start = "4/3/01 1:30:00 PM";    
     newAppointment.Duration = 90;   

    /* Create a new Recipients collection */
     recCollection = newAppointment.Recipients;

    /* You can add specific email addresses */
     recList = recCollection.Add("Paul Ihrig <[EMAIL PROTECTED]>");   

    // OR

    /* You can add by name, which will be verified and translated to an
email address */
   /*  recList = recCollection.Add("*C-DIGITAL CAMERA 3 NIKON (COLS)"); */

    // OR

    /* You can add by EntryID, but you have to fetch it first */
     /* entryByID =
objNameSpace.GetRecipientFromID("000000008B2E1F08C507D411B3DD004033E03EF9E40
D2000"); */

    /* Try to resolve it 
     if(entryByID.Resolve()){
        recList = recCollection.Add(entryByID.Name);
     }*/ 

    /* Use the next line if you're developing locally */
   //  newAppointment.Display();    

    /* Send the Appointment */    
     newAppointment.Send();
</CFSCRIPT>

----------------------------------------------------------------------------
----
-------------------------code-----------------------------------------------
----

-paul

Web Developer, NBBJ
Work:   [EMAIL PROTECTED]
        614 241-3534
fax:    614 485-5534

Home:   [EMAIL PROTECTED]
        614 449-1681

> icq:  47658358



ok i got past the error: now here is a new one?

my service provider doesn't support it??
i am my own provider?

Error Occurred While Processing Request
Error Diagnostic Information

Could not complete the operation because the service provider does not
support it.

The error occurred while processing an element with a general identifier of
(CFSCRIPT), occupying document position (20:1) to (20:10).


Date/Time: 03/30/01 09:59:49
Browser: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 4.0; AIT)
Remote Address: 127.0.0.1
HTTP Referer: http://localhost/ol/
 


-paul

Web Developer, NBBJ
Work:   [EMAIL PROTECTED]
        614 241-3534
fax:    614 485-5534

Home:   [EMAIL PROTECTED]
        614 449-1681

> icq:  47658358


-----Original Message-----
From: Paul Ihrig [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 30, 2001 9:31 AM
To: CF-Talk
Subject: COM & OutLook :: Error :: COM error 0x5


I get an error COM error 0x5

followed the example to fix, on CfCommet, with no luck. 
Gave CF Services admin access, but still getting same error.
do i need to reboot?

any advice would be great 

Error Occurred While Processing Request Error Diagnostic Information Error
trying to create object specified in the tag. 

COM error 0x5. Access is denied. 

The error occurred while processing an element with a general identifier of
(CFOBJECT), occupying document position (11:5) to (15:19). 

Date/Time: 03/30/01 09:15:22 Browser: Mozilla/4.0 (compatible; MSIE 5.5;
Windows NT 4.0; AIT) Remote Address: 127.0.0.1 HTTP Referer:
http://localhost/ol/ 

-paul

Web Developer, NBBJ
Work:   [EMAIL PROTECTED]
        614 241-3534
fax:    614 485-5534

Home:   [EMAIL PROTECTED]
        614 449-1681

icq:    47658358
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to