-
Posted to
Troubleshooting
by
Iain
on
07-10-2009, 5:41 AM
Thanks, Tom.
I guess that's where we're at.
Where should I look for registry keys? As mentioned in an earlier email the error seems to be raised after it fails to find an Exchange driver. Does this give any clues?
Cheers
-
Posted to
Troubleshooting
by
Iain
on
07-08-2009, 3:40 PM
[quote user="tomkmvp"]it's ASP.NET and your code [/quote]
Hi Tom. I get this when use raw SMTP protocol with telnet to the local IIS server. Which is why I say it's NOT my code (that an the same program works on another machine).
in Command window I
telnet localhost 25
and get the SMTP prompt
then
helo ...
-
Posted to
Troubleshooting
by
Iain
on
07-08-2009, 12:31 PM
Does anyone have any insight into why IIS appears to be searching for Exchange when sending SMTP emails and what I can do to stop it?
-
Posted to
Troubleshooting
by
Iain
on
07-06-2009, 11:02 AM
[quote user="tomkmvp"]What code are you using?[/quote]MailMessage ConfirmationMail = new MailMessage();
ConfirmationMail.To = "iain@SomeWhere.co.uk";ConfirmationMail.From = "Admin@SomewhereElse.com";
ConfirmationMail.Subject = "A Test";ConfirmationMail.BodyFormat = ...
-
Posted to
Troubleshooting
by
Iain
on
07-06-2009, 9:11 AM
[quote user="Paul Lynch"]I'd suggest running Process Monitor to see what is happening [/quote]
Process monitor appears to be telling me that IIS (I'm looking at the inetinfo process) that it wants to talk to exchange, but can't find it
Needless to say I have no exchange servers running, nor have I ...
-
Posted to
Troubleshooting
by
Iain
on
07-06-2009, 8:21 AM
I'm writing some code to send emails via my IIS server on the local machine. (IIS 6.0, Windows Server 2003 R2 x64)
The code is boiler plate stuff and works on other servers. The error occurs processing the send command and is:-
The message could not be sent to the SMTP server. The transport error code was 0x800ccc6c. The server ...