<?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: ZamfBrowser &#8211; ZendAMF Service Browser</title>
	<atom:link href="http://technophi.com/2009/11/13/zamfbrowser-zendamf-service-browser/feed/" rel="self" type="application/rss+xml" />
	<link>http://technophi.com/2009/11/13/zamfbrowser-zendamf-service-browser/</link>
	<description>personal weblog of a tech addict</description>
	<lastBuildDate>Fri, 30 Dec 2011 04:14:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Albulescu Cosmin</title>
		<link>http://technophi.com/2009/11/13/zamfbrowser-zendamf-service-browser/comment-page-1/#comment-577</link>
		<dc:creator>Albulescu Cosmin</dc:creator>
		<pubDate>Fri, 07 Oct 2011 11:18:26 +0000</pubDate>
		<guid isPermaLink="false">#comment-577</guid>
		<description>Hi, very nice post.. I will add to greader :)

Regards,
Albulescu Cosmin</description>
		<content:encoded><![CDATA[<p>Hi, very nice post.. I will add to greader <img src='http://technophi.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Regards,<br />
Albulescu Cosmin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leng</title>
		<link>http://technophi.com/2009/11/13/zamfbrowser-zendamf-service-browser/comment-page-1/#comment-24</link>
		<dc:creator>Leng</dc:creator>
		<pubDate>Mon, 30 Nov 2009 22:47:46 +0000</pubDate>
		<guid isPermaLink="false">#comment-24</guid>
		<description>This is awesome! I think with ZamfBrowser more people are going to convert to ZendAmf</description>
		<content:encoded><![CDATA[<p>This is awesome! I think with ZamfBrowser more people are going to convert to ZendAmf</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carlos</title>
		<link>http://technophi.com/2009/11/13/zamfbrowser-zendamf-service-browser/comment-page-1/#comment-14</link>
		<dc:creator>Carlos</dc:creator>
		<pubDate>Wed, 25 Nov 2009 08:37:41 +0000</pubDate>
		<guid isPermaLink="false">#comment-14</guid>
		<description>Remarkable effort behind ZamfBrowser!

And nice to know there&#039;s more people looking at Flex4, ZendAmf and Dupal. 

Looking forward
Carlos</description>
		<content:encoded><![CDATA[<p>Remarkable effort behind ZamfBrowser!</p>
<p>And nice to know there&#8217;s more people looking at Flex4, ZendAmf and Dupal. </p>
<p>Looking forward<br />
Carlos</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hasan Otuome</title>
		<link>http://technophi.com/2009/11/13/zamfbrowser-zendamf-service-browser/comment-page-1/#comment-12</link>
		<dc:creator>Hasan Otuome</dc:creator>
		<pubDate>Wed, 18 Nov 2009 21:12:49 +0000</pubDate>
		<guid isPermaLink="false">#comment-12</guid>
		<description>Hi Jeff,

First, thanks for the kudos on the book!

Now, as far as I know, a ZendAMF module for Drupal is non-existent at the moment but I have heard rumblings of people interested in taking on the challenge so stay encouraged. The new wizards in FB4 are pretty sweet.

As far as filter functions on a paged list, the easiest thing to do would be to preload/load the data into your Flex app and then crank out a paging routine. The trick there is defining variables for the key pieces of a paging mechanism:

&lt;pre lang=&quot;actionscript3&quot;&gt;
var totalItems:Number;
var totalPages:Number;
var maxPageSize:Number = 10;

totalItems = items.length;
totalPages = totalItems / maxPageSize;
&lt;/pre&gt;

Once you have those values you can iterate over the collection fairly easily and quickly. Hope this helps...</description>
		<content:encoded><![CDATA[<p>Hi Jeff,</p>
<p>First, thanks for the kudos on the book!</p>
<p>Now, as far as I know, a ZendAMF module for Drupal is non-existent at the moment but I have heard rumblings of people interested in taking on the challenge so stay encouraged. The new wizards in FB4 are pretty sweet.</p>
<p>As far as filter functions on a paged list, the easiest thing to do would be to preload/load the data into your Flex app and then crank out a paging routine. The trick there is defining variables for the key pieces of a paging mechanism:</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript3" style="font-family:monospace;"><span style="color: #6699cc; font-weight: bold;">var</span> totalItems<span style="color: #000066; font-weight: bold;">:</span><span style="color: #004993;">Number</span><span style="color: #000066; font-weight: bold;">;</span>
<span style="color: #6699cc; font-weight: bold;">var</span> totalPages<span style="color: #000066; font-weight: bold;">:</span><span style="color: #004993;">Number</span><span style="color: #000066; font-weight: bold;">;</span>
<span style="color: #6699cc; font-weight: bold;">var</span> maxPageSize<span style="color: #000066; font-weight: bold;">:</span><span style="color: #004993;">Number</span> = <span style="color: #000000; font-weight:bold;">10</span><span style="color: #000066; font-weight: bold;">;</span>
&nbsp;
totalItems = items<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">length</span><span style="color: #000066; font-weight: bold;">;</span>
totalPages = totalItems <span style="color: #000066; font-weight: bold;">/</span> maxPageSize<span style="color: #000066; font-weight: bold;">;</span></pre></div></div>

<p>Once you have those values you can iterate over the collection fairly easily and quickly. Hope this helps&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jrweinb</title>
		<link>http://technophi.com/2009/11/13/zamfbrowser-zendamf-service-browser/comment-page-1/#comment-11</link>
		<dc:creator>jrweinb</dc:creator>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-11</guid>
		<description>Hello Hasan,

I recently worked through Friends of Ed Advanced Application Development and I would like to say great work! I have two questions and would be very grateful if you could help - I have built a site with a Flex 4 front end and drupal back-end.

1 - Is there a ZendAMF module for Drupal that you know of? I would love to use drupal in conjunction with the ZendAMF wizard in Flex 4 and save a lot of time coding!

2 - How can I use actionscript filter functions with a paged list? Is it possible? If not, does it make sense to create a different drupal view for each filter option and then just call that view when the user filters a list? 

Thank you, sorry for the random question and I appreciate your help.

Best,

Jeff</description>
		<content:encoded><![CDATA[<p>Hello Hasan,</p>
<p>I recently worked through Friends of Ed Advanced Application Development and I would like to say great work! I have two questions and would be very grateful if you could help &#8211; I have built a site with a Flex 4 front end and drupal back-end.</p>
<p>1 &#8211; Is there a ZendAMF module for Drupal that you know of? I would love to use drupal in conjunction with the ZendAMF wizard in Flex 4 and save a lot of time coding!</p>
<p>2 &#8211; How can I use actionscript filter functions with a paged list? Is it possible? If not, does it make sense to create a different drupal view for each filter option and then just call that view when the user filters a list? </p>
<p>Thank you, sorry for the random question and I appreciate your help.</p>
<p>Best,</p>
<p>Jeff</p>
]]></content:encoded>
	</item>
</channel>
</rss>

