<?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>free Zend Framework screencasts - Zendcasts &#187; zend_http_client</title>
	<atom:link href="http://www.zendcasts.com/tag/zend_http_client/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zendcasts.com</link>
	<description>free Zend Framework screencasts. Video tutorials to get you up to speed with different parts of the Zend Framework and enterprise PHP development.</description>
	<lastBuildDate>Mon, 12 Dec 2011 21:14:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Geotargetting with the Google Maps API</title>
		<link>http://www.zendcasts.com/geotargetting-with-the-google-maps-api/2009/08/</link>
		<comments>http://www.zendcasts.com/geotargetting-with-the-google-maps-api/2009/08/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 05:55:10 +0000</pubDate>
		<dc:creator>jon</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[google docs]]></category>
		<category><![CDATA[zend_gdata]]></category>
		<category><![CDATA[zend_http_client]]></category>

		<guid isPermaLink="false">http://www.zendcasts.com/?p=246</guid>
		<description><![CDATA[This video will is part of a multi-part series on looking at how we can leverage some of Google&#8217;s API&#8217;s to build a fancy mapping tool that&#8217;s driven from a Google Docs Spreadsheet. If you haven&#8217;t worked with Google Docs or Zend_Gdata before, I suggest you take a look at the video introducing Zend_Gdata and…]]></description>
			<content:encoded><![CDATA[<p>This video will is part of a multi-part series on looking at how we can leverage some of Google&#8217;s API&#8217;s to build a fancy mapping tool that&#8217;s driven from a Google Docs Spreadsheet. If you haven&#8217;t worked with Google Docs or Zend_Gdata before, I suggest you take a look at the <a href="http://www.zendcasts.com/introduction-to-the-google-docs-api/2009/08/">video introducing Zend_Gdata and the Google -Zend libraries</a>. This video looks at how we can build our own very simple web service adapter for <a href="http://code.google.com/apis/maps/documentation/geocoding/index.html">Google&#8217;s geocoding service</a>. As with most zendcasts, I invite you to <a href="http://zendcasts.googlecode.com/svn/trunk/zc31-geo-targetting-for-google-maps-web-service/zc31-geo-targetting-for-google-maps-web-service.zip">download the source code</a>, <a href="http://code.google.com/p/zendcasts/source/browse/trunk/zc31-geo-targetting-for-google-maps-web-service/">browse it online</a> and <a href="http://www.zendcasts.com/forum/post/66/">discuss the video in the forums</a>.<br />
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zendcasts.com/geotargetting-with-the-google-maps-api/2009/08/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.zendcasts.com/wp-content/uploads/2009/08/zc31-geotargetting-with-google-maps-web-service-screen.mov" length="158704745" type="video/quicktime" />
<enclosure url="http://www.zendcasts.com/wp-content/uploads/2009/08/zc31-geotargetting-with-google-maps-web-service-iphone.m4v" length="146019188" type="video/x-m4v" />
		</item>
		<item>
		<title>Writing a REST Web Service and Client With Zend_Controller</title>
		<link>http://www.zendcasts.com/writing-a-restful-web-service-and-client-with-zend_controller-and-zend_httpclient/2009/04/</link>
		<comments>http://www.zendcasts.com/writing-a-restful-web-service-and-client-with-zend_controller-and-zend_httpclient/2009/04/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 13:46:45 +0000</pubDate>
		<dc:creator>jon</dc:creator>
				<category><![CDATA[Getting Started]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[json]]></category>
		<category><![CDATA[rest]]></category>
		<category><![CDATA[Zend_Config_Ini]]></category>
		<category><![CDATA[zend_http_client]]></category>

		<guid isPermaLink="false">http://www.zendcasts.com/?p=169</guid>
		<description><![CDATA[so here&#8217;s my makeup video for last week&#8217;s absence. It&#8217;s a little on the long end (nearing 40 mintues), however in my defense, I&#8217;m trying to cover a lot of ground. The video covers how you can build a very basic JSON web service with some private key authentication. I think that I muddled through…]]></description>
			<content:encoded><![CDATA[<p>so here&#8217;s my makeup video for last week&#8217;s absence. It&#8217;s a little on the long end (nearing 40 mintues), however in my defense, I&#8217;m trying to cover a lot of ground. The video covers how you can build a very basic JSON web service with some private key authentication. I think that I muddled through the description, so I invite you to <a href="http://en.wikipedia.org/wiki/Public-key_cryptography">look at the Wikipedia entry on private / public key cryptography</a>.</p>
<p>I start by producing a simple Business Object for countries, which then becomes a web service. With some credentials for authentication stored in Zend_Config_Ini, I go through the motions of writing a wrapper around Zend_HttpClient for handling requests with our home-grown country list web service. This approach was adapted from a web service I&#8217;ve been working on for a client recently, that I&#8217;ve found light and easy to write for RESTful calls. Following along with the source code might also be helpful. <a href="http://code.google.com/p/zendcasts/source/browse/#svn/trunk/ep16-creating-a-rest-webservice-and-client-with-zend-controller">Grab yourself a copy of the source code here</a>.</p>

]]></content:encoded>
			<wfw:commentRss>http://www.zendcasts.com/writing-a-restful-web-service-and-client-with-zend_controller-and-zend_httpclient/2009/04/feed/</wfw:commentRss>
		<slash:comments>46</slash:comments>
<enclosure url="http://www.zendcasts.com/wp-content/uploads/2009/04/zc16-creating-a-rest-webservice-and-client-with-zend-controller-screen.mov" length="155074723" type="video/quicktime" />
		</item>
		<item>
		<title>Zend_Config_Ini and using Zend_Http_Client with Twitter</title>
		<link>http://www.zendcasts.com/zend_http_client-with-twitter/2009/03/</link>
		<comments>http://www.zendcasts.com/zend_http_client-with-twitter/2009/03/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 22:14:31 +0000</pubDate>
		<dc:creator>jon</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[rest]]></category>
		<category><![CDATA[zend_config]]></category>
		<category><![CDATA[zend_http_client]]></category>

		<guid isPermaLink="false">http://www.zendcasts.com/?p=159</guid>
		<description><![CDATA[This podcast is a two-parter: Zend_Config_Ini and Zend_Http_Client(). While the two classes aren&#8217;t married together in the video, anyone serious about writing an API to their web application will need to access the API differently in development, staging and production environments. We also take 10 minutes and 4 lines of code to work with the…]]></description>
			<content:encoded><![CDATA[<p>This podcast is a two-parter: Zend_Config_Ini and Zend_Http_Client(). While the two classes aren&#8217;t married together in the video, anyone serious about writing an API to their web application will need to access the API differently in development, staging and production environments.</p>
<p>We also take 10 minutes and 4 lines of code to work with the Twitter API. Jump to around the 15 minute mark if you&#8217;re already up to speed on Zend_Config_*.</p>
<p>I&#8217;m trying to cover the basic classes required to write a web service in the video next week. I&#8217;ve gotten a couple emails about covering Zend_Db. Since this podcast has covered Zend_Controller_* and Zend_View_* classes, the Zend_Db_* are starting to appear as the odd class out. I&#8217;m hoping to introduce Zend_Db by mid April.</p>
<p><a href="http://code.google.com/p/zendcasts/source/browse/#svn/trunk/ep15-zend-config-and-zend-http-client%3Fstate%3Dclosed">View / download the source on Google Code</p>
<p></a></p>

]]></content:encoded>
			<wfw:commentRss>http://www.zendcasts.com/zend_http_client-with-twitter/2009/03/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
<enclosure url="http://www.zendcasts.com/wp-content/uploads/2009/03/zc14-zend_config_and_zend_http_client-screen.mov" length="79467242" type="video/quicktime" />
<enclosure url="http://www.zendcasts.com/wp-content/uploads/2009/03/zc14-zend_config_and_zend_http_client-iphone.m4v" length="76262706" type="text/plain" />
		</item>
	</channel>
</rss>

