I want to host an application on IIS with both windows and anonymous modes. I know it is not possible to run website with both modes on as when I enable anonymous mode, window authentication do not work. What are other alternates by which I can run application in both modes with preference to windows.
P.S I can run two websites but their physical path should be same. Also the original website has binding to server default address, any virtual directory converted to default application by default ask for window authentication. e.g.
172.16.128.190;www.xYZ.com binds to path E:/applications/XYZ
172.16.128.190/MS in default application is mapped to E:applications/MS
Now if I disable window authentication on later application it by default picks authentication from first application (inheritance)
In other scenario I can make another site but same physical path
172.16.128.190;www.xYZ.com binds to path E:/applications/XYZ (Window)
www.xYZipad.com binds to path E:/applications/XYZ (Anonymous)
Please provide possible solutions.