Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

jcbwc
jcbwc
Offline

Badges

Badges
5

Accepted Solutions

Accepted Solutions
1

Likes Received

Likes Received
0

Posts

Posts
4

Discussions

Discussions
0

Questions

Questions
4

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by jcbwc
Customize the badges you want to showcase on your profile
Re: Help with Flex, Blaze and Cairngorm - Adobe LiveCycle 18-12-2008
Found the problem. ... in my Delegate I forgot toaddResponder to the AsyncToken.Before:public function getUsers():void{ var call:AsyncToken; call = service.getUsers(); Alert.show("Get users was called"); }After:public function getUsers():void{ var call:AsyncToken; call = service.getUsers(); call.addResponder(this.responder); Alert.show("Get users was called"); }

Views

124

Likes

0

Replies

0
Re: Help with Flex, Blaze and Cairngorm - Adobe LiveCycle 18-12-2008
Here is the output in the Tomcat console[BlazeDS]Channel endpoint my-amf received request.[BlazeDS]FlexClient created with id'F538FE71-271A-47E9-4786-C89F032AA3C7'.[BlazeDS]Channel endpoint my-amf received request.[BlazeDS]Before invoke service: remoting-service incomingMessage: Flex Message(flex.messaging.messages.RemotingMessage) operation = getUsers clientId = F538FF59-160D-4EE3-753C-4B75467F375C destination = dataService messageId = BFC69DEC-BFEC-918B-BD8A-4B0C48E7732D timestamp = 1229619743...

Views

120

Likes

0

Replies

0
Re: Help with Flex, Blaze and Cairngorm - Adobe LiveCycle 18-12-2008
BlazeDS Console is where I am seeing the output. I don't seeanywhere to attach code so I will put some here, is there anyparticular code you would like to see. GetUserCommand.aspublic class GetUserCommand implements ICommand, IResponder{public function execute( event : CairngormEvent void{ var delegate:GetUserDelegate = new GetUserDelegate(this); delegate.getUsers(); }public function result( data : Object ) : void{ Alert.show("We got to a result"); }GetUserDelegate.aspublic class GetUserDelegat...

Views

120

Likes

0

Replies

0
Help with Flex, Blaze and Cairngorm - Adobe LiveCycle 18-12-2008
I using Blaze, Flex3 and Cairngorm, I have a simpleapplication at the moment, in which I dispatch a Cairngorm event,it gets picked up the Command is executed and the Delegate can senddata to the RemoteObject. I can see in the output that Blaze isdoing what it is supposed to do and returning what it is supposedto return, but the data returned never makes it to the IResponderresult function. What am I doing wrong? Can post code ifneeded.

Views

1.0K

Likes

0

Replies

4