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);
%>