« Previous Next »

Answered Thread: Relocate Server

Last post 11-11-2009 11:29 AM by tomkmvp. 3 replies.

 

RSS

Page 1 of 1 (4 items)

Sort Posts:

  • 11-10-2009, 4:10 AM

    • NelsonM
    • Not Ranked
    • Joined on 11-04-2009, 1:55 PM
    • Posts 2

    Relocate Server

    Hello, Im a complete novice and would like some pointers.

    My company are running an application on a closed network on a server that is about to be scrapped (but still currently works fine).  The applications (SQL 2000 db with legacy asp front end) have both been copied onto a local server (using an ISS wizard), the SQL works fine through enterprise manager, but when you attempt to access the front end using IE, the following Error Messages are displayed; 

    • server-side error
    • 500 internal Server Error
    • cCommandMarshaller.execute
    • cAbstractDCProxy.call
    • mainConsoleUI.logon
    • mainConsoleUI.Initialise
    • mainConsoleUI.window_onload 

    I have checked the server settings (currently running on Win 2000 server, ISS 5) and everything looks good in the ISS settings.  

    My predecessor has pointed at a “getServerVariable.asp” file held in a getNTLogon folder and thinks this is the problem; I have included the text below.  Any help will be greatly appreciated. 

    getServerVariable text

    <%@ Language=JavaScript%>

    <%
    Response.Buffer = true;

    var sReturnXML;

    sReturnXML = '<?xml version="1.0"?><result>' + Request.ServerVariables(Request.QueryString("variableName")) + '</result>';

    Response.ContentType = "text/xml";
    Response.Write (sReturnXML);
    %>

  • 11-10-2009, 10:22 AM In reply to

    • tomkmvp
    • Top 10 Contributor
    • Joined on 03-20-2003, 10:27 AM
    • Central NJ
    • Posts 7,191
    • IIS MVPs

    Re: Relocate Server

    nelsonm:
    getServerVariable text

    <%@ Language=JavaScript%>

    <%
    Response.Buffer = true;

    var sReturnXML;

    sReturnXML = '<?xml version="1.0"?><result>' + Request.ServerVariables(Request.QueryString("variableName")) + '</result>';

    Response.ContentType = "text/xml";
    Response.Write (sReturnXML);
    %>

    This is the only server-side code in all of what you have posted, and it's so simple I doubt the error is here.

    Your custom error message seems to point to some custom component(s):

    nelsonm:
  • cCommandMarshaller.execute
  • cAbstractDCProxy.call
  • mainConsoleUI.logon
  • mainConsoleUI.Initialise
  • mainConsoleUI.window_onload 
  • Have the developer(s) of those three objects start there.

    You forgot to mention what operating system/IIS version you have copied the new site to ...

  • 11-11-2009, 4:10 AM In reply to

    • NelsonM
    • Not Ranked
    • Joined on 11-04-2009, 1:55 PM
    • Posts 2

    Re: Relocate Server

    thanks Tomkmvp, OS is 2000 Server on both servers, so I presume its ISS 5.  The problem is getting hold of the developers, they have long since moved on.

  • 11-11-2009, 11:29 AM In reply to

    • tomkmvp
    • Top 10 Contributor
    • Joined on 03-20-2003, 10:27 AM
    • Central NJ
    • Posts 7,191
    • IIS MVPs

    Answered Re: Relocate Server

    That's going to be tough.

    Looks like some custom error handling is going on, you might want to disable that to help get to the bottom of this.  That would allow the native errors to come through ...

Page 1 of 1 (4 items)