<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Blog.feryn.eu</title>
	<atom:link href="http://blog.feryn.eu/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.feryn.eu</link>
	<description>Thijs Feryn's blog</description>
	<lastBuildDate>Wed, 25 May 2011 22:37:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Making .NET compatible  PHP SOAP services with Zend Framework</title>
		<link>http://blog.feryn.eu/2011/05/making-net-compatible-php-soap-services-with-zend-framework/</link>
		<comments>http://blog.feryn.eu/2011/05/making-net-compatible-php-soap-services-with-zend-framework/#comments</comments>
		<pubDate>Wed, 25 May 2011 22:37:33 +0000</pubDate>
		<dc:creator>Thijs</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[autodiscover]]></category>
		<category><![CDATA[binding]]></category>
		<category><![CDATA[compliance]]></category>
		<category><![CDATA[document]]></category>
		<category><![CDATA[dotnet]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[rpc]]></category>
		<category><![CDATA[service layer]]></category>
		<category><![CDATA[soap]]></category>
		<category><![CDATA[webservice]]></category>
		<category><![CDATA[wsdl]]></category>
		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://blog.feryn.eu/?p=1123</guid>
		<description><![CDATA[
The default binding style for SOAP webservices in PHP is RPC. When you consume such a webservice using the PHP SoapClient it will work perfectly. Unfortunately Microsoft .NET prefers a different kind of SOAP service. The binding style it works with is document. When you work with complex types and arrays and maybe even arrays [...]
]]></description>
		<wfw:commentRss>http://blog.feryn.eu/2011/05/making-net-compatible-php-soap-services-with-zend-framework/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Speaking at DPC11</title>
		<link>http://blog.feryn.eu/2011/02/speaking-at-dpc11/</link>
		<comments>http://blog.feryn.eu/2011/02/speaking-at-dpc11/#comments</comments>
		<pubDate>Sun, 20 Feb 2011 10:53:02 +0000</pubDate>
		<dc:creator>Thijs</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[amsterdam]]></category>
		<category><![CDATA[cluster]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[devliegher]]></category>
		<category><![CDATA[dpc]]></category>
		<category><![CDATA[dpc11]]></category>
		<category><![CDATA[dpcon]]></category>
		<category><![CDATA[dutch]]></category>
		<category><![CDATA[felix]]></category>
		<category><![CDATA[felixdv]]></category>
		<category><![CDATA[harrie]]></category>
		<category><![CDATA[memcached]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[mysqlproxy]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[verveer]]></category>

		<guid isPermaLink="false">http://blog.feryn.eu/?p=1086</guid>
		<description><![CDATA[
The title says it all: I&#8217;ll be speaking at DPC11. For those of you who don&#8217;t know what this means: it&#8217;s the 2011 edition of the Dutch PHP Conference. DPC11 is the leading European PHP conference and attracks a big crowd and an awesome speaker lineup. Last year I spoke at the event as well [...]
]]></description>
		<wfw:commentRss>http://blog.feryn.eu/2011/02/speaking-at-dpc11/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dispatching HTTP requests manually in Zend Framework</title>
		<link>http://blog.feryn.eu/2011/02/dispatching-http-requests-manually-in-zend-framework/</link>
		<comments>http://blog.feryn.eu/2011/02/dispatching-http-requests-manually-in-zend-framework/#comments</comments>
		<pubDate>Sun, 20 Feb 2011 10:28:20 +0000</pubDate>
		<dc:creator>Thijs</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[dispatcher]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[front controller]]></category>
		<category><![CDATA[HTTP]]></category>
		<category><![CDATA[mvc]]></category>
		<category><![CDATA[request]]></category>
		<category><![CDATA[response]]></category>
		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://blog.feryn.eu/?p=1082</guid>
		<description><![CDATA[
I recently developed a custom Zend Framework view helper and I needed to find a way to get pieces of rendered HTML out of an action controller. You could to this in a simple way by performing a full HTTP call via cURL. That&#8217;s not the best way to get it done, so I started [...]
]]></description>
		<wfw:commentRss>http://blog.feryn.eu/2011/02/dispatching-http-requests-manually-in-zend-framework/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My custom Zend Framework ESI view helper</title>
		<link>http://blog.feryn.eu/2011/02/my-custom-zend-framework-esi-view-helper/</link>
		<comments>http://blog.feryn.eu/2011/02/my-custom-zend-framework-esi-view-helper/#comments</comments>
		<pubDate>Sat, 19 Feb 2011 19:20:16 +0000</pubDate>
		<dc:creator>Thijs</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Varnish]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[action]]></category>
		<category><![CDATA[caching]]></category>
		<category><![CDATA[controller]]></category>
		<category><![CDATA[dispatch]]></category>
		<category><![CDATA[esi]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[helper]]></category>
		<category><![CDATA[mvc]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[ttl]]></category>
		<category><![CDATA[varnish]]></category>
		<category><![CDATA[view]]></category>
		<category><![CDATA[view helper]]></category>
		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://blog.feryn.eu/?p=1052</guid>
		<description><![CDATA[
I&#8217;ve been a fan of Zend Framework for some time now and I&#8217;ve recently become quite a fan of Varnish. As you all know, Varnish is an extremely powerful reverse caching proxy (although the Varnish people prefer the term HTTP accelerator). Varnish supports a subset of the ESI language and I&#8217;ve written a custom Zend [...]
]]></description>
		<wfw:commentRss>http://blog.feryn.eu/2011/02/my-custom-zend-framework-esi-view-helper/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Microsoft Webcafe 2 in retrospect</title>
		<link>http://blog.feryn.eu/2011/02/microsoft-webcafe-2-in-retrospect/</link>
		<comments>http://blog.feryn.eu/2011/02/microsoft-webcafe-2-in-retrospect/#comments</comments>
		<pubDate>Fri, 18 Feb 2011 16:39:30 +0000</pubDate>
		<dc:creator>Thijs</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[betrains]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[combell]]></category>
		<category><![CDATA[irail]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[mijntvgids]]></category>
		<category><![CDATA[mvc]]></category>
		<category><![CDATA[scalability]]></category>
		<category><![CDATA[webcafe]]></category>
		<category><![CDATA[webmatrix]]></category>

		<guid isPermaLink="false">http://blog.feryn.eu/?p=1035</guid>
		<description><![CDATA[
Yesterday Microsoft hosted the second edition of Microsoft Webcafe. The event was held at Combell and we made our conference room available as well as our bar. The event aims to gather developers in an informal way. The webcafe concept is quite simple: a couple of short talks with a 10 minute timeslot each followed [...]
]]></description>
		<wfw:commentRss>http://blog.feryn.eu/2011/02/microsoft-webcafe-2-in-retrospect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speaking at ConFoo</title>
		<link>http://blog.feryn.eu/2011/01/speaking-at-confoo/</link>
		<comments>http://blog.feryn.eu/2011/01/speaking-at-confoo/#comments</comments>
		<pubDate>Tue, 04 Jan 2011 19:24:16 +0000</pubDate>
		<dc:creator>Thijs</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Varnish]]></category>
		<category><![CDATA[action]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[canada]]></category>
		<category><![CDATA[CLI]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[confoo]]></category>
		<category><![CDATA[montreal]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[varnish]]></category>

		<guid isPermaLink="false">http://blog.feryn.eu/?p=1004</guid>
		<description><![CDATA[
I&#8217;m very proud to announce that I&#8217;ll speaking at the 2011 edition of ConFoo in Montreal (Canada) in the beginning of March. I&#8217;ve always wanted to visit Canada and I always wanted to attend a conference of that scale. So here we are: not only attending, but speaking. I have 2 sessions lined up: Varnish [...]
]]></description>
		<wfw:commentRss>http://blog.feryn.eu/2011/01/speaking-at-confoo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speaking at PHP UK Conference 2011</title>
		<link>http://blog.feryn.eu/2010/12/speaking-at-php-uk-conference-2011/</link>
		<comments>http://blog.feryn.eu/2010/12/speaking-at-php-uk-conference-2011/#comments</comments>
		<pubDate>Wed, 15 Dec 2010 13:39:52 +0000</pubDate>
		<dc:creator>Thijs</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[business design centre]]></category>
		<category><![CDATA[caching]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[london]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[phpuk11]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[uk]]></category>
		<category><![CDATA[varnish]]></category>

		<guid isPermaLink="false">http://blog.feryn.eu/?p=998</guid>
		<description><![CDATA[
That&#8217;s right folks, I&#8217;m delighted to announce that I&#8217;ll be speaking at the 2011 edition of the PHP UK Conference. The conference takes place in London and is a must on my schedule. This year it will be the third time I&#8217;ll attend and I&#8217;m looking forward to it. My talk is called Varnish In [...]
]]></description>
		<wfw:commentRss>http://blog.feryn.eu/2010/12/speaking-at-php-uk-conference-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speaking at FeWeb10</title>
		<link>http://blog.feryn.eu/2010/12/speaking-at-feweb10/</link>
		<comments>http://blog.feryn.eu/2010/12/speaking-at-feweb10/#comments</comments>
		<pubDate>Wed, 08 Dec 2010 14:36:51 +0000</pubDate>
		<dc:creator>Thijs</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[combell]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[devops]]></category>
		<category><![CDATA[feweb]]></category>
		<category><![CDATA[feweb10]]></category>
		<category><![CDATA[high availability]]></category>
		<category><![CDATA[infrastructure]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[scalability]]></category>
		<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://blog.feryn.eu/?p=986</guid>
		<description><![CDATA[
I&#8217;m proud to announce that I&#8217;ll be speaking at 2010 edition of the FeWeb conference. FeWeb is the Belgian federation for webdesigners &#038; web developers. They host an annual conference with parallel tracks, keynotes and of course the &#8220;state of the union&#8221; by the FeWeb chairman. I&#8217;ll be doing the intro &#038; outro for the [...]
]]></description>
		<wfw:commentRss>http://blog.feryn.eu/2010/12/speaking-at-feweb10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend_Soap_AutoDiscover &amp; eAccelerator causes trouble</title>
		<link>http://blog.feryn.eu/2010/12/zend_soap_autodiscover-eaccelerator-causes-trouble/</link>
		<comments>http://blog.feryn.eu/2010/12/zend_soap_autodiscover-eaccelerator-causes-trouble/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 14:51:20 +0000</pubDate>
		<dc:creator>Thijs</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[autodiscover]]></category>
		<category><![CDATA[byte code]]></category>
		<category><![CDATA[caching]]></category>
		<category><![CDATA[comment]]></category>
		<category><![CDATA[docblock]]></category>
		<category><![CDATA[eAccelerator]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[reflection]]></category>
		<category><![CDATA[soap]]></category>
		<category><![CDATA[webservice]]></category>
		<category><![CDATA[wsdl]]></category>
		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://blog.feryn.eu/?p=969</guid>
		<description><![CDATA[
Last week I used Zend_Soap_AutoDiscover for the first time. It&#8217;s pretty awesome, because your entire WSDL file dynamically generated based on docblock reflection. Unfortunately, it all went wrong when I deployed my code to staging. Apparently the issue was caused by eAccelerator. But first things first: how did I get into trouble, what caused it [...]
]]></description>
		<wfw:commentRss>http://blog.feryn.eu/2010/12/zend_soap_autodiscover-eaccelerator-causes-trouble/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Speaking at Syntra West</title>
		<link>http://blog.feryn.eu/2010/12/speaking-at-syntra-west/</link>
		<comments>http://blog.feryn.eu/2010/12/speaking-at-syntra-west/#comments</comments>
		<pubDate>Thu, 02 Dec 2010 11:41:18 +0000</pubDate>
		<dc:creator>Thijs</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[roeselare]]></category>
		<category><![CDATA[syntra]]></category>
		<category><![CDATA[training]]></category>
		<category><![CDATA[west]]></category>
		<category><![CDATA[workshop]]></category>

		<guid isPermaLink="false">http://blog.feryn.eu/?p=963</guid>
		<description><![CDATA[
Tonight I&#8217;m speaking at Syntra West in Roeselare. The talk will be in Dutch and is called &#8216;Van hosting tot cloud computing&#8217;. This is the second time I present this talk and it&#8217;s the remake of the talk I usually give at Syntra. During this workshop I&#8217;ll sketch a clear view on hosting and the [...]
]]></description>
		<wfw:commentRss>http://blog.feryn.eu/2010/12/speaking-at-syntra-west/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
