<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Embedding Jetty</title>
	<atom:link href="http://juixe.com/techknow/index.php/2007/04/25/embedding-jetty/feed/" rel="self" type="application/rss+xml" />
	<link>http://juixe.com/techknow/index.php/2007/04/25/embedding-jetty/</link>
	<description>Break Coders Block!</description>
	<lastBuildDate>Thu, 10 May 2012 17:02:53 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: isometric</title>
		<link>http://juixe.com/techknow/index.php/2007/04/25/embedding-jetty/comment-page-1/#comment-40998</link>
		<dc:creator>isometric</dc:creator>
		<pubDate>Wed, 13 Apr 2011 22:56:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.juixe.com/techknow/index.php/2007/04/25/embedding-jetty/#comment-40998</guid>
		<description>Dude, you are a godsend. I was beating my head against the wall for the last 24 hours trying to figure out how to serve my static files (css, js, etc) Resource Handler to the rescue!</description>
		<content:encoded><![CDATA[<p>Dude, you are a godsend. I was beating my head against the wall for the last 24 hours trying to figure out how to serve my static files (css, js, etc) Resource Handler to the rescue!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dan</title>
		<link>http://juixe.com/techknow/index.php/2007/04/25/embedding-jetty/comment-page-1/#comment-372</link>
		<dc:creator>dan</dc:creator>
		<pubDate>Tue, 16 Sep 2008 01:25:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.juixe.com/techknow/index.php/2007/04/25/embedding-jetty/#comment-372</guid>
		<description>This is a great little tutorial.  I am just trying to use jetty for a small simple task and a lot of the other tutorials are little less to the point of my interests.

Thank You!!!!</description>
		<content:encoded><![CDATA[<p>This is a great little tutorial.  I am just trying to use jetty for a small simple task and a lot of the other tutorials are little less to the point of my interests.</p>
<p>Thank You!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charlie Mason</title>
		<link>http://juixe.com/techknow/index.php/2007/04/25/embedding-jetty/comment-page-1/#comment-371</link>
		<dc:creator>Charlie Mason</dc:creator>
		<pubDate>Sun, 22 Jun 2008 11:39:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.juixe.com/techknow/index.php/2007/04/25/embedding-jetty/#comment-371</guid>
		<description>That was a great help, thanks for the post. I had been struggling to get Jetty Launcher to work. Run Jetty Run the new slimed down version of Jetty Launcher doesn&#039;t seem to give you as many config options.

I needed to enable Jetty plus so I could use JINI for database connection pooling. To initialise Jetty plus all you have to do is add the code below after you create the WebAppContext but before you start the server.

webapp.setConfigurationClasses(new String[]{					&quot;org.mortbay.jetty.webapp.WebInfConfiguration&quot;,					&quot;org.mortbay.jetty.plus.webapp.EnvConfiguration&quot;, 					&quot;org.mortbay.jetty.plus.webapp.Configuration&quot;,			&quot;org.mortbay.jetty.webapp.JettyWebXmlConfiguration&quot;,				&quot;org.mortbay.jetty.webapp.TagLibConfiguration&quot;});


Also theres a typo in the last line of your code, theres an r missing from sever. Thanks again.</description>
		<content:encoded><![CDATA[<p>That was a great help, thanks for the post. I had been struggling to get Jetty Launcher to work. Run Jetty Run the new slimed down version of Jetty Launcher doesn&#8217;t seem to give you as many config options.</p>
<p>I needed to enable Jetty plus so I could use JINI for database connection pooling. To initialise Jetty plus all you have to do is add the code below after you create the WebAppContext but before you start the server.</p>
<p>webapp.setConfigurationClasses(new String[]{					&#8220;org.mortbay.jetty.webapp.WebInfConfiguration&#8221;,					&#8220;org.mortbay.jetty.plus.webapp.EnvConfiguration&#8221;, 					&#8220;org.mortbay.jetty.plus.webapp.Configuration&#8221;,			&#8220;org.mortbay.jetty.webapp.JettyWebXmlConfiguration&#8221;,				&#8220;org.mortbay.jetty.webapp.TagLibConfiguration&#8221;});</p>
<p>Also theres a typo in the last line of your code, theres an r missing from sever. Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://juixe.com/techknow/index.php/2007/04/25/embedding-jetty/comment-page-1/#comment-370</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Fri, 19 Oct 2007 11:37:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.juixe.com/techknow/index.php/2007/04/25/embedding-jetty/#comment-370</guid>
		<description>Is it possible to have war on the java classpath and load from the classpath rather than a file location?</description>
		<content:encoded><![CDATA[<p>Is it possible to have war on the java classpath and load from the classpath rather than a file location?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vijay</title>
		<link>http://juixe.com/techknow/index.php/2007/04/25/embedding-jetty/comment-page-1/#comment-369</link>
		<dc:creator>Vijay</dc:creator>
		<pubDate>Wed, 02 May 2007 21:17:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.juixe.com/techknow/index.php/2007/04/25/embedding-jetty/#comment-369</guid>
		<description>Good simple explanation. It will be great to see some more examples of jetty usage. I have seen some with luntbuild launching jetty and tapestry 5 using jetty to launch selenium server.

Vijay</description>
		<content:encoded><![CDATA[<p>Good simple explanation. It will be great to see some more examples of jetty usage. I have seen some with luntbuild launching jetty and tapestry 5 using jetty to launch selenium server.</p>
<p>Vijay</p>
]]></content:encoded>
	</item>
</channel>
</rss>

