<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>How does JSP work on IIS?</title><link>http://blogs.msdn.com/david.wang/archive/2005/10/11/How-does-JSP-work-on-IIS.aspx</link><description>The following question is often asked - why IIS does not support using JSP directly? Allow me to explain what is really going on here... Question: Does IIS 5.0 support the use of .jsp pages directly or do I need to use a separate server or extensions</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>re: How does JSP work on IIS?</title><link>http://blogs.msdn.com/david.wang/archive/2005/10/11/How-does-JSP-work-on-IIS.aspx#518280</link><pubDate>Fri, 27 Jan 2006 15:53:28 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:518280</guid><dc:creator>sandeep</dc:creator><description>How and where can i get jsp plugin. And how to install it??</description></item><item><title>re: How does JSP work on IIS?</title><link>http://blogs.msdn.com/david.wang/archive/2005/10/11/How-does-JSP-work-on-IIS.aspx#518348</link><pubDate>Fri, 27 Jan 2006 19:39:32 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:518348</guid><dc:creator>David Wang</dc:creator><description>sandeep - There are many JSP plugins available for IIS - Tomcat, JRUN, JBoss, etc.&lt;br&gt;&lt;br&gt;Actual installation and configuration of any of them is beyond the scope of the blog since they are essentially different products with their own support groups. I suggest searching and deciding on a plugin and then locate suitable installation directions to use them. &lt;br&gt;&lt;br&gt;I am only talking abstractly about how these plugins interact and function with IIS to help in understanding and troubleshooting.&lt;br&gt;&lt;br&gt;//David</description></item><item><title>Why IIS6 can send invalid HTTP Responses</title><link>http://blogs.msdn.com/david.wang/archive/2005/10/11/How-does-JSP-work-on-IIS.aspx#540492</link><pubDate>Tue, 28 Feb 2006 14:18:33 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:540492</guid><dc:creator>David Wang</dc:creator><description>Question:&lt;br&gt;Hello All,&lt;br&gt;My client has a IIS 6.0 with some static pages configured in it.&amp;amp;amp;nbsp; My application...</description></item><item><title>re: How does JSP work on IIS?</title><link>http://blogs.msdn.com/david.wang/archive/2005/10/11/How-does-JSP-work-on-IIS.aspx#572195</link><pubDate>Mon, 10 Apr 2006 07:41:51 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:572195</guid><dc:creator>Harry Parmar</dc:creator><description>try resin!</description></item><item><title>re: How does JSP work on IIS?</title><link>http://blogs.msdn.com/david.wang/archive/2005/10/11/How-does-JSP-work-on-IIS.aspx#577842</link><pubDate>Tue, 18 Apr 2006 01:30:50 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:577842</guid><dc:creator>P Shanks</dc:creator><description>A couple of remarks:&lt;br&gt;&lt;br&gt;1) JBoss is not a servlet container per se. &amp;nbsp;It comes bundled with either Tomcat or Jetty to provide that service. &amp;nbsp;I second the motion to look at Resin. &amp;nbsp;So a good partial list of JSP/Servlet container candidates in a Windows/IIS environment includes Tomcat, Resin, Jetty and ServletExec.&lt;br&gt;&lt;br&gt;2) David: Could you suggest a good way to integrate the Windows Integrated Authentication with Tomcat's ISAPI-Redirect? &amp;nbsp;Is there a way to let the Java environment have access to IIS server objects? &amp;nbsp;I would like to have IIS take care of authentication while letting the servlet container handle my Java code.</description></item><item><title>re: How does JSP work on IIS?</title><link>http://blogs.msdn.com/david.wang/archive/2005/10/11/How-does-JSP-work-on-IIS.aspx#578115</link><pubDate>Tue, 18 Apr 2006 12:11:53 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:578115</guid><dc:creator>David.Wang</dc:creator><description>P Shanks - integration of Java with Windows Authentication completely depends on the implementation of the JSP/Servlet connector. The issue is not a matter of &amp;quot;letting Java have access to IIS server objects&amp;quot;.&lt;br&gt;&lt;br&gt;Most every one of the connector simply steals the request from IIS right from the beginning, before IIS authenticates, and forwards the raw stream to the Servlet Container. This causes two problems:&lt;br&gt;1. The connector is now considered a Man-in-the-middle attack against the Integrated Authentication protocol (NTLM)&lt;br&gt;2. The Container gets all the raw stolen requests so it is now responsible for negotiating Integrated Authentication protocol&lt;br&gt;&lt;br&gt;If the connectors simply allowed authentication to proceed to completion on IIS *before* stealing the request and forwarding to the Servlet Container, you would get the behavior you want -- IIS first authenticates, and then executes the handler to shuttle request to the Servlet container to execute Java code. Of course, the Servlet still won't be running as the IIS-authenticated user -- the only secure way to do that requires delegation and Kerberos.&lt;br&gt;&lt;br&gt;//David</description></item><item><title>re: How does JSP work on IIS?</title><link>http://blogs.msdn.com/david.wang/archive/2005/10/11/How-does-JSP-work-on-IIS.aspx#2705912</link><pubDate>Fri, 18 May 2007 08:06:23 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2705912</guid><dc:creator>Allahbaksh Asadullah</dc:creator><description>&lt;p&gt;I second with the point that any web server made on Java or .Net will be slower. This is because of the layer of abstraction which comes in to picture when these two language come into picture. &lt;/p&gt;
</description></item><item><title>re: How does JSP work on IIS?</title><link>http://blogs.msdn.com/david.wang/archive/2005/10/11/How-does-JSP-work-on-IIS.aspx#2848528</link><pubDate>Thu, 24 May 2007 22:26:30 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2848528</guid><dc:creator>Del</dc:creator><description>&lt;p&gt;I'm interested in the distinction of doing kerberos delegation versus doing authentication on ISS and then forwarding the raw request back.&lt;/p&gt;
&lt;p&gt;Is it considered safe to allow the authentication to occur at the IIS level. &amp;nbsp;In other words the users authenticates to IIS via SPANEGO and then the JSP request is passed to the app server(resin) via the ISAPI filter and processed. &amp;nbsp;The java code would use something like request.getRemoteUser to determine which user is executing. &amp;nbsp;Is there any guarantee that that getRemoteUser is really the same person that authenticated at IIS?&lt;/p&gt;
&lt;p&gt;-Del &lt;/p&gt;
</description></item><item><title>re: How does JSP work on IIS?</title><link>http://blogs.msdn.com/david.wang/archive/2005/10/11/How-does-JSP-work-on-IIS.aspx#3693479</link><pubDate>Wed, 04 Jul 2007 23:15:58 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3693479</guid><dc:creator>Steve</dc:creator><description>&lt;p&gt;Man i do not want to run a another funk ass webserver within my main webserver. After reviewing and doing test devolpment deploys of tomcat within IIS to run java it means you have to move your complete install directory to go in Tomcats which is bull. I shouldnt have to move all my domains which run good mind you off its own application pool. &lt;/p&gt;
&lt;p&gt;If you check all the document it shows you need to make tomcat its own application pool and its own web directories which cuts out that 8 hour install of a solid ISAPI version of php you did the for the default app pool. &lt;/p&gt;
&lt;p&gt;I seriously think there should just be some connector released from Sun Micrsystems that does the java langauge recongiation and call and parsing like php.ini does for php. &lt;/p&gt;
&lt;p&gt;needless to say lots of people use java. but seriously its crap to setup in a good solid custom config. &lt;/p&gt;
&lt;p&gt;having to move all my websites to tomcat for them to pick up all the java langauge was not the goal of my java integration and its trully sucks. &lt;/p&gt;
&lt;p&gt;My domain container is setup to point to another drive with mutliple domains on it. all those custom security settings and stuff took hours to do. &lt;/p&gt;
&lt;p&gt;When people say use tomcat to use the java connector dont be fooled. you will have to change your complete hosting directory for the websites to be &amp;quot;sniffed out&amp;quot; for java. &lt;/p&gt;
&lt;p&gt;I hate it. &lt;/p&gt;
&lt;p&gt;Why cant sun microsystems do something right for a change. hell they went through all the trouble to sue microsoft to get the monopoly lifted off Java and microsoft didnt release it no more. The least they can do is make the appropiate ISAPI connectos for IIS 6.0 and the JVM. &lt;/p&gt;
&lt;p&gt;Sheesh &lt;/p&gt;
&lt;p&gt;Steve &lt;/p&gt;
&lt;p&gt;webmaster@studio505.net &lt;/p&gt;
</description></item><item><title>re: How does JSP work on IIS?</title><link>http://blogs.msdn.com/david.wang/archive/2005/10/11/How-does-JSP-work-on-IIS.aspx#4083698</link><pubDate>Fri, 27 Jul 2007 20:37:47 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4083698</guid><dc:creator>Chaitanya</dc:creator><description>&lt;p&gt;I would agree with Steve on the JaVa Monopoly issue above. Either way... my objective differs.&lt;/p&gt;
&lt;p&gt;I came across this site while attempting to implement JSP functionality on a custom-made free hosting service. I'm afraid of copy-cats, so I won't detail much here. &lt;/p&gt;
&lt;p&gt;This is the gist:&lt;/p&gt;
&lt;p&gt;A custom free hosting service that provides subdomain functionality using a custom DNS server written in VB.NET, SMTP and POP3 via another custom server (VB.NET again), and web services via IIS. I've successfully automated much of IIS through my code - changing ASP.NET versions, adding/removing sites, mysql &amp;amp; mssql databases, etc. &lt;/p&gt;
&lt;p&gt;What I now need, is a good way to implement JSP via a custom ISAPI plugin. And I mean actually do it - not tips like 'use xyz' please.&lt;/p&gt;
&lt;p&gt;Thats about it. Can anyone here assit me with the same?&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Chaitanya Dhareshwar&lt;/p&gt;
&lt;p&gt;CBD Arts&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://www.cbdarts.com"&gt;http://www.cbdarts.com&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>re: How does JSP work on IIS?</title><link>http://blogs.msdn.com/david.wang/archive/2005/10/11/How-does-JSP-work-on-IIS.aspx#4083808</link><pubDate>Fri, 27 Jul 2007 20:48:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4083808</guid><dc:creator>Chaitanya</dc:creator><description>&lt;p&gt;I made a mistake above - mysql &amp;amp; mssql databases are not a part of IIS. Also, I'm currently utilizing an ISAPI for the advertising panel capability (similar to yahoo geocities ad-panel on the right). As of now the panel will not be visible as the plugin is under development. &lt;/p&gt;
&lt;p&gt;Btw - I'm on a tight schedule and quick advice would be HIGHLY appreciated.&lt;/p&gt;
</description></item><item><title>re: How does JSP work on IIS?</title><link>http://blogs.msdn.com/david.wang/archive/2005/10/11/How-does-JSP-work-on-IIS.aspx#4258367</link><pubDate>Mon, 06 Aug 2007 15:57:56 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4258367</guid><dc:creator>David.Wang</dc:creator><description>&lt;p&gt;Chaitanya - I cannot think of any good, fast way to support JSP on IIS. If it already exists, then no one would want to run things like Tomcat on Windows.&lt;/p&gt;
&lt;p&gt;One basically needs to duplicate the work Microsoft did to support ASP.Net on IIS. You can view ASP.Net as a custom ISAPI which exposes .Net Framework onto IIS. Tomcat Connector is just another custom ISAPI which exposes Java onto IIS, but that ISAPI is a bit flaky because it just forwards the request from IIS instead of proper integration with IIS like ASP.Net.&lt;/p&gt;
&lt;p&gt;Someone's going to have to figure out how to integrate Java onto server-side correctly to make your life easy, but Sun's lawsuit pretty much make it impossible for anyone other than Sun to do this task, and they are obviously not interested.&lt;/p&gt;
&lt;p&gt;Clearly, Java is not &amp;quot;write once run anywhere&amp;quot;. It is &amp;quot;Write once, run anywhere that Sun allows you to&amp;quot;.&lt;/p&gt;
&lt;p&gt;//David&lt;/p&gt;
</description></item><item><title>re: How does JSP work on IIS?</title><link>http://blogs.msdn.com/david.wang/archive/2005/10/11/How-does-JSP-work-on-IIS.aspx#6518531</link><pubDate>Sun, 25 Nov 2007 19:32:48 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:6518531</guid><dc:creator>Amorak</dc:creator><description>&lt;p&gt;This is the best-written guide to getting JSP to work on IIS quickly stably that I've seen in a long while:&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://neosmart.net/blog/2006/configuring-jsp-for-iis/"&gt;http://neosmart.net/blog/2006/configuring-jsp-for-iis/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;It's written by the team at NeoSmart Technologies, who have a long track record of providing quality info on configuring IIS to work with stuff from the Linux world :)&lt;/p&gt;
</description></item><item><title>re: How does JSP work on IIS?</title><link>http://blogs.msdn.com/david.wang/archive/2005/10/11/How-does-JSP-work-on-IIS.aspx#8469300</link><pubDate>Thu, 08 May 2008 09:02:35 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8469300</guid><dc:creator>Mikee SA</dc:creator><description>&lt;p&gt;Hi everyone&lt;/p&gt;
&lt;p&gt;I want to run ASP pages on a server that already has Resin (for jsp pages) runnning, it works on my windows xp macine but for some reason the ASP pages cannot be found on the windows 2003 server machine... if I stop the resin engine, it still doesn't work, if i start Resin &amp;amp; IIS, it still does not display ASP pages. the error I get when the ASP pages cannot be found has a error at the botom of the page that states the name Resin #.#.#...EVEN when i stop resin.&lt;/p&gt;
&lt;p&gt;Please can anyone give me some advice.&lt;/p&gt;
&lt;p&gt;Mike&lt;/p&gt;
</description></item><item><title>re: How does JSP work on IIS?</title><link>http://blogs.msdn.com/david.wang/archive/2005/10/11/How-does-JSP-work-on-IIS.aspx#8476000</link><pubDate>Fri, 09 May 2008 03:43:52 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8476000</guid><dc:creator>David.Wang</dc:creator><description>&lt;p&gt;Mikee SA - &amp;nbsp;It seems like Resin just tries to process all pages as JSP, and since it does not understand ASP, it simply returns &amp;quot;cannot be found&amp;quot;.&lt;/p&gt;
&lt;p&gt;This sounds like a problem with Resin since it is preventing ASP from working. I would contact Resin's support personel on how to fix Resin so that it cooperates and interoperates with other software. It is Open Source, it's supposed to do that, right?&lt;/p&gt;
&lt;p&gt;//David&lt;/p&gt;
</description></item><item><title>re: How does JSP work on IIS?</title><link>http://blogs.msdn.com/david.wang/archive/2005/10/11/How-does-JSP-work-on-IIS.aspx#9297231</link><pubDate>Thu, 08 Jan 2009 15:57:23 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9297231</guid><dc:creator>viralpatel.net</dc:creator><description>&lt;p&gt;Hi David,&lt;/p&gt;
&lt;p&gt;Nice article on JSP with IIS.&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://viralpatel.net/blogs/2009/01/tutorial-java-servlet-filter-example-using-eclipse-apache-tomcat.html"&gt;http://viralpatel.net/blogs/2009/01/tutorial-java-servlet-filter-example-using-eclipse-apache-tomcat.html&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>re: How does JSP work on IIS?</title><link>http://blogs.msdn.com/david.wang/archive/2005/10/11/How-does-JSP-work-on-IIS.aspx#9883497</link><pubDate>Tue, 25 Aug 2009 13:30:44 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9883497</guid><dc:creator>Shakti Kumar</dc:creator><description>&lt;p&gt;Very nice and useful contains for new user&lt;/p&gt;
</description></item><item><title>re: How does JSP work on IIS?</title><link>http://blogs.msdn.com/david.wang/archive/2005/10/11/How-does-JSP-work-on-IIS.aspx#9890281</link><pubDate>Wed, 02 Sep 2009 11:17:44 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9890281</guid><dc:creator>Shafiq</dc:creator><description>&lt;p&gt;Good article,that clears the basic concept of beginners.&lt;/p&gt;
&lt;p&gt;well done&lt;/p&gt;
</description></item></channel></rss>