Re: [flexcoders] Java VO.

2005-10-13 Thread Omar Ramos
Hi Aldo,   I currently have it like this. The reason I wanted it the other way around is because I come more from a .NET programing language. In .NET you have your properties defined this way. This reflects the properties of a Sql Table which are defined the same way. So I wanted to maintain con

Re: [flexcoders] Java VO.

2005-10-13 Thread Aldo Bucchi
Hi Omar, I don't see the problem. That's the way it should work. Flex will find a "getName" getter and determine that the name of the variable is "name" according to javabean naming conventions. You should NEVER use uppercase initial letters in variables. period. This is a widely used convention

Re: [flexcoders] Java VO.

2005-10-13 Thread Omar Ramos
Hi Oscar,   I have my gateway.config with Flex serialization> false lowercase-keys> And my getter and setters like this private String _name_en;  public int getName() {  return this._name_en; } public void setName(int _name) {  this_name_en = _name; } And still fl

Re: [flexcoders] Java VO.

2005-10-13 Thread Oscar . Cortes
<[EMAIL PROTECTED]>cc: Sent by: Subject: Re: [flexcoders] Java VO.

Re: [flexcoders] Java VO.

2005-10-13 Thread Omar Ramos
  <[EMAIL PROTECTED] >    cc:  Sent by:          Subject:  Re: [flexcoders] Java VO.

Re: [flexcoders] Java VO.

2005-10-13 Thread Oscar . Cortes
truecc: Sent by: Subject: Re: [flexcoders] Java VO. flexcoders@yahoogroups.com

Re: [flexcoders] Java VO.

2005-10-13 Thread Omar Ramos
coders@yahoogroups.comSubject: [flexcoders] Java VO.   Hi all,I have a simple VO class in java and have a service that returns a ArrayList of that vo. My question is that when I return this list to flex via RemoteObject Tag (AMF) java or flash seams to put each property of the VO in lowercas

RE: [flexcoders] Java VO.

2005-10-13 Thread Kelly Roman
Sent: Tuesday, October 11, 2005 9:12 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Java VO.   Hi all, I have a simple VO class in java and have a service that returns a ArrayList of that vo. My question is that when I return this list to flex via RemoteObject Tag (AMF) java or flash

Re: [flexcoders] Java VO.

2005-10-11 Thread Aldo Bucchi
Hi Omar, A java VO should be a standard JavaBean, hence it should follow the JavaBean specifications which state that all variable names must start with a lowercase letter. I don't know if there is a workaround, but I'd consider renaming my Java variables to conform to the spec. Best, Aldo On 1

[flexcoders] Java VO.

2005-10-11 Thread Omar Ramos
Hi all,I have a simple VO class in java and have a service that returns a ArrayList of that vo. My question is that when I return this list to flex via RemoteObject Tag (AMF) java or flash seams to put each property of the VO in lowercase. For example if on the Java VO it had a property of Name