<?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/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
	>
<channel>
	<title>Comments on: Arp 3 Preview Release</title>
	<atom:link href="http://aralbalkan.com/642/feed" rel="self" type="application/rss+xml" />
	<link>http://aralbalkan.com/642</link>
	<description>Passionate geekisms.</description>
	<lastBuildDate>Thu, 18 Mar 2010 08:13:38 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Aral</title>
		<link>http://aralbalkan.com/642/comment-page-1#comment-88029</link>
		<dc:creator>Aral</dc:creator>
		<pubDate>Fri, 30 Nov 2007 06:34:07 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/642#comment-88029</guid>
		<description>Hi Chris,

I&#039;m not actively developing Arp at the moment but you can find AS3 and Flex 2 samples here: 

http://svn1.cvsdude.com/osflash/arp/trunk/samples/PizzaService/client/

Hope that helps,
Aral</description>
		<content:encoded><![CDATA[<p>Hi Chris,</p>
<p>I&#8217;m not actively developing Arp at the moment but you can find AS3 and Flex 2 samples here: </p>
<p><a href="http://svn1.cvsdude.com/osflash/arp/trunk/samples/PizzaService/client/" rel="nofollow">http://svn1.cvsdude.com/osflash/arp/trunk/samples/PizzaService/client/</a></p>
<p>Hope that helps,<br />
Aral</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://aralbalkan.com/642/comment-page-1#comment-87966</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Thu, 29 Nov 2007 21:51:36 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/642#comment-87966</guid>
		<description>Hello,
any chance for sample pizza app with as3 and Flash. 

It was nice to went throught the project in as2, lernt a lot - now would like to do the same with as3</description>
		<content:encoded><![CDATA[<p>Hello,<br />
any chance for sample pizza app with as3 and Flash. </p>
<p>It was nice to went throught the project in as2, lernt a lot &#8211; now would like to do the same with as3</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ARP Framework (Aral Balkan) &#171; Flash Dummy</title>
		<link>http://aralbalkan.com/642/comment-page-1#comment-80688</link>
		<dc:creator>ARP Framework (Aral Balkan) &#171; Flash Dummy</dc:creator>
		<pubDate>Tue, 30 Oct 2007 10:00:13 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/642#comment-80688</guid>
		<description>[...] http://aralbalkan.com/642  -&gt; A preview of the Pizza Service Application in Flex (AS3) [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://aralbalkan.com/642 " rel="nofollow">http://aralbalkan.com/642 </a> -&gt; A preview of the Pizza Service Application in Flex (AS3) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ktec</title>
		<link>http://aralbalkan.com/642/comment-page-1#comment-7150</link>
		<dc:creator>ktec</dc:creator>
		<pubDate>Wed, 01 Nov 2006 01:02:42 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/642#comment-7150</guid>
		<description>Found it!!

// Notice: *Not* resultObj.result as in AS2

that&#039;ll teach me not to read your comments...

CancelOrderCommand.onStatus needs the same fix!</description>
		<content:encoded><![CDATA[<p>Found it!!</p>
<p>// Notice: *Not* resultObj.result as in AS2</p>
<p>that&#8217;ll teach me not to read your comments&#8230;</p>
<p>CancelOrderCommand.onStatus needs the same fix!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ktec</title>
		<link>http://aralbalkan.com/642/comment-page-1#comment-7149</link>
		<dc:creator>ktec</dc:creator>
		<pubDate>Wed, 01 Nov 2006 00:50:45 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/642#comment-7149</guid>
		<description>Hi Aral,
Finally had a chance to play with this, one thing i did find you may want to include is an addition to the RemotingConnection class:

&lt;code&gt;
	    public function setCredentials(userId:String, password:String ):void
	    {
	        addHeader(&quot;Credentials&quot;, false, {userid: userId, password:password});
	    }
&lt;/code&gt;

Then you can use:

&lt;code&gt;
	        var gatewayURI:String = &quot;http://localhost/gateway.php&quot;;
	        var gateway:RemotingConnection = new RemotingConnection ( gatewayURI );
		trace(&quot;Setting service authentication&quot;)
	        gateway.setCredentials(&quot;username&quot;, &quot;password&quot;);
	        var gateway:RemotingConnection = new RemotingConnection ( gatewayURI );
	        var pizzaService:AMF0Service = new AMF0Service ( null, &quot;PizzaService&quot;, gateway );
&lt;/code&gt;

in ServiceLocator.addServices method.

I discovered this in some discussions between Jester and Patrick on the amfphp discussions. 

I&#039;m still experiencing problems with my resultObj being undefined, but i assuming its unrelated. Anyways, great work as always!!

keith</description>
		<content:encoded><![CDATA[<p>Hi Aral,<br />
Finally had a chance to play with this, one thing i did find you may want to include is an addition to the RemotingConnection class:</p>
<p><code><br />
	    public function setCredentials(userId:String, password:String ):void<br />
	    {<br />
	        addHeader("Credentials", false, {userid: userId, password:password});<br />
	    }<br />
</code></p>
<p>Then you can use:</p>
<p><code><br />
	        var gatewayURI:String = "http://localhost/gateway.php";<br />
	        var gateway:RemotingConnection = new RemotingConnection ( gatewayURI );<br />
		trace("Setting service authentication")<br />
	        gateway.setCredentials("username", "password");<br />
	        var gateway:RemotingConnection = new RemotingConnection ( gatewayURI );<br />
	        var pizzaService:AMF0Service = new AMF0Service ( null, "PizzaService", gateway );<br />
</code></p>
<p>in ServiceLocator.addServices method.</p>
<p>I discovered this in some discussions between Jester and Patrick on the amfphp discussions. </p>
<p>I&#8217;m still experiencing problems with my resultObj being undefined, but i assuming its unrelated. Anyways, great work as always!!</p>
<p>keith</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FlexibleGuy</title>
		<link>http://aralbalkan.com/642/comment-page-1#comment-3336</link>
		<dc:creator>FlexibleGuy</dc:creator>
		<pubDate>Mon, 04 Sep 2006 10:05:35 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/642#comment-3336</guid>
		<description>Hi....
It&#039;s me Praveen again...... Just registered so thats why the fancy name.....

I tried out your example it works fine. But the problem i was referring to would be more appropriately explained by the TODO comment that has been left in AMF0Service.as.
Please find it below:

// TODO: Investigate why objects don&#039;t show up with correct
// datatypes in ServiceCapture (they are being as plain 
// Objects)
// Is the apply() method somehow stripping them of their 
// datatype?

Please let me know if anyone has been successful in finding any solution for this.

Thanks for your replies.....
Praveen</description>
		<content:encoded><![CDATA[<p>Hi&#8230;.<br />
It&#8217;s me Praveen again&#8230;&#8230; Just registered so thats why the fancy name&#8230;..</p>
<p>I tried out your example it works fine. But the problem i was referring to would be more appropriately explained by the TODO comment that has been left in AMF0Service.as.<br />
Please find it below:</p>
<p>// TODO: Investigate why objects don&#8217;t show up with correct<br />
// datatypes in ServiceCapture (they are being as plain<br />
// Objects)<br />
// Is the apply() method somehow stripping them of their<br />
// datatype?</p>
<p>Please let me know if anyone has been successful in finding any solution for this.</p>
<p>Thanks for your replies&#8230;..<br />
Praveen</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aral</title>
		<link>http://aralbalkan.com/642/comment-page-1#comment-3028</link>
		<dc:creator>aral</dc:creator>
		<pubDate>Wed, 30 Aug 2006 13:16:30 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/642#comment-3028</guid>
		<description>Praveen, which Flash Remoting server are you using? Also, are you using Flex 1 or 2?

To see an example of how to implement this with Amfphp (the client-side will be the same for Java), see the &lt;a href=&quot;http://svn1.cvsdude.com/osflash/arp/trunk/samples/PizzaService/client/flex2/&quot; rel=&quot;nofollow&quot;&gt;Flex 2 sample app for Arp&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>Praveen, which Flash Remoting server are you using? Also, are you using Flex 1 or 2?</p>
<p>To see an example of how to implement this with Amfphp (the client-side will be the same for Java), see the <a href="http://svn1.cvsdude.com/osflash/arp/trunk/samples/PizzaService/client/flex2/" rel="nofollow">Flex 2 sample app for Arp</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Praveen</title>
		<link>http://aralbalkan.com/642/comment-page-1#comment-2974</link>
		<dc:creator>Praveen</dc:creator>
		<pubDate>Tue, 29 Aug 2006 09:08:31 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/642#comment-2974</guid>
		<description>Hi,

I am a beginner in flex. For give me if i seem a bit novice. One of the issues that i have found working in flex is that I am not able to map the VOs from java to the VO in Flex. It gives me a type coerscion exception. Any solutions for this?

Any help in this regard would be appreciated.

Thanks</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I am a beginner in flex. For give me if i seem a bit novice. One of the issues that i have found working in flex is that I am not able to map the VOs from java to the VO in Flex. It gives me a type coerscion exception. Any solutions for this?</p>
<p>Any help in this regard would be appreciated.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pic_micro</title>
		<link>http://aralbalkan.com/642/comment-page-1#comment-1347</link>
		<dc:creator>pic_micro</dc:creator>
		<pubDate>Wed, 26 Jul 2006 19:57:36 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/642#comment-1347</guid>
		<description>Besides ArpAs3.as, I did not find Arp.as in svn.

Thank You</description>
		<content:encoded><![CDATA[<p>Besides ArpAs3.as, I did not find Arp.as in svn.</p>
<p>Thank You</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: picmicro</title>
		<link>http://aralbalkan.com/642/comment-page-1#comment-1344</link>
		<dc:creator>picmicro</dc:creator>
		<pubDate>Wed, 26 Jul 2006 18:13:02 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/642#comment-1344</guid>
		<description>Thanks for this example but I was not able to find the file ArpAs3.as in svn (http://svn1.cvsdude.com/osflash/arp/trunk/as3/)

Is it somewhere else in svn? 
Thank You</description>
		<content:encoded><![CDATA[<p>Thanks for this example but I was not able to find the file ArpAs3.as in svn (<a href="http://svn1.cvsdude.com/osflash/arp/trunk/as3/" rel="nofollow">http://svn1.cvsdude.com/osflash/arp/trunk/as3/</a>)</p>
<p>Is it somewhere else in svn?<br />
Thank You</p>
]]></content:encoded>
	</item>
</channel>
</rss>
