|
|
|
|
|
| | |
|
PowerASP active server pages asp.net microsoft .net framework sdk learn asp what is asp tutorial learn asp.net CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
Subject: |
ASPAllowOutOfProcComponents |
From: |
Jarle Berge |
Date: |
9/24/1999 10:32:37 AM |
IP: |
193.216.57.66 |
I try to get a referance to a Word-application Object using ASP. To include the object-library I put the following into my global.asa (first line):
<!--METADATA TYPE="TypeLib" NAME="Microsoft Word 8.0 Object Library" UUID="{00020905-.....} VERSION="8.0"-->
The reference is created by:
Dim objWrd
Set objWrd = Server.CreateObject("Word.Application")
, but I get the errormessage:
Server object error ASP 0196 : 80040154
Cannot launch out of process component
/Exchange/global.asa, line 39
Only InProc server components should be used. If you want to use LocalServer components, you must set the AspAllowOutOfProcComponents metabase setting. Please consult the help file for important considerations.
I try to solve it by including the following in my global.asa:
Dim objSrv
Set objSrv = GetObject("IIS://localhost")
objSrv.AspAllowOutOfProcComponents = True
, and get the message:
Microsoft VBScript runtime error 800a0046
Permission denied: GetObject
/Exchange/global.asa
How can I slove the problem, and get access to the IIS localhost? |
Follow Up - Re: ASPAllowOutOfProcComponents - Bill Clark 9/27/1999 12:45:04 PM
|
|

|
|
|
|
|
|
|
|
|
|