Been there, done that... ;-) I already spent a few weeks understanding Cairngorm and as of now, I think it's a great approach and exactly what I've been looking for.
It's was just the backend integration, which made me fail the last two days, but now it works and Darron's way is simple and easy to understand, so why not use it!? Btw, in the meantime I got the Cairngorm way working. Cheers, Thomas ------------------------------------ Thomas Rühl Design, Programming & Concepts akitogo OHG Hanauer Landstrasse 188 60314 Frankfurt Telefon +49 (0) 69 800 69 445 Fax +49 (0) 69 800 69 449 Mobil +49 (0) 179 750 75 87 E-Mail [EMAIL PROTECTED] Web http://www.akitogo.com ------------------------------------ Ralf Bokelberg wrote: > > Hi Thomas, > > Cairngorm works quite well as is. Also there is a simple example > coming with the distribution ( the famous loginExample). I would try > to get used to the framework before applying patches. > > Cheers, > Ralf. > > On 7/13/06, Thomas Rühl -akitogo- <[EMAIL PROTECTED] > <mailto:thomas.ruehl%40akitogo.com>> wrote: > > > > Thanks, Tim! Looks like, that'll help me out here. > > > > I'm as well watching the »WebServices & Cairngorm« thread, and I think > > this is one heck of a solution for the matters Darron draws in his > article. > > > > Cheers, Thomas > > > > ------------------------------------ > > > > Thomas Rühl > > Design, Programming & Concepts > > > > akitogo OHG > > Hanauer Landstrasse 188 > > 60314 Frankfurt > > > > Telefon +49 (0) 69 800 69 445 > > Fax +49 (0) 69 800 69 449 > > Mobil +49 (0) 179 750 75 87 > > E-Mail [EMAIL PROTECTED] <mailto:thomas.ruehl%40akitogo.com> > > Web http://www.akitogo.com <http://www.akitogo.com> > > > > ------------------------------------ > > > > > > > > Tim Hoff wrote: > > > > > > Hi Thomas, > > > > > > Darron Schall's blog; "Why I don't use Cairngorm's Responder > > > <http://www.darronschall.com/weblog/archives/000234.cfm#more > <http://www.darronschall.com/weblog/archives/000234.cfm#more>>," shows > > > a couple of ways that this can be accomplished. > > > > > > -TH > > > > > > --- In [email protected] > <mailto:flexcoders%40yahoogroups.com>, Thomas Rühl -akitogo- > > > <[EMAIL PROTECTED]> wrote: > > > > > > > > > > > > Sorry, but I'm still having questions... > > > > Following the Cairngorm architecture, I created a LoginDelegate > class. > > > > It should call the service and the originating LoginCommand got its > > > > onFault() and onResult() methods and therefore implementes the > > > Responder > > > > interface. > > > > > > > > However, defining this in the LoginDelegate... > > > > public function authenticateUser():void > > > > { > > > > var call:AsyncToken = service.authenticateUser(); > > > > call.addResponder(IResponder(this.responder.onFault())); > > > > call.addResponder(IResponder(this.responder.onResult())); > > > > } > > > > > > > > results in both, calling the onFault and onResult methods... > why? How > > > > can I cope with that? > > > > > > > > Cheers, Thomas > > > > > > > > ------------------------------------ > > > > > > > > Thomas Rühl > > > > Design, Programming & Concepts > > > > > > > > akitogo OHG > > > > Hanauer Landstrasse 188 > > > > 60314 Frankfurt > > > > > > > > Telefon +49 (0) 69 800 69 445 > > > > Fax +49 (0) 69 800 69 449 > > > > Mobil +49 (0) 179 750 75 87 > > > > E-Mail [EMAIL PROTECTED] > > > > Web http://www.akitogo.com <http://www.akitogo.com> > > > > > > > > ------------------------------------ > > > > > > > > > > > > > > > > JesterXL wrote: > > > > > > > > > > You don't need a Delegate. Before, functions were called in the > > > scope of > > > > > the calling object, but now they are called in the scope of where > > > they > > > > > are > > > > > defined. > > > > > > > > > > Thus, this: > > > > > > > > > > myButton.addEventListener("click", Delegate.create(this, > onClick)); > > > > > > > > > > now becomes: > > > > > > > > > > myButton.addEventListener("click", onClick); > > > > > > > > > > No more need! > > > > > > > > > > ----- Original Message ----- > > > > > From: "Thomas Rühl -akitogo-" [EMAIL PROTECTED] > > > > > <mailto:thomas.ruehl%40akitogo.com>> > > > > > To: [email protected] > <mailto:flexcoders%40yahoogroups.com> > <mailto:flexcoders%40yahoogroups.com>> > > > > > Sent: Wednesday, July 12, 2006 9:05 AM > > > > > Subject: [flexcoders] [Flex2] Cairngorm question > > > > > > > > > > Hi, > > > > > I'm just walking through Steven's article about Cairngorm on > the Adobe > > > > > site again and I wonder where the mx.utils.Delegate class can be > > > found. > > > > > Has it been renamed or replaced in some way? How can I create a > > > Delegate > > > > > now? > > > > > > > > > > Cheers, Thomas > > > > > > > > > > ------------------------------------ > > > > > > > > > > Thomas Rühl > > > > > Design, Programming & Concepts > > > > > > > > > > akitogo OHG > > > > > Hanauer Landstrasse 188 > > > > > 60314 Frankfurt > > > > > > > > > > Telefon +49 (0) 69 800 69 445 > > > > > Fax +49 (0) 69 800 69 449 > > > > > Mobil +49 (0) 179 750 75 87 > > > > > E-Mail [EMAIL PROTECTED] <mailto:thomas.ruehl%40akitogo.com> > > > > > Web http://www.akitogo.com <http://www.akitogo.com> > <http://www.akitogo.com <http://www.akitogo.com>> > > > > > > > > > > ------------------------------------ > > > > > > > > > > -- > > > > > Flexcoders Mailing List > > > > > FAQ: > http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt > <http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt> > > > > > > <http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt > <http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt>> > > > > > Search Archives: > > > > > http://www.mail-archive.com/flexcoders%40yahoogroups.com > <http://www.mail-archive.com/flexcoders%40yahoogroups.com> > > > > > <http://www.mail-archive.com/flexcoders%40yahoogroups.com > <http://www.mail-archive.com/flexcoders%40yahoogroups.com>> > > > > > Yahoo! Groups Links > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > Flexcoders Mailing List > > FAQ: > http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt > <http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt> > > Search Archives: > http://www.mail-archive.com/flexcoders%40yahoogroups.com > <http://www.mail-archive.com/flexcoders%40yahoogroups.com> > > Yahoo! Groups Links > > > > > > > > > > > > > > > > > > -- > Ralf Bokelberg <[EMAIL PROTECTED] > <mailto:ralf.bokelberg%40gmail.com>> > Flex & Flash Consultant based in Cologne/Germany > > ------------------------ Yahoo! Groups Sponsor --------------------~--> Great things are happening at Yahoo! Groups. See the new email design. http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/nhFolB/TM --------------------------------------------------------------------~-> -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

