Hi TPS,
Since your servers are not in a domain, you have to use local accounts.
If you disabled "Allow Anonymous", this workaround can work:
1. Create an identical local account on both machine, with the same
username and password.
2. You can impersonation this local account for all the requests of an
ASP.NET application. To do this, add the following line in the web.config
of the web appliation:
<identity impersonate="true" userName="accountname" password="password" />
For more informaiton, please check:
306158 INFO: Implementing Impersonation in an ASP.NET Application
http://support.microsoft.com/?id=306158
If you need to allow Anonymous access to the virtual directory, try this
method:
1. Create an identical local account on both machine, with the same
username and password.
2. Disable "Allow IIS to control password" option in the Authentication
Method dialog box of the ASP.NET web application.
3. Replace the default user name "IUSR_MachineName" with the local account
your created
Regards,
Felix Wu
=============
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------