T
Tushar
Please help: I found some of the following information in messeges in this
group but I would like someone to confirm them please.
I would like to use the following web-services / ASP.Net code to be used in
an intranet environment:
MailMessage Message = new MailMessage();
Message.To = ...
....
SmtpMail.SmtpServer = ...
SmtpMail.Send(Message);
In order for this code to work on a production machine the following IIS
components will be required (is that correct):
1. WWW Server, etc.
2. SMTP Service
Is the [SMTP Service] required even if there is Exchange-Server running on
another server?
In order to making e-mailing work with a domain-user recognised by the
exchange-server, is it true that I need to edit web.config file in the
following way?
<identity
impersonate="true"
userName="DOMAIN\UserName"
password="Password" />
Does this mean that this ASP.Net will use this identity for all server
accesses including database access? Should I be setting database security
for this application using this identity and not the ASPNET user?
Please help and give more info.
group but I would like someone to confirm them please.
I would like to use the following web-services / ASP.Net code to be used in
an intranet environment:
MailMessage Message = new MailMessage();
Message.To = ...
....
SmtpMail.SmtpServer = ...
SmtpMail.Send(Message);
In order for this code to work on a production machine the following IIS
components will be required (is that correct):
1. WWW Server, etc.
2. SMTP Service
Is the [SMTP Service] required even if there is Exchange-Server running on
another server?
In order to making e-mailing work with a domain-user recognised by the
exchange-server, is it true that I need to edit web.config file in the
following way?
<identity
impersonate="true"
userName="DOMAIN\UserName"
password="Password" />
Does this mean that this ASP.Net will use this identity for all server
accesses including database access? Should I be setting database security
for this application using this identity and not the ASPNET user?
Please help and give more info.