<?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 for freestyle developments</title>
	<atom:link href="http://www.freestyle-developments.co.uk/blog/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://www.freestyle-developments.co.uk/blog</link>
	<description>Fun, games and coding</description>
	<lastBuildDate>Fri, 24 Feb 2012 15:05:08 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on How to switch to/from HTTPS using Apache as a proxy to Tomcat by Cat Mucius</title>
		<link>http://www.freestyle-developments.co.uk/blog/?p=339&#038;cpage=1#comment-2980</link>
		<dc:creator>Cat Mucius</dc:creator>
		<pubDate>Fri, 24 Feb 2012 15:05:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.freestyle-developments.co.uk/blog/?p=339#comment-2980</guid>
		<description>Just experienced the very same problem - the Apache reverse proxy (v2.2.3) received 301 Redirect message from the application server with http://internal.local/... URL in the Location field, but replaced it with http://external.com/... instead of https://external.com/... which I wanted.

At last, the solution was extremely simple: you should just define _explicitly_ that your  is using SSL:


        ServerName external.com
        ProxyPass / http://internal.local/
        ProxyPassReverse / http://internal.local/
        
                AuthType Basic
                # authentication details here...
                Require valid-user
        
        &lt;b&gt;SSLEngine on&lt;/b&gt;
        &lt;b&gt;SSLCertificateFile /path/to/public/cert&lt;/b&gt;
        &lt;b&gt;SSLCertificateKeyFile /path/to/private/key&lt;/b&gt;


&lt;b&gt;SSLCertificateFile&lt;/b&gt; and &lt;b&gt;SSLCertificateKeyFile&lt;/b&gt; have to be defined- if &lt;b&gt;SSLEngine&lt;/b&gt; is added without them, the httpd process fails.

Right after this ProxyPassReverse  starts prepending https:// to the redirection URLs like a charm.</description>
		<content:encoded><![CDATA[<p>Just experienced the very same problem &#8211; the Apache reverse proxy (v2.2.3) received 301 Redirect message from the application server with <a href="http://internal.local/.." rel="nofollow">http://internal.local/..</a>. URL in the Location field, but replaced it with <a href="http://external.com/.." rel="nofollow">http://external.com/..</a>. instead of <a href="https://external.com/.." rel="nofollow">https://external.com/..</a>. which I wanted.</p>
<p>At last, the solution was extremely simple: you should just define _explicitly_ that your  is using SSL:</p>
<p>        ServerName external.com<br />
        ProxyPass / <a href="http://internal.local/" rel="nofollow">http://internal.local/</a><br />
        ProxyPassReverse / <a href="http://internal.local/" rel="nofollow">http://internal.local/</a></p>
<p>                AuthType Basic<br />
                # authentication details here&#8230;<br />
                Require valid-user</p>
<p>        <b>SSLEngine on</b><br />
        <b>SSLCertificateFile /path/to/public/cert</b><br />
        <b>SSLCertificateKeyFile /path/to/private/key</b></p>
<p><b>SSLCertificateFile</b> and <b>SSLCertificateKeyFile</b> have to be defined- if <b>SSLEngine</b> is added without them, the httpd process fails.</p>
<p>Right after this ProxyPassReverse  starts prepending https:// to the redirection URLs like a charm.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iframe automatic height adjustment using HTML5 cross domain web messaging by Oliver</title>
		<link>http://www.freestyle-developments.co.uk/blog/?p=150&#038;cpage=1#comment-2967</link>
		<dc:creator>Oliver</dc:creator>
		<pubDate>Tue, 14 Feb 2012 17:39:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.freestyle-developments.co.uk/blog/?p=150#comment-2967</guid>
		<description>Dear Alan, now it works in Safari and Firefox (cool!), when i click on Apple ][ Links the page increases correctly, but when i go back to a page with less height (Back to index) it does not reduces the height, there is a big unused area below the content. Is there a way to resize the page to smaler content ?</description>
		<content:encoded><![CDATA[<p>Dear Alan, now it works in Safari and Firefox (cool!), when i click on Apple ][ Links the page increases correctly, but when i go back to a page with less height (Back to index) it does not reduces the height, there is a big unused area below the content. Is there a way to resize the page to smaler content ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iframe automatic height adjustment using HTML5 cross domain web messaging by Oliver</title>
		<link>http://www.freestyle-developments.co.uk/blog/?p=150&#038;cpage=1#comment-2966</link>
		<dc:creator>Oliver</dc:creator>
		<pubDate>Tue, 14 Feb 2012 17:04:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.freestyle-developments.co.uk/blog/?p=150#comment-2966</guid>
		<description>Dear Alan, thank you for your fast response!

i have added now the &quot;function sendScrollHeight() {...&quot; code and the  code to the page that should be loaded in the iframe. 

All ULRs point now to my domain but it seems there is still an error in my code because it still displays no message. Could you please have a look?</description>
		<content:encoded><![CDATA[<p>Dear Alan, thank you for your fast response!</p>
<p>i have added now the &#8220;function sendScrollHeight() {&#8230;&#8221; code and the  code to the page that should be loaded in the iframe. </p>
<p>All ULRs point now to my domain but it seems there is still an error in my code because it still displays no message. Could you please have a look?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iframe automatic height adjustment using HTML5 cross domain web messaging by Alan</title>
		<link>http://www.freestyle-developments.co.uk/blog/?p=150&#038;cpage=1#comment-2963</link>
		<dc:creator>Alan</dc:creator>
		<pubDate>Tue, 14 Feb 2012 07:57:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.freestyle-developments.co.uk/blog/?p=150#comment-2963</guid>
		<description>@Oliver - In your first comment your iframe is using the html file hosted on my domain, whose call to the parent.postMessage function explicitly states that it can only post messages to the domain www.freestyle-developments.co.uk.

In your second comment I can&#039;t see the JavaScript in your iframe that posts a message to the parent. i.e. using parent.postMessage</description>
		<content:encoded><![CDATA[<p>@Oliver &#8211; In your first comment your iframe is using the html file hosted on my domain, whose call to the parent.postMessage function explicitly states that it can only post messages to the domain <a href="http://www.freestyle-developments.co.uk" rel="nofollow">http://www.freestyle-developments.co.uk</a>.</p>
<p>In your second comment I can&#8217;t see the JavaScript in your iframe that posts a message to the parent. i.e. using parent.postMessage</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iframe automatic height adjustment using HTML5 cross domain web messaging by Oliver</title>
		<link>http://www.freestyle-developments.co.uk/blog/?p=150&#038;cpage=1#comment-2959</link>
		<dc:creator>Oliver</dc:creator>
		<pubDate>Tue, 14 Feb 2012 00:27:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.freestyle-developments.co.uk/blog/?p=150#comment-2959</guid>
		<description>Here a link to a page where i added my page to your code, sadly it does not work:

http://myoldmac.net/MacFinder_share/iframecode3test_v2.html</description>
		<content:encoded><![CDATA[<p>Here a link to a page where i added my page to your code, sadly it does not work:</p>
<p><a href="http://myoldmac.net/MacFinder_share/iframecode3test_v2.html" rel="nofollow">http://myoldmac.net/MacFinder_share/iframecode3test_v2.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iframe automatic height adjustment using HTML5 cross domain web messaging by Oliver</title>
		<link>http://www.freestyle-developments.co.uk/blog/?p=150&#038;cpage=1#comment-2958</link>
		<dc:creator>Oliver</dc:creator>
		<pubDate>Tue, 14 Feb 2012 00:26:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.freestyle-developments.co.uk/blog/?p=150#comment-2958</guid>
		<description>Hi i tried to use your code, saved your page as a test my server

http://myoldmac.net/MacFinder_share/iframecode3test.html

i have not changed any code - now it does not display the message and does not resize. How do i get it to run ?

I tried to include my page within the iframe but it does not resize.

Because on your page it works, what do i wrong ?

I try to get a code to implement this page on other pages:

http://myoldmac.net/MacFinder_share/

Thre problem is that it includes linklists with different heights and i need dynamic resizing. Thank you for any help!</description>
		<content:encoded><![CDATA[<p>Hi i tried to use your code, saved your page as a test my server</p>
<p><a href="http://myoldmac.net/MacFinder_share/iframecode3test.html" rel="nofollow">http://myoldmac.net/MacFinder_share/iframecode3test.html</a></p>
<p>i have not changed any code &#8211; now it does not display the message and does not resize. How do i get it to run ?</p>
<p>I tried to include my page within the iframe but it does not resize.</p>
<p>Because on your page it works, what do i wrong ?</p>
<p>I try to get a code to implement this page on other pages:</p>
<p><a href="http://myoldmac.net/MacFinder_share/" rel="nofollow">http://myoldmac.net/MacFinder_share/</a></p>
<p>Thre problem is that it includes linklists with different heights and i need dynamic resizing. Thank you for any help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iframe automatic height adjustment using HTML5 cross domain web messaging by webexstudios</title>
		<link>http://www.freestyle-developments.co.uk/blog/?p=150&#038;cpage=1#comment-2957</link>
		<dc:creator>webexstudios</dc:creator>
		<pubDate>Mon, 13 Feb 2012 11:12:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.freestyle-developments.co.uk/blog/?p=150#comment-2957</guid>
		<description>not working...</description>
		<content:encoded><![CDATA[<p>not working&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML5 &lt;article&gt; for WordPress comments by Van Wilson</title>
		<link>http://www.freestyle-developments.co.uk/blog/?p=113&#038;cpage=1#comment-2931</link>
		<dc:creator>Van Wilson</dc:creator>
		<pubDate>Thu, 09 Feb 2012 03:34:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.freestyle-developments.co.uk/blog/?p=113#comment-2931</guid>
		<description>Thank you so much. This is just what I needed for my company&#039;s site re-design.</description>
		<content:encoded><![CDATA[<p>Thank you so much. This is just what I needed for my company&#8217;s site re-design.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I want my Snow Leopard functionality back! by oasefnalkwf§</title>
		<link>http://www.freestyle-developments.co.uk/blog/?p=299&#038;cpage=1#comment-2926</link>
		<dc:creator>oasefnalkwf§</dc:creator>
		<pubDate>Wed, 08 Feb 2012 15:29:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.freestyle-developments.co.uk/blog/?p=299#comment-2926</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
	</item>
	<item>
		<title>Comment on I want my Snow Leopard functionality back! by oasefnalkwf§</title>
		<link>http://www.freestyle-developments.co.uk/blog/?p=299&#038;cpage=1#comment-2925</link>
		<dc:creator>oasefnalkwf§</dc:creator>
		<pubDate>Wed, 08 Feb 2012 15:27:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.freestyle-developments.co.uk/blog/?p=299#comment-2925</guid>
		<description>alert(&#039;Lol, validation fail!&#039;);</description>
		<content:encoded><![CDATA[<p>alert(&#8216;Lol, validation fail!&#8217;);</p>
]]></content:encoded>
	</item>
</channel>
</rss>

