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

rmarp
rmarp
Offline

Badges

Badges
6

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
14

Discussions

Discussions
0

Questions

Questions
0

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by rmarp
Customize the badges you want to showcase on your profile
Re: Excluding methods from RemoteClass serialization - Adobe LiveCycle 15-01-2007
Anybody with any thoughts on this?

Views

92

Likes

0

Replies

0
Excluding methods from RemoteClass serialization - Adobe LiveCycle 11-01-2007
I am using the RemoteClass attribute on several of myactionscript classes to model my server-side Java classes. This allworks fine but I often find myself wishing I could add a propertyto my actionscript class that would only exist on the client tier,i.e. would not be serialized to the server when I send one of themas an argument to the server. Like for example, I have a Customer object which has an id,name, and location. I make a request to the server and I get anarray of Customer objects back....

Views

280

Likes

0

Replies

1
Re: Java -> AS mapping for arrays - Adobe LiveCycle 28-11-2006
Doh! Ok I solved my own problem. This might be a gotcha forothers. Originally, I had code like this in the result handler formy remoteobject:var cust:Customer = Customer(event.result);But when I was testing returning an array of Customerobjects, I changed my code to this just to see what was comingback:ObjectUtil.toString(event.result);When I did this, I removed any references to my Customerclass so it did not get compiled. Once I added in a dummy referenceto my Customer class, all worked well a...

Views

192

Likes

0

Replies

0
Re: Java -> AS mapping for arrays - Adobe LiveCycle 27-11-2006
Yeah they are identical and it serializes perfectly when Ireturn a Customer. But when I return a Customer[] (array), i justget Object's, not Customer's on the AS side. Is there a certain type of array/collection I need to use orsomething?

Views

192

Likes

0

Replies

0
Java -> AS mapping for arrays - Adobe LiveCycle 20-11-2006
I've got a basic Java -> AS mapping working where myserver-side Java "Customer" class is serialized down to myclient-side AS "Customer" object via my use of the RemoteClassattribute. But when my Java object returns a Customer[] or a List,the items inside the collection revert back to just "Object"'sinstead of "Customer"'s. Any idea why?I'm using RemoteObject.

Views

524

Likes

0

Replies

3
Not totally clear on how FDS interfaces with my Java classes - Adobe LiveCycle 17-11-2006
Hi folks - Maybe somebody can set me straight. I'm wanting touse the remoting feature of Flex Data Services so I can communicatefrom my Flex client and my server logic via the binary AMF protocolbecause it seems to be faster and more robut than web services. Ihave installed FDS on my tomcat server. I've also written a simpleJava class as a test that returns the current time via a publicmethod. Should I be packaging this class up as it's own webapplication or should I be deploying this into the F...

Views

334

Likes

0

Replies

1
Re: Result formats - Adobe LiveCycle 20-10-2006
Hi William,Thanks for the response.Good point about HTTPService not having multipleoperations/methods. I was really only considering using XML overHTTP because it appeared to give me more control over the format ofthe result. I would prefer to use SOAP as a minimum. I'm just notsure about the result formats. Do you know what format data comesback in when using WebServices? ObjectProxy's? XML? Ryan

Views

176

Likes

0

Replies

0
Result formats - Adobe LiveCycle 19-10-2006
Hi folks,I'm trying to decide what communication mechanism to usebetween my Flex app and my Java server. The three options I seeare: HTTP, SOAP, and Remoting. I understand how these work inconcept but the key question I have here is:I know I can set the resultFormat property of the HTTPServiceobject to various values, do I have the same control overRemoteObject and WebService? If not, what format does it come backin? XML? Object? An thoughts on the merits of either being used asby the Model as b...

Views

440

Likes

0

Replies

2
Re: SOAP parameter serialization - Adobe LiveCycle 09-08-2006
William - Thank you, this is helpful. One other thingthough.. a few of the web service operations I need to call have aparameter defined like this: Notice that the Name and Value items are attributes, notsub-elements. If I create an object like:var param:Object = {Name:"xxxx", Value:"yyyy"};is there a way to have these properties encoded as attributesas opposed to sub-elements?Ryan

Views

147

Likes

0

Replies

0
SOAP parameter serialization - Adobe LiveCycle 08-08-2006
Hi all,I'm looking for some information on how Flash/Flex serializesparameters to WebService operations. If a web service operationstakes a simple parameter like a string, I can just pass it in asthe argument to the Operation.send() method but what if theparameter is a "complexType"? Do I need to create an xml node orjust an object with public properties, etc...?Any info on this would be much appreciated.Ryan

Views

622

Likes

0

Replies

3