<?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: Getting Started with Cairngorm – Part 4</title>
	<atom:link href="http://www.davidtucker.net/2007/11/07/cairngorm-part-4/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.davidtucker.net/2007/11/07/cairngorm-part-4/</link>
	<description>web development goodness</description>
	<lastBuildDate>Fri, 19 Mar 2010 14:47:40 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Codeguyz</title>
		<link>http://www.davidtucker.net/2007/11/07/cairngorm-part-4/comment-page-2/#comment-3721</link>
		<dc:creator>Codeguyz</dc:creator>
		<pubDate>Mon, 18 Jan 2010 23:52:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidtucker.net/2007/11/07/cairngorm-part-4/#comment-3721</guid>
		<description>For those that were getting the on this line.

this.service = ServiceLocator.getInstance().getRemoteObject(”unclaimService”);

I was getting the same thing. Then I made a reference in my main application to the services and it worked fine.

 (put this in your main application, it defines the service before making the call).</description>
		<content:encoded><![CDATA[<p>For those that were getting the on this line.</p>
<p>this.service = ServiceLocator.getInstance().getRemoteObject(”unclaimService”);</p>
<p>I was getting the same thing. Then I made a reference in my main application to the services and it worked fine.</p>
<p> (put this in your main application, it defines the service before making the call).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Iniciando com Cairngorm? &#171; Edgard Davidson</title>
		<link>http://www.davidtucker.net/2007/11/07/cairngorm-part-4/comment-page-2/#comment-3667</link>
		<dc:creator>Iniciando com Cairngorm? &#171; Edgard Davidson</dc:creator>
		<pubDate>Tue, 08 Dec 2009 14:25:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidtucker.net/2007/11/07/cairngorm-part-4/#comment-3667</guid>
		<description>[...]  Artigo sobre Cairngorm parte 4 e o  Vídeo Cairngorm Part 4 [...]</description>
		<content:encoded><![CDATA[<p>[...]  Artigo sobre Cairngorm parte 4 e o  Vídeo Cairngorm Part 4 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rohit Marathe</title>
		<link>http://www.davidtucker.net/2007/11/07/cairngorm-part-4/comment-page-2/#comment-3644</link>
		<dc:creator>Rohit Marathe</dc:creator>
		<pubDate>Fri, 20 Nov 2009 11:03:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidtucker.net/2007/11/07/cairngorm-part-4/#comment-3644</guid>
		<description>Hi David.
Thnaks a ton for Gr8 articles about Cairngorm. 
As a newbee I have one problem
In Cairngorm view fires cairngorm events which are routed to appropriate commands and these commands then update the model. 
As model is bound to view view gets updated.
But if I want want to clear the user registration form after sucessfully inserting the record into data base what is the best method to do that, if I am using Cairngorm.
Please Help :)</description>
		<content:encoded><![CDATA[<p>Hi David.<br />
Thnaks a ton for Gr8 articles about Cairngorm.<br />
As a newbee I have one problem<br />
In Cairngorm view fires cairngorm events which are routed to appropriate commands and these commands then update the model.<br />
As model is bound to view view gets updated.<br />
But if I want want to clear the user registration form after sucessfully inserting the record into data base what is the best method to do that, if I am using Cairngorm.<br />
Please Help <img src='http://www.davidtucker.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vikram</title>
		<link>http://www.davidtucker.net/2007/11/07/cairngorm-part-4/comment-page-2/#comment-3635</link>
		<dc:creator>Vikram</dc:creator>
		<pubDate>Mon, 16 Nov 2009 14:05:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidtucker.net/2007/11/07/cairngorm-part-4/#comment-3635</guid>
		<description>To newbie developers who use this wonderful tutorial by David, but create the server side service in PHP, please remember that in LoginDelegate.as, you will have to change the method which calls the server-side method like this


public function login(login:LoginVO):void {
  var call:Object = service.login( login.username, login.password );
  call.addResponder( responder );
}

This applies when you create the service in PHP which has the prototype like this..

public function login($username, $password)
{
 // implement login functionality here
}

I had to spend quite sometime figuring this out, being a newbie in Cairngorm and Flex.

With best regards
Vikram</description>
		<content:encoded><![CDATA[<p>To newbie developers who use this wonderful tutorial by David, but create the server side service in PHP, please remember that in LoginDelegate.as, you will have to change the method which calls the server-side method like this</p>
<p>public function login(login:LoginVO):void {<br />
  var call:Object = service.login( login.username, login.password );<br />
  call.addResponder( responder );<br />
}</p>
<p>This applies when you create the service in PHP which has the prototype like this..</p>
<p>public function login($username, $password)<br />
{<br />
 // implement login functionality here<br />
}</p>
<p>I had to spend quite sometime figuring this out, being a newbie in Cairngorm and Flex.</p>
<p>With best regards<br />
Vikram</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vikram</title>
		<link>http://www.davidtucker.net/2007/11/07/cairngorm-part-4/comment-page-2/#comment-3634</link>
		<dc:creator>Vikram</dc:creator>
		<pubDate>Mon, 16 Nov 2009 10:50:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidtucker.net/2007/11/07/cairngorm-part-4/#comment-3634</guid>
		<description>Hello there David

I just noticed that the service class you made in ColdFusion takes in the argument loginAttempt of type LoginVO.

I am implementing the service in PHP. Should it be same there or will it take two arguments username and password?

Thanks and Regards
Vikram</description>
		<content:encoded><![CDATA[<p>Hello there David</p>
<p>I just noticed that the service class you made in ColdFusion takes in the argument loginAttempt of type LoginVO.</p>
<p>I am implementing the service in PHP. Should it be same there or will it take two arguments username and password?</p>
<p>Thanks and Regards<br />
Vikram</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vikram</title>
		<link>http://www.davidtucker.net/2007/11/07/cairngorm-part-4/comment-page-2/#comment-3633</link>
		<dc:creator>Vikram</dc:creator>
		<pubDate>Mon, 16 Nov 2009 03:05:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidtucker.net/2007/11/07/cairngorm-part-4/#comment-3633</guid>
		<description>Hello David

Thanks a lot for the wonderful series of tutorials. This has got me going with Cairngorm. 

I am setting up the Services using Zend_AMF. The service works fine when I use a simple RemoteObject without Cairngorm. But using this tutorial the fault event displays the following message:
[RPC Fault faultString=&quot;Channel disconnected&quot; faultCode=&quot;Client.Error.DeliveryInDoubt&quot; faultDetail=&quot;Channel disconnected before an acknowledgement was received&quot;]

What could be going in this case? Can you guide me appropriately?

With Kind Regards
Vikram</description>
		<content:encoded><![CDATA[<p>Hello David</p>
<p>Thanks a lot for the wonderful series of tutorials. This has got me going with Cairngorm. </p>
<p>I am setting up the Services using Zend_AMF. The service works fine when I use a simple RemoteObject without Cairngorm. But using this tutorial the fault event displays the following message:<br />
[RPC Fault faultString="Channel disconnected" faultCode="Client.Error.DeliveryInDoubt" faultDetail="Channel disconnected before an acknowledgement was received"]</p>
<p>What could be going in this case? Can you guide me appropriately?</p>
<p>With Kind Regards<br />
Vikram</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pranav</title>
		<link>http://www.davidtucker.net/2007/11/07/cairngorm-part-4/comment-page-2/#comment-3192</link>
		<dc:creator>Pranav</dc:creator>
		<pubDate>Mon, 22 Jun 2009 06:56:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidtucker.net/2007/11/07/cairngorm-part-4/#comment-3192</guid>
		<description>Hi David,
Great series of vedios....

I implement all these stuff but i got an error 
ArgumentError: Error #1063: Argument count

Could you help me to resolve this ?

ThanX in advance.........</description>
		<content:encoded><![CDATA[<p>Hi David,<br />
Great series of vedios&#8230;.</p>
<p>I implement all these stuff but i got an error<br />
ArgumentError: Error #1063: Argument count</p>
<p>Could you help me to resolve this ?</p>
<p>ThanX in advance&#8230;&#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Harry</title>
		<link>http://www.davidtucker.net/2007/11/07/cairngorm-part-4/comment-page-2/#comment-2940</link>
		<dc:creator>Harry</dc:creator>
		<pubDate>Thu, 09 Apr 2009 23:22:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidtucker.net/2007/11/07/cairngorm-part-4/#comment-2940</guid>
		<description>I am getting error at this line in the delegate class constructor. 
When the command class tries to get instance of delegate, its throwing an error. 
this.service = ServiceLocator.getInstance().getRemoteObject(&quot;unclaimService&quot;);

Also can somebody explain the logic behind the above line. We have created a services.mxml file and its rootTag is . I am kind of confused!!!, where are we using that services.mxml file...  please explain!!</description>
		<content:encoded><![CDATA[<p>I am getting error at this line in the delegate class constructor.<br />
When the command class tries to get instance of delegate, its throwing an error.<br />
this.service = ServiceLocator.getInstance().getRemoteObject(&#8221;unclaimService&#8221;);</p>
<p>Also can somebody explain the logic behind the above line. We have created a services.mxml file and its rootTag is . I am kind of confused!!!, where are we using that services.mxml file&#8230;  please explain!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Harry</title>
		<link>http://www.davidtucker.net/2007/11/07/cairngorm-part-4/comment-page-2/#comment-2939</link>
		<dc:creator>Harry</dc:creator>
		<pubDate>Thu, 09 Apr 2009 22:34:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidtucker.net/2007/11/07/cairngorm-part-4/#comment-2939</guid>
		<description>Here is the error I get when running example. I have declared a remoteObject service and given id=&quot;unclaimService&quot;. 

RemoteObject not found for unclaimService
	at RemoteObjects/getService()[C:\dev\swat\projects\ac_emea\Cairngorm\com\adobe\cairngorm\business\RemoteObjects.as:80]
	at com.adobe.cairngorm.business::ServiceLocator/getRemoteObject()[C:\dev\swat\projects\ac_emea\Cairngorm\com\adobe\cairngorm\business\ServiceLocator.as:137]</description>
		<content:encoded><![CDATA[<p>Here is the error I get when running example. I have declared a remoteObject service and given id=&#8221;unclaimService&#8221;. </p>
<p>RemoteObject not found for unclaimService<br />
	at RemoteObjects/getService()[C:\dev\swat\projects\ac_emea\Cairngorm\com\adobe\cairngorm\business\RemoteObjects.as:80]<br />
	at com.adobe.cairngorm.business::ServiceLocator/getRemoteObject()[C:\dev\swat\projects\ac_emea\Cairngorm\com\adobe\cairngorm\business\ServiceLocator.as:137]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: daslicht</title>
		<link>http://www.davidtucker.net/2007/11/07/cairngorm-part-4/comment-page-2/#comment-2929</link>
		<dc:creator>daslicht</dc:creator>
		<pubDate>Sat, 28 Mar 2009 01:22:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidtucker.net/2007/11/07/cairngorm-part-4/#comment-2929</guid>
		<description>GOT IT :D</description>
		<content:encoded><![CDATA[<p>GOT IT <img src='http://www.davidtucker.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
