Ask a Question related to ASP Database, Design and Development.
-
Arthur E Oliver #1
ASP - Server Not Found
I am at my wits end.
Could someone please help. I developed a web on a Win2000 Server\IIS machine
and it worked perfectly on that machine. I have since bought a new computer
and installed Win Server 2003. I then installed all my software from the
other Win2000 Server computer. When I run my web app on the 2003 server, my
HTM files work perfectly but all my ASP files display "This page cannot be
displayed -
HTTP 500 - Internal server error
Internet Explorer
Can anyone help me please....
Thanx,
Arthur
Arthur E Oliver Guest
-
PHP - FDF>PDF on server page not found?? - sometimes!!!?
I have put together a PHP page that reads data from a MYSQL database a writes a FDF file when a button is pressed on a web page The user has a... -
ColdFusion MX ODBC Server cannot be found
Has anyone solved this yet? -
MySQL server running but can't be found
I get the following message when trying to set up a datasource in CF Administrator. Connection verification failed for data source: gmfg_fusebox... -
Server Not Found
Hi I am unable to run a webservices app, which was running well in a different machine, these are the errors. help!! Sa... -
Specified SQL Server Not Found
We have an server (w2k) which amongst other things hosts out intranet. The intranet site is partially DB-driven, but the DB was hosted on a... -
Ray at #2
Re: ASP - Server Not Found
This is your first step.
[url]http://www.aspfaq.com/show.asp?id=2109[/url]
Ray at work
"Arthur E Oliver" <arthur@intekom.co.za> wrote in message
news:bspsgt$no9$1@ctb-nnrp2.saix.net...machine> I am at my wits end.
> Could someone please help. I developed a web on a Win2000 Server\IIScomputer> and it worked perfectly on that machine. I have since bought a newmy> and installed Win Server 2003. I then installed all my software from the
> other Win2000 Server computer. When I run my web app on the 2003 server,> HTM files work perfectly but all my ASP files display "This page cannot be
> displayed -
>
> HTTP 500 - Internal server error
> Internet Explorer
> Can anyone help me please....
> Thanx,
> Arthur
>
>
Ray at Guest
-
TomB #3
Re: ASP - Server Not Found
This is a possible second step
[url]http://www.aspfaq.com/show.asp?id=2147[/url]
"Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message
news:%23zon$ujzDHA.4064@tk2msftngp13.phx.gbl...be> This is your first step.
> [url]http://www.aspfaq.com/show.asp?id=2109[/url]
>
> Ray at work
>
> "Arthur E Oliver" <arthur@intekom.co.za> wrote in message
> news:bspsgt$no9$1@ctb-nnrp2.saix.net...> machine> > I am at my wits end.
> > Could someone please help. I developed a web on a Win2000 Server\IIS> computer> > and it worked perfectly on that machine. I have since bought a new> my> > and installed Win Server 2003. I then installed all my software from the
> > other Win2000 Server computer. When I run my web app on the 2003 server,> > HTM files work perfectly but all my ASP files display "This page cannot>> > displayed -
> >
> > HTTP 500 - Internal server error
> > Internet Explorer
> > Can anyone help me please....
> > Thanx,
> > Arthur
> >
> >
>
TomB Guest
-
Arthur E Oliver #4
Re: ASP - Server Not Found
Thanx Ray, your a star...
Could I possibly ask one more question, now that that problem has been
solved.
My web app, that depends on calls to a Datadll.DLL, worked just fine on my
previous Win2000 Server, but gives me the following error on my present
Win2003 Server. Everything else works fine except the calls to this dll.
Yes... the dll is registered, or so it says.
The definition in my Global.asa file is as follows:
Sub Application_OnStart
'==Visual InterDev Generated - startspan==
'--Project Data Connection
Application("Connection1_ConnectionString") = "DSN=DataDsn;User
Id=username;PASSWORD=password;"
Application("Connection1_ConnectionTimeout") = 15
Application("Connection1_CommandTimeout") = 30
Application("Connection1_CursorLocation") = 3
Application("Connection1_RuntimeUserName") = "username"
Application("Connection1_RuntimePassword") = "password"
'-- Project Data Environment
Set DE = Server.CreateObject("DERuntime.DERuntime")
Application("DE") = DE.Load(Server.MapPath("Global.ASA"),
"_private/DataEnvironment/DataEnvironment.asa")
'==Visual InterDev Generated - endspan==
End Sub
prior to the call, the variable is set as:
Set SerialSearch = Server.CreateObject("DataDll.StdProcs")
NOW THIS is the call where the error occurs....
RetVar = SerialSearch.GetSerialDescription(sSearch, Names)
the error being reported as:
Datadll error '800a005b'
Object variable or With block variable not set
What have I forgotten?
Thanx,
Arthur
Arthur E Oliver Guest
-
Ray at #5
Re: ASP - Server Not Found
You may want to post a new thread in the .components group and include the
relevant code snippet and info there. There are new permissions issues to
deal with in 2003 (although it sounds like you're just missing a SET
objectVariable= line) with which I am not familiar.
Ray at work
"Arthur E Oliver" <arthur@intekom.co.za> wrote in message
news:bssqq3$abe$1@ctb-nnrp2.saix.net...> Thanx Ray, your a star...
> Could I possibly ask one more question, now that that problem has been
> solved.
>
> My web app, that depends on calls to a Datadll.DLL, worked just fine on my
> previous Win2000 Server, but gives me the following error on my present
> Win2003 Server. Everything else works fine except the calls to this dll.
> Yes... the dll is registered, or so it says.
>
> The definition in my Global.asa file is as follows:
>
> Sub Application_OnStart
> '==Visual InterDev Generated - startspan==
> '--Project Data Connection
> Application("Connection1_ConnectionString") = "DSN=DataDsn;User
>
> Id=username;PASSWORD=password;"
> Application("Connection1_ConnectionTimeout") = 15
> Application("Connection1_CommandTimeout") = 30
> Application("Connection1_CursorLocation") = 3
> Application("Connection1_RuntimeUserName") = "username"
> Application("Connection1_RuntimePassword") = "password"
> '-- Project Data Environment
> Set DE = Server.CreateObject("DERuntime.DERuntime")
> Application("DE") = DE.Load(Server.MapPath("Global.ASA"),
>
> "_private/DataEnvironment/DataEnvironment.asa")
> '==Visual InterDev Generated - endspan==
> End Sub
>
> prior to the call, the variable is set as:
> Set SerialSearch = Server.CreateObject("DataDll.StdProcs")
>
> NOW THIS is the call where the error occurs....
> RetVar = SerialSearch.GetSerialDescription(sSearch, Names)
>
> the error being reported as:
>
> Datadll error '800a005b'
> Object variable or With block variable not set
>
> What have I forgotten?
>
> Thanx,
> Arthur
>
>
Ray at Guest
-
Arthur E Oliver #6
Re: ASP - Server Not Found
You spot on again Ray. It is a 2003 permissions problem. I get the following
return:
Server object error 'ASP 0178 : 80070005'
Server.CreateObject Access Error
/VerifyLogon.asp, line 35
The call to Server.CreateObject failed while checking permissions. Access is
denied to this object.
I have no idea where to rectify this, it is probably so simple - but when
you do not know how, it remains a problem.
Thanx for all your help and time, beginners like me cannot thank you gurus
enough.
Thanx again,
Arthur.
Arthur E Oliver Guest
-
Ray at #7
Re: ASP - Server Not Found
You're welceome. :] My ~guess~ is that you need to change the launch
permissions on your object in dcomcnfg (start---run---dcomcnfg), but I
really don't know.
Ray at work
"Arthur E Oliver" <arthur@intekom.co.za> wrote in message
news:bsu33r$2bj$1@ctb-nnrp2.saix.net...following> You spot on again Ray. It is a 2003 permissions problem. I get theis> return:
>
> Server object error 'ASP 0178 : 80070005'
> Server.CreateObject Access Error
> /VerifyLogon.asp, line 35
> The call to Server.CreateObject failed while checking permissions. Access> denied to this object.
>
>
> I have no idea where to rectify this, it is probably so simple - but when
> you do not know how, it remains a problem.
> Thanx for all your help and time, beginners like me cannot thank you gurus
> enough.
> Thanx again,
> Arthur.
>
>
>
Ray at Guest
-
Arthur E Oliver #8
Re: ASP - Server Not Found
Thanx Ray,
All the problems have been aorted except for the Interbase database
permissions. I will contact them to find out w2hat the changes are between
2000 and 2003.
Guys like you restore one's faith in one's fellow man.
Arthur
Arthur E Oliver Guest
-
Ray at #9
Re: ASP - Server Not Found
Did you ever see that "Pay it Forward" movie? They should make one of those
about Usenet. ;]
Ray at home
Happy new year
"Arthur E Oliver" <arthur@intekom.co.za> wrote in message
news:bsvqfm$a5g$1@ctb-nnrp2.saix.net...> Thanx Ray,
> All the problems have been aorted except for the Interbase database
> permissions. I will contact them to find out w2hat the changes are between
> 2000 and 2003.
> Guys like you restore one's faith in one's fellow man.
> Arthur
>
>
Ray at Guest



Reply With Quote

