Hello,
I have seen all replies.You follow the steps given below.You will get the output.
1.shut down tomcat.
2.stop IIS.
3.Edit your server.xml
4.Copy the context given below as it is
<Context path="/test"
docBase="c:\test"
crossContext="false"
debug="0"
reloadable="true" >
</Context>
5.Edit tomcat.policy file in conf dir of tomcat and add following lines as it is ..(copy)
grant codeBase "file:${tomcat.home}/test" {
permission java.net.SocketPermission "localhost:1024-"listen"; permission java.util.PropertyPermission "*", "read";
};
6.Then go to IIS console create virtual dir name as test
7.Edit the properties for this dir in IIS
8.Set proper directory permissions..(if not file not found error)
9.In general tab,click configuration and add file extension as .jsp For excutebale give the path of Isapi_redirect.dll
10.Come out, save the console.
11.Start tomcat...(here u will see /test context is added)
12.Start IIS.
13.Go to browser
http://localhost/test/ and enter it will show default document.
It should work...
Ganesh