Can i put my java web application into Windows IIS server .Now its working fine under Tomcat 6 server .But i want to put it in IIS server .Is it possible ..If yes pls let me know whats the Procedure ......
IIS is a web server (more or less) and Tomcat is Java application server. You can't serve Java app directly from within IIS. IIS can be used as proxy to Tomcat server but you can't run your Java app without it (or any other equivalent).
I think the only way to do that is to keep your app on Tomcat and use JK ISAPI redirector plugin. Take a look at this page.
精彩评论