We are running a Windows 2000 Server with IIS 5.1. One of our customers has a web page that uses .asp to send email. However, the emails don't get sent. There are no emails in the badmail folder or in the queue.
We have been working on this problem for three days. We have used the following tools: telnet, portqry, and smtpdiag. SMTPDIAG and PORTQRY find that port 25 on the server is listening and DNS is OK. However, when I try to telnet in to the server, I don't get a 220 message. I don't get any message. The command prompt screen goes blank for a few minutes and then returns to the command prompt.
We have Tiny Personal Firewall version 5 running and all modules are currently disabled while we are trying to figure this out.
I do not have a background in .asp. Our customer's web developer is who is working on the .asp part of the web. I am working on the technical server part of the web. I am a network technician, however, I do not have a ton of experience with IIS SMTP issues.
The asp test code that we are trying to run on the server is as follows:
<%
on error resume next
Dim objEmail
set objEmail = server.CreateObject("CDONTS.NewMail")
with objEmail
'.To = "test1@test1.com;test2@test2.com;test3@test3.com"
.To = "test4@test4.net"
.From = "test2@test2.com"
.Importance = 1
.Subject = "Customer Web Site Order"
'.Body = '<HTML><BODY>Name: ' & Request('Name') & '<BR> Stripe 2 Color:' & Request('s2Color') & '<br><br></body></html>'
.Body = strHTML
.BodyFormat = 0
.MailFormat = 0
.Send
end with
set objEmail = nothing
if err.number <> 0 then
response.write (err.number & ": " & err.description)
end if
%>
When trying to open this page via the web, we get the following error:
Server Application Error
The server has encountered an error while loading an application during the processing of your request. Please refer to the event log for more detail information. Please contact the server administrator for assistance.
On the server is the following warning recorded in the event log:
Type: Warning
Source W3SVC
Category: None
Event ID: 36
Description: The server failed to load application". The error was 'The specified metadata was not found.'
Also, and I don't know if this is related, on the IIS server, if I try to do a Check Server Extensions or something related to server extensions, I get the following error:
Microsoft Server Extensions:
The server administration programs and the server extensions on the web server are not compatible. The administration program is too old to use with this server.
Originally we had 2000 extensions, and I think we might have upgraded them to 2002 extensions.
It seems that we have two different issues, and I believe that the SMTP problem is what is stopping the asp page from sending the email.
Any help would be kindly awarded with a star...
We have been working on this problem for three days. We have used the following tools: telnet, portqry, and smtpdiag. SMTPDIAG and PORTQRY find that port 25 on the server is listening and DNS is OK. However, when I try to telnet in to the server, I don't get a 220 message. I don't get any message. The command prompt screen goes blank for a few minutes and then returns to the command prompt.
We have Tiny Personal Firewall version 5 running and all modules are currently disabled while we are trying to figure this out.
I do not have a background in .asp. Our customer's web developer is who is working on the .asp part of the web. I am working on the technical server part of the web. I am a network technician, however, I do not have a ton of experience with IIS SMTP issues.
The asp test code that we are trying to run on the server is as follows:
<%
on error resume next
Dim objEmail
set objEmail = server.CreateObject("CDONTS.NewMail")
with objEmail
'.To = "test1@test1.com;test2@test2.com;test3@test3.com"
.To = "test4@test4.net"
.From = "test2@test2.com"
.Importance = 1
.Subject = "Customer Web Site Order"
'.Body = '<HTML><BODY>Name: ' & Request('Name') & '<BR> Stripe 2 Color:' & Request('s2Color') & '<br><br></body></html>'
.Body = strHTML
.BodyFormat = 0
.MailFormat = 0
.Send
end with
set objEmail = nothing
if err.number <> 0 then
response.write (err.number & ": " & err.description)
end if
%>
When trying to open this page via the web, we get the following error:
Server Application Error
The server has encountered an error while loading an application during the processing of your request. Please refer to the event log for more detail information. Please contact the server administrator for assistance.
On the server is the following warning recorded in the event log:
Type: Warning
Source W3SVC
Category: None
Event ID: 36
Description: The server failed to load application". The error was 'The specified metadata was not found.'
Also, and I don't know if this is related, on the IIS server, if I try to do a Check Server Extensions or something related to server extensions, I get the following error:
Microsoft Server Extensions:
The server administration programs and the server extensions on the web server are not compatible. The administration program is too old to use with this server.
Originally we had 2000 extensions, and I think we might have upgraded them to 2002 extensions.
It seems that we have two different issues, and I believe that the SMTP problem is what is stopping the asp page from sending the email.
Any help would be kindly awarded with a star...