Since going to WIN2000 Server from WINNT, our web page which uses asp JMail.GetMessageBodyFromURL(strReferencePage) with
strReferencePage(" & Request.ServerVariables("LOCAL_ADDR") & ":" & Request.ServerVariables("SERVER_PORT")& strPathOnly & "Approval_Instructions.asp?RequestID=" & Session("REQ_ID") & "&email=yes" )
This fails as the page cannot be found. Our support indicated we cannot use the TCPIP address in WIN2000 because multiple websites share one address.
So we changed it to:
strReferencePage = " & Request.ServerVariables("SERVER_NAME") & strPathOnly & "Approval_Instructions.asp?RequestID=" & Session("REQ_ID") & "&email=yes"
& now it's been failing with
jmail.SMTPMail error '8000ffff'
Connection timed out
Are we doing something wrong ?
strReferencePage(" & Request.ServerVariables("LOCAL_ADDR") & ":" & Request.ServerVariables("SERVER_PORT")& strPathOnly & "Approval_Instructions.asp?RequestID=" & Session("REQ_ID") & "&email=yes" )
This fails as the page cannot be found. Our support indicated we cannot use the TCPIP address in WIN2000 because multiple websites share one address.
So we changed it to:
strReferencePage = " & Request.ServerVariables("SERVER_NAME") & strPathOnly & "Approval_Instructions.asp?RequestID=" & Session("REQ_ID") & "&email=yes"
& now it's been failing with
jmail.SMTPMail error '8000ffff'
Connection timed out
Are we doing something wrong ?