View previous topic :: View next topic |
Author |
Message |
BrandonK -
Joined: 14 Apr 2005 Posts: 10
|
Posted: Thu Jan 19, 2006 11:46 pm Post subject: Component Object Model (COM) and Abyss |
|
|
Has anyone ever used a COM with Abyss web server. Everytime I try and open a sessions with my COM, I get a 500 Internal Server Error. I am pretty sure that I have the code accurate, and I can use a VB script to connect to the same computer using the same COM. Its only when I use it as a web server that I run in to these problems. I know VERY little about COMs, so I don't know if I need to configure abyss to get this to work.
I can give more information if someone needs. This is for a project at work, so I'm very desperate.
Thanks
Brandon |
|
Back to top |
|
 |
swimmer618 -
Joined: 17 Apr 2006 Posts: 1
|
Posted: Mon Apr 17, 2006 4:08 am Post subject: |
|
|
I'm gettin the same error when I try:
Code: | <?php
$wp = new COM("Word.Application") or die("Cannot open Word.");
$wp->visible = 1;
$wp->Documents->Add();
$wp->Selection->Typetext("Hello, Word.");
?> |
It's the first time I've ever tried to use a COM, so I don't know much about them either. |
|
Back to top |
|
 |
aprelium -
Joined: 22 Mar 2002 Posts: 6800
|
Posted: Mon Apr 17, 2006 10:06 am Post subject: Re: Component Object Model (COM) and Abyss |
|
|
BrandonK,
COM is run by your scripting language and not by Abyss Web Server.
We have successfully tested scripts using COM objects: for an example, see http://www.aprelium.com/forum/viewtopic.php?p=40520#40520 .
What is the script you are using? Is there an error message explaining the failure of the COM object? _________________ Support Team
Aprelium - http://www.aprelium.com |
|
Back to top |
|
 |
|