Ask a Question related to ASP Database, Design and Development.
-
Simple #1
Server.CreateObject works on IIS 5.x / WinXP Fails on IIS 6.x / Win2K3
I have a VB Script that I call from my ASP page. One of the first
things it does is:
'Launch Access
Server.CreateObject("Access.Application")
'Open DB
'Preview Report
This works fine on IIS 5.x, on Windows XP. But when I try this on
Windows 2003 (with the latest IIS that ships with it), it does not
work. I can see in the IIS Log that the Server.CreateObject failed.
What I'm trying to achieve has been well explained in:
[url]http://www.4guysfromrolla.com/webtech/042600-1.shtml[/url]
I tried playing around with the user/permissions (for IIS Out-Of-Proc,
DCom Config - Access DB/App), etc in Component Services and IIS (Pool,
Website properties). But to no avail.
I'm trying this on the local machine, where IIS and Access 2002 are
installed. Other ASP and ASP.Net pages work fine on this box. So there
are no generic configuration / network / firewall issues, per se.
Your ideas/suggestions will be deeply appreciated.
Thanks.
Simple Guest
-
CreateObject of VB DLL fails in ASP page
Hello My problem is as following: I have a VB6 DLL, which is called by an asp page with simple createobject method. It worked fine, but we've... -
Server.CreateObject("MSWC.Tools") fails in Windows 2003 server?
hello all, I hope you all are fine and doing well. I'm finding this error when i do Server.CreateObject("MSWC.Tools") in ASP using interdev. I... -
WSC CreateObject fails in ASP with 0177 error Ran Out of Memory
Greetings, This seems to be the right group to ask this question however if anyone can suggest a more appropriate group then please do so. I... -
CreateObject Fails Every Other Call
Whenever I call a particular commercial component (Crystal RDC) from my own VB6 component (called from ASP) concurrently with 2 ASP clients (no... -
HELP: Linux telnet smtp server fails, Works from MS Windows
I'm stumped. And I'm not a guru. I think I have a network setup problem on my Linux box, but I'm not sure what to look for. Problem: Trying... -
McKirahan #2
Re: Server.CreateObject works on IIS 5.x / WinXP Fails on IIS 6.x / Win2K3
"Simple" <workset@excite.com> wrote in message
news:2c48820c.0407130849.11ccaf40@posting.google.c om...Is MS-Office XP installed?> I have a VB Script that I call from my ASP page. One of the first
> things it does is:
> 'Launch Access
> Server.CreateObject("Access.Application")
> 'Open DB
> 'Preview Report
>
> This works fine on IIS 5.x, on Windows XP. But when I try this on
> Windows 2003 (with the latest IIS that ships with it), it does not
> work. I can see in the IIS Log that the Server.CreateObject failed.
>
> What I'm trying to achieve has been well explained in:
> [url]http://www.4guysfromrolla.com/webtech/042600-1.shtml[/url]
>
> I tried playing around with the user/permissions (for IIS Out-Of-Proc,
> DCom Config - Access DB/App), etc in Component Services and IIS (Pool,
> Website properties). But to no avail.
>
> I'm trying this on the local machine, where IIS and Access 2002 are
> installed. Other ASP and ASP.Net pages work fine on this box. So there
> are no generic configuration / network / firewall issues, per se.
>
> Your ideas/suggestions will be deeply appreciated.
>
> Thanks.
Try for XP:
Set oAppXP = Server.CreateObject("Access.Application.10")
McKirahan Guest



Reply With Quote

