<?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: Poor Man&#039;s HTTP Compression with ColdFusion</title>
	<atom:link href="http://www.simonwhatley.co.uk/poor-mans-http-compression-with-coldfusion/feed" rel="self" type="application/rss+xml" />
	<link>http://www.simonwhatley.co.uk/poor-mans-http-compression-with-coldfusion</link>
	<description>The opposite of every great idea is another great idea</description>
	<lastBuildDate>Tue, 24 Jan 2012 10:54:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: I4</title>
		<link>http://www.simonwhatley.co.uk/poor-mans-http-compression-with-coldfusion/comment-page-1#comment-608</link>
		<dc:creator>I4</dc:creator>
		<pubDate>Sat, 15 Jan 2011 01:55:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.simonwhatley.co.uk/?p=260#comment-608</guid>
		<description>Did you find a work around for this? I seem to have the same issue.</description>
		<content:encoded><![CDATA[<p>Did you find a work around for this? I seem to have the same issue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim Cook</title>
		<link>http://www.simonwhatley.co.uk/poor-mans-http-compression-with-coldfusion/comment-page-1#comment-543</link>
		<dc:creator>Jim Cook</dc:creator>
		<pubDate>Wed, 04 Aug 2010 00:18:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.simonwhatley.co.uk/?p=260#comment-543</guid>
		<description>Just found this, gave it a try on CF8.01/Win2003. All CFLOCATIONS failed to work, had to uninstall it. Bummer, &#039;cause it worked very well otherwise.</description>
		<content:encoded><![CDATA[<p>Just found this, gave it a try on CF8.01/Win2003. All CFLOCATIONS failed to work, had to uninstall it. Bummer, &#39;cause it worked very well otherwise.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Emma</title>
		<link>http://www.simonwhatley.co.uk/poor-mans-http-compression-with-coldfusion/comment-page-1#comment-22</link>
		<dc:creator>Emma</dc:creator>
		<pubDate>Wed, 11 Nov 2009 07:28:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.simonwhatley.co.uk/?p=260#comment-22</guid>
		<description>I have the same error ... Either the Macromedia application server(s) are unreachable or none of them has a mapping to process this request.

but have no idea what all the above information means... can someone tell me in layman&#039;s terms how to rectify the problem ?  Please email</description>
		<content:encoded><![CDATA[<p>I have the same error &#8230; Either the Macromedia application server(s) are unreachable or none of them has a mapping to process this request.</p>
<p>but have no idea what all the above information means&#8230; can someone tell me in layman&#8217;s terms how to rectify the problem ?  Please email</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cheve</title>
		<link>http://www.simonwhatley.co.uk/poor-mans-http-compression-with-coldfusion/comment-page-1#comment-21</link>
		<dc:creator>Cheve</dc:creator>
		<pubDate>Thu, 04 Jun 2009 21:37:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.simonwhatley.co.uk/?p=260#comment-21</guid>
		<description>The code for the mapping got mangled when submiting, this is how it looks changing the brackets:

&lt;pre lang=&quot;text&quot;&gt;
&lt;servlet-mapping id=&quot;coldfusion_mapping_6&quot;&gt;
  &lt;servlet-name&gt;CfmServlet&lt;/servlet-name&gt;
  &lt;url-pattern&gt;*.cfz&gt;/url-pattern&gt;
&lt;/servlet-mapping&gt;
&lt;pre&gt;

Regards</description>
		<content:encoded><![CDATA[<p>The code for the mapping got mangled when submiting, this is how it looks changing the brackets:</p>
<pre lang="text">
<servlet -mapping id="coldfusion_mapping_6">
  </servlet><servlet -name>CfmServlet</servlet>
  <url -pattern>*.cfz>/url-pattern>
<pre>

Regards</pre>
<p></url></pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cheve</title>
		<link>http://www.simonwhatley.co.uk/poor-mans-http-compression-with-coldfusion/comment-page-1#comment-20</link>
		<dc:creator>Cheve</dc:creator>
		<pubDate>Thu, 04 Jun 2009 21:32:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.simonwhatley.co.uk/?p=260#comment-20</guid>
		<description>Ok, so anyone having the same problem can fix it:

My problem was that I was trying to configure the filter to work NOT with the normal CFM extension but with a new CFZ extension, so I can decide which files are compressed and which ones don&#039;t, so if you want to implement this filter you have to add the CFZ extension to the IIS app extensions AND in web.xml in coldfusion you also have to add a new servlet-mapping:

CfmServlet
 *.cfz

Be sure to use the NEXT mapping number in the ID when adding the new one (id=&quot;coldfusion_mapping_XX&quot;)

Regards</description>
		<content:encoded><![CDATA[<p>Ok, so anyone having the same problem can fix it:</p>
<p>My problem was that I was trying to configure the filter to work NOT with the normal CFM extension but with a new CFZ extension, so I can decide which files are compressed and which ones don&#8217;t, so if you want to implement this filter you have to add the CFZ extension to the IIS app extensions AND in web.xml in coldfusion you also have to add a new servlet-mapping:</p>
<p>CfmServlet<br />
 *.cfz</p>
<p>Be sure to use the NEXT mapping number in the ID when adding the new one (id=&#8221;coldfusion_mapping_XX&#8221;)</p>
<p>Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cheve</title>
		<link>http://www.simonwhatley.co.uk/poor-mans-http-compression-with-coldfusion/comment-page-1#comment-19</link>
		<dc:creator>Cheve</dc:creator>
		<pubDate>Wed, 03 Jun 2009 16:26:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.simonwhatley.co.uk/?p=260#comment-19</guid>
		<description>I am trying to implement this filter in coldfusion8, I had it working in CF7, but when copying the jar file to LIB, and the above code to web.xml all I get is:
HTTP/1.1 503 Server Error
A server error occurred
Server Error
Either the Macromedia application server(s) are unreachable or none of them has a mapping to process this request.

Any idea what am I doing wrong?
I googled for an answer but there&#039;s nothing about CF8 and this filter especifically so I asume it should work with no problems, but I cannot get it to work!

Regards</description>
		<content:encoded><![CDATA[<p>I am trying to implement this filter in coldfusion8, I had it working in CF7, but when copying the jar file to LIB, and the above code to web.xml all I get is:<br />
HTTP/1.1 503 Server Error<br />
A server error occurred<br />
Server Error<br />
Either the Macromedia application server(s) are unreachable or none of them has a mapping to process this request.</p>
<p>Any idea what am I doing wrong?<br />
I googled for an answer but there&#8217;s nothing about CF8 and this filter especifically so I asume it should work with no problems, but I cannot get it to work!</p>
<p>Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeff</title>
		<link>http://www.simonwhatley.co.uk/poor-mans-http-compression-with-coldfusion/comment-page-1#comment-18</link>
		<dc:creator>jeff</dc:creator>
		<pubDate>Thu, 31 Jan 2008 22:46:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.simonwhatley.co.uk/?p=260#comment-18</guid>
		<description>Nice article

Will this servlet work on the 64 bit version of CF8? I guess I am asking whether servelets need to be compiled as 64 bit</description>
		<content:encoded><![CDATA[<p>Nice article</p>
<p>Will this servlet work on the 64 bit version of CF8? I guess I am asking whether servelets need to be compiled as 64 bit</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon</title>
		<link>http://www.simonwhatley.co.uk/poor-mans-http-compression-with-coldfusion/comment-page-1#comment-17</link>
		<dc:creator>Simon</dc:creator>
		<pubDate>Tue, 11 Sep 2007 10:33:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.simonwhatley.co.uk/?p=260#comment-17</guid>
		<description>The CMS seems to mal-form the code, so I&#039;ve added a screenshot.</description>
		<content:encoded><![CDATA[<p>The CMS seems to mal-form the code, so I&#8217;ve added a screenshot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: steven</title>
		<link>http://www.simonwhatley.co.uk/poor-mans-http-compression-with-coldfusion/comment-page-1#comment-16</link>
		<dc:creator>steven</dc:creator>
		<pubDate>Fri, 07 Sep 2007 18:39:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.simonwhatley.co.uk/?p=260#comment-16</guid>
		<description>your web.xml example looks wrong - shouldn&#039;t &quot;GzipFilter be between the &quot;filter-name&quot; tags, and *.cfm be between the &quot;url-pattern&quot; tags, instead of being after.</description>
		<content:encoded><![CDATA[<p>your web.xml example looks wrong &#8211; shouldn&#8217;t &#8220;GzipFilter be between the &#8220;filter-name&#8221; tags, and *.cfm be between the &#8220;url-pattern&#8221; tags, instead of being after.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sami Hoda</title>
		<link>http://www.simonwhatley.co.uk/poor-mans-http-compression-with-coldfusion/comment-page-1#comment-15</link>
		<dc:creator>Sami Hoda</dc:creator>
		<pubDate>Thu, 29 Mar 2007 18:16:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.simonwhatley.co.uk/?p=260#comment-15</guid>
		<description>Glad you liked it!</description>
		<content:encoded><![CDATA[<p>Glad you liked it!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

