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

inlineblue
inlineblue
Offline

Badges

Badges
5

Accepted Solutions

Accepted Solutions
1

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
10

Discussions

Discussions
0

Questions

Questions
0

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by inlineblue
Customize the badges you want to showcase on your profile
Re: Passing Complex Object into Grid Component - Adobe LiveCycle 19-09-2006
He mistyped the solution. It should be:

Views

238

Likes

0

Replies

0
Re: Passing Objects into CFCs using RemoteObject - Adobe LiveCycle 22-08-2006
Ok, that makes sense. And now that you mention it, I rememberthis from the old Flash Remoting days. But is this mentionedanywhere in the Flex 2 docs? It's a very obscure error message forsomething like this.

Views

274

Likes

0

Replies

0
Re: Passing Objects into CFCs using RemoteObject - Adobe LiveCycle 20-08-2006
I've ran into this as well and it's definitely a bug. If aCFC method accepts one struct argument, you will get this error. Ifyou give the CFC method a second dummy argument and just pass junkto it, it works fine. Go figure.

Views

274

Likes

0

Replies

1
Re: Asynchronous Calls - Adobe LiveCycle 10-08-2006
The reason that all remote calls are asynchronous is becausethe Flash Player is essentially single-threaded. Yes, the remotecalls happen on another thread, but you can't make use of it. AllUI processing is done by a single thread, so a blocking call willfreeze up the entire app.Yes, this does make certain processing more difficult. You'llhave to get used to "chaining" your calls in those cases where theorder of calls is important. You can implement a class to do thisfor you (ie. provide a list o...

Views

233

Likes

0

Replies

0
Re: How FDS Works - Adobe LiveCycle 13-07-2006
The main purpose of FDS is to provide smart data managementcapabilities between your Flex app and the back-end database. Italso has the capability to compile Flex applications on-the-fly,but you don't need to use this feature. In fact, I would advise notusing this feature at all. Just compile your SWFs locally and placethem on the server as you've been doing before.

Views

178

Likes

0

Replies

0
Re: Problem accessing results from DataService fill method - Adobe LiveCycle 29-06-2006
Note that it takes time to actually make the dataservice calland retrieve the results. Your data won't be available right away.After calling fill(), you have to wait for the "result" event ofthe DataService object.

Views

93

Likes

0

Replies

0
Re: RemoteObject - Adobe LiveCycle 27-06-2006
You'll have to post some sample code for us to see what'sgoing on.

Views

129

Likes

0

Replies

0
Re: Offline applications with Flex? - Adobe LiveCycle 02-06-2006
My guess is that messages on the client simply queue up inRAM until the network is back up. Of course, if you close the app(browser), I'm thinking it all goes poof.

Views

104

Likes

0

Replies

0
Re: RemoteObject Destination configuration problem - Adobe LiveCycle 25-04-2006
You'll get that exception if the services xml file is notformatted properly. The current parser is not very stable I guess.I think you should modify the original flex-enterprise-services.xmlfile to include your new destination and use that for thecompiler.

Views

146

Likes

0

Replies

0
Re: RemoteObject Destination configuration problem - Adobe LiveCycle 24-04-2006
Did you add the compiler argument?-servicesc:\tomcat\webapps\flex\WEB-INF\flex\flex-remoting-service.xmlunder Project -> Properties -> Flex Compiler

Views

145

Likes

0

Replies

0