ASP - Server Not Found

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. ColdFusion MX ODBC Server cannot be found
      Has anyone solved this yet?
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default 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...
    > 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
    >
    >

    Ray at Guest

  4. #3

    Default 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...
    > 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...
    > > 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
    > >
    > >
    >
    >

    TomB Guest

  5. #4

    Default 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

  6. #5

    Default 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

  7. #6

    Default 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

  8. #7

    Default 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...
    > 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.
    >
    >
    >

    Ray at Guest

  9. #8

    Default 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

  10. #9

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139