Classic ASP page fails due to https
Error:
The requesting page and the url destination are in the same directory.
Server.MapPath yields the same error
<%
dim data
Set httpRequest = Server.CreateObject("MSXML2.ServerXMLHTTP")
httpRequest.Open "POST", "https://servername/filename.asp", False
httpRequest.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
data = "runner=runstring"
httpRequest.send(data)
postResponse = httpRequest.responseText
response.write postResponse
%>