Re: [flexcoders] Cairngorm ServiceLocator

2008-04-23 Thread Christophe Herreman
Hi Vivian, we have recently been talking about this with the development team. I agree with you that video tutorials would be a great aid, so I'll try to put something together. regards, Christophe -- Christophe Herreman http://www.herrodius.com http://www.pranaframework.org 2008/4/23 Vivian

Re: [flexcoders] Cairngorm ServiceLocator

2008-04-22 Thread Christophe Herreman
Hi Eric, have you looked at the modified CairngormServiceLocator in Prana? http://www.herrodius.com/blog/131 regards, Christophe 2008/4/23 Eric Cancil [EMAIL PROTECTED]: I think a little more thought could be put into this class. Due to the fact that it uses describeType to discover the

Re: [flexcoders] Cairngorm ServiceLocator

2008-04-22 Thread Vivian Richard
Hey Christophe, is it possible that you create some video tutorial of Prana? I guess that way developers will be able to adopt it faster. Just my 2 cents!!! On Tue, Apr 22, 2008 at 9:07 PM, Christophe Herreman [EMAIL PROTECTED] wrote: Hi Eric, have you looked at the modified

RE: [flexcoders] Cairngorm ServiceLocator Issue

2007-12-12 Thread Dimitrios Gianninas
Gianninas RIA Developer and Team Lead Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manu Dhanda Sent: Tuesday, December 11, 2007 11:44 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Cairngorm

RE: [flexcoders] Cairngorm ServiceLocator Issue

2007-12-11 Thread Dimitrios Gianninas
Hi, Things you can check are: a) did u set the server-side logging to Debug in the services-config.xml file? b) is your command actually being called? add a trace statement in there to see if it, common problem is you forget to add an entry in the controller are u getting any sort of error

RE: [flexcoders] Cairngorm ServiceLocator Issue

2007-12-11 Thread Manu Dhanda
Yes, server-side logging is set to Debug. I tried to put the Alert statement after my delegate.methodCall() and it is reaching there. I am not getting any errors anywhere, that is why I am confused like where to look to sort out this issue. Thanks. Dimitrios Gianninas wrote: Hi, Things

Re: [flexcoders] Cairngorm ServiceLocator as ActionScript class?

2007-10-05 Thread Tom Chiverton
On Friday 05 Oct 2007, [EMAIL PROTECTED] wrote: is it possible to write the cairngorm ServiceLocator as an ActionScript class - instead of an mxml file? Turn on keep-sources in the compiler and see what it does :-) -- Tom Chiverton Helping to completely harvest professional paradigms on:

RE: [flexcoders] Cairngorm ServiceLocator error

2007-01-16 Thread jason.proulx
I always forget that part too :P Jay Proulx [EMAIL PROTECTED] From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kevin Sent: January 15, 2007 11:09 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Cairngorm ServiceLocator

RE: [flexcoders] Cairngorm ServiceLocator error

2007-01-15 Thread jason.proulx
Make sure you have: business:Services id=serviceLocator / in your main Application file. Jay Proulx [EMAIL PROTECTED] From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kevin Sent: January 15, 2007 9:26 AM To:

Re: [flexcoders] Cairngorm ServiceLocator error

2007-01-15 Thread Kevin
of course!!! Thanks. It's always something simple. I had commented that part out when i was testing some stuff and I forgot to uncomment it. - Kevin On Jan 15, 2007, at 10:44 AM, [EMAIL PROTECTED] wrote: Make sure you have: business:Services id=”serviceLocator” / in your main

RE: [flexcoders] Cairngorm ServiceLocator

2007-01-05 Thread Clint Modien
The code is opensource so you can see how it works... here's the call it makes. (This is cairngorm v2) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Friday, January 05, 2007 10:53 AM To:

RE: [flexcoders] Cairngorm ServiceLocator

2007-01-05 Thread Clint Modien
Oops wrong key... The code is opensource so you can see how it works... here's the call it makes. (This is cairngorm v2) /** * Return the WebService for the given service id. * @param serviceId the service id. * @return the RemoteObject. */ public

RE: [flexcoders] Cairngorm ServiceLocator

2007-01-05 Thread jason.proulx
@yahoogroups.com Cc: Ben Lucyk Subject: RE: [flexcoders] Cairngorm ServiceLocator The code is opensource so you can see how it works... here's the call it makes. (This is cairngorm v2) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL

Re: [flexcoders] Cairngorm ServiceLocator

2007-01-05 Thread Martin Wood-Mitrovski
the cairngorm service locator just checks to see if it has a property with the name of the service defined if(this [ serviceId ] == null) // throw an error if it exists then just return it : return this[ serviceId ]; its a common actionscript technique to access object properties dynamically

RE: [flexcoders] Cairngorm ServiceLocator

2007-01-05 Thread Clint Modien
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Friday, January 05, 2007 12:13 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Cairngorm ServiceLocator I traced through the code, com.adobe.cairngorm.business.ServiceLocator refers

RE: [flexcoders] Cairngorm ServiceLocator

2007-01-05 Thread jason.proulx
] On Behalf Of Clint Modien Sent: January 5, 2007 3:41 PM To: flexcoders@yahoogroups.com Cc: Ben Lucyk Subject: RE: [flexcoders] Cairngorm ServiceLocator I'm assuming you've seen my second email by now but... the reason is because you're calling the static ServiceLocator.getInstance() method. quote

Re: [flexcoders] Cairngorm ServiceLocator

2007-01-05 Thread Clint Modien
:[EMAIL PROTECTED] *On Behalf Of *Clint Modien *Sent:* January 5, 2007 3:41 PM *To:* flexcoders@yahoogroups.com *Cc:* Ben Lucyk *Subject:* RE: [flexcoders] Cairngorm ServiceLocator I'm assuming you've seen my second email by now but… the reason is because you're calling the static

RE: [flexcoders] Cairngorm ServiceLocator and FDS

2006-07-12 Thread Dimitrios Gianninas
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JesterXLSent: Tuesday, July 11, 2006 11:29 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Cairngorm ServiceLocator and FDS This one's long! Before I gave up on FDS, I had a few ideas that seemed to work, but were

Re: [flexcoders] Cairngorm ServiceLocator and FDS

2006-07-12 Thread JesterXL
Yeah, sounds like what you have for DataService works. I haven't spent time with DataService. - Original Message - From: Dimitrios Gianninas To: flexcoders@yahoogroups.com Sent: Wednesday, July 12, 2006 9:11 AM Subject: RE: [flexcoders] Cairngorm ServiceLocator and FDS

Re: [flexcoders] Cairngorm ServiceLocator and FDS

2006-07-11 Thread JesterXL
Add this function to Cairngorm's ServiceLocator and it'll work: public function getMessageAgent ( serviceId : String ) : mx.messenging.MessageAgent { if ( this[ serviceId ] == undefined ) throw new Error( No MessageAgent found for service name + serviceId );

RE: [flexcoders] Cairngorm ServiceLocator and FDS

2006-07-11 Thread João Fernandes
Mike look this post: http://weblogs.macromedia.com/pmartin/archives/2006/06/cairngorm_2_sec.cfm DestinationLocator extends serviceLocator so you can replace your serviceLocator tags in your services.mxml for destinationLocator and put there your DataServices then use

RE: [flexcoders] Cairngorm ServiceLocator and FDS

2006-07-11 Thread Steven Webster
Mike look this post: http://weblogs.macromedia.com/pmartin/archives/2006/06/cairngo rm_2_sec.cfm DestinationLocator extends serviceLocator so you can replace your serviceLocator tags in your services.mxml for destinationLocator and put there your DataServices then use

RE: [flexcoders] Cairngorm ServiceLocator and FDS

2006-07-11 Thread Steven Webster
Hey Mike, So that's an interesting question you ask; our intention for ServiceLocator is support for the RPC services in Flex ... at least that is the heritage of the ServiceLocator from Flex 1.5, and that's how we've personally been using it in Flex 2. For the Flex Data Services apps

RE: [flexcoders] Cairngorm ServiceLocator and FDS

2006-07-11 Thread João Fernandes
: [flexcoders] Cairngorm ServiceLocator and FDS Hey Mike, So that's an interesting question you ask; our intention for ServiceLocator is support for the RPC services in Flex ... at least that is the heritage of the ServiceLocator from Flex 1.5, and that's how we've personally been using it in Flex 2

RE: [flexcoders] Cairngorm ServiceLocator and FDS

2006-07-11 Thread Bjorn Schultheiss
QDC Technologies -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of João Fernandes Sent: Wednesday, 12 July 2006 8:43 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Cairngorm ServiceLocator and FDS Steven, I can understand your

RE: [flexcoders] Cairngorm ServiceLocator and FDS

2006-07-11 Thread Dimitrios Gianninas
t, so still thinking Dimitrios Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Steven WebsterSent: Tuesday, July 11, 2006 5:32 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Cairngorm ServiceLocator and FDS

RE: [flexcoders] Cairngorm ServiceLocator and FDS

2006-07-11 Thread Dimitrios Gianninas
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dimitrios GianninasSent: Tuesday, July 11, 2006 9:05 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Cairngorm ServiceLocator and FDS Glad to see I'm not crazy :) With this thread this afternoon, I was like "

Re: [flexcoders] Cairngorm ServiceLocator and FDS

2006-07-11 Thread JesterXL
n more into the GUI design realm as of late. Hopefully these ideas spark more and/or better ones or discussion at least. - Original Message - From: Dimitrios Gianninas To: flexcoders@yahoogroups.com Sent: Tuesday, July 11, 2006 9:22 PM Subject: RE: [flexcoders] Cairngorm ServiceLocato

Re: [flexcoders] Cairngorm ServiceLocator and AMFPHP

2006-05-13 Thread Andrea Varga
Hi Stefan You might want to look at this: http://renaun.com/blog/?p=25 Andi stefan_schmalhaus wrote: I'd like to add an AMFPHP-based service to my Cairngorm ServiceLocator. The example from Mike Potter's Flex/AMFPHP tutorial works really well (for those who haven't tried it yet here's the