I have tried everything to get this to work. It seems that the in IIS6 Framework 1.1 its the worker process credentials that are being used to access the code on the remote server. How can I change the worker process credential to a least prevelidged account so I an create a mirror account on the box with the code? The Servers are not in a domain. We have 4 web servers and I want the code in only one place. This seemed easier in IIS 5 from what I have been reading. I can find no info on how to do this in IIS 6 but lots of stuff for 1.0 and IIS5. <br><br>Brian
Have you seen this article on impersonization?<br><br><a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;817033" target="_blank">support.microsoft.com/default.aspx?scid=kb;en-us;817033</a><br><br>Or this one on pass thru authentication over UNC?<br><br><a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;332151" target="_blank">support.microsoft.com/default.aspx?scid=kb;en-us;332151</a><br><br>The only drawback is that typically for remote authentiation like this to work, you must be part of a domain that the various servers can match authentication with.<p><hr size="1" width="50%" align="left" />dotNetBB Forum Developer<br><b><i>Building A Better Community, One Post At A Time</i></b><br><a href="http://www.dotnetbb.com" target="_blank">www.dotnetbb.com</a></p><!-- Edit --><p><i>Last Edited : 5/4/2003 3:14:08 PM GMT</i></p>
Was this answer helpful ?
Yes No
Thanks for the link. We are running IIS 6 in Native mode though and the App is running under 1.1. I called MS on this and they think the problem is that the servers are not in a domain. They are going to set this up in there lab and get back with me on Monday. I find it very hard to believe that MS has not tested this simple setup in a workgroup environment. I realy do not want to setup AD just for this in production. <br><br>Brian
Was this answer helpful ?
Yes No
Hi Brian,<br><br>Try this step below. this is what i did at home, i had a RC candidate 2 and a win2k server doing the file serving and was able to get remote content deployed. Let me know how it goes<br><br><br><br>Create these users on both machines (same passwords too of course):<br><br>i_userID<br>SomeOtherID<br>nasserver<br><br>On the web server:<br>* set i_userID in the IIS_WG group<br>* create a process pool of yourDomain.com<br> - set the identity of this process to i_userID<br>* create a site named yourDomain.com<br> - set the anonymous user account to i_userID<br> - set the process pool to the yourDomain.com process created in the previous<br>step<br> - change the path of the IIS site to point to \nasserverYourRemoteShare and set<br>the "connect as..." to use the nasserver<br><br>On the file server:<br>* create a share of the content folder and name it aspfree<br>* Give share level permissions of:<br> - administrators full control<br> - i_userID modify<br> - SomeOtherID modify<br> - nasserver read permission<br>* Give NTFS level permissions of<br> - administrators full control<br> - i_userID modify<br> - SomeOtherID modify<br> - network read
Was this answer helpful ?
Yes No