Re: [flexcoders] Re: Error: Cannot invoke method when using a VO

2005-04-13 Thread Christoph Guse
PROTECTED] > Sent: Tuesday, April 12, 2005 2:34 PM > To: flexcoders@yahoogroups.com > Subject: Re: [flexcoders] Re: Error: Cannot invoke method when using a VO > > > Hi Peter, > > my web application server is Tomcat 5.5.7, Java Version 1.5.0_02. My > Linux is Su

RE: [flexcoders] Re: Error: Cannot invoke method when using a VO

2005-04-12 Thread Peter Farland
s.com Subject: Re: [flexcoders] Re: Error: Cannot invoke method when using a VO Hi Peter, my web application server is Tomcat 5.5.7, Java Version 1.5.0_02. My Linux is SuSE 9.2. I did everything you described. Here the snippet of my flex-config.xml:

Re: [flexcoders] Re: Error: Cannot invoke method when using a VO

2005-04-12 Thread Christoph Guse
System.out. > > > > > -Original Message- > From: Christoph Guse [mailto:[EMAIL PROTECTED] > Sent: Tuesday, April 12, 2005 12:57 PM > To: flexcoders@yahoogroups.com > Subject: Re: [flexcoders] Re: Error: Cannot invoke method when using a VO > > > Hi Peter,

RE: [flexcoders] Re: Error: Cannot invoke method when using a VO

2005-04-12 Thread Peter Farland
s@yahoogroups.com Subject: Re: [flexcoders] Re: Error: Cannot invoke method when using a VO Hi Peter, thanks for your answer. I'm using Flex on Linux, how is the approach to get a console output? Christoph Peter Farland wrote: > The NetConnection Debugger is an old FP6 movie that

Re: [flexcoders] Re: Error: Cannot invoke method when using a VO

2005-04-12 Thread Christoph Guse
not the test "obj === null" as the > strict equality operator does not attempt to cast operands before > comparison. > > > -Original Message- > From: Christoph Guse [mailto:[EMAIL PROTECTED] > Sent: Tuesday, April 12, 2005 4:44 AM > To: flexcoders@yahoogroups

RE: [flexcoders] Re: Error: Cannot invoke method when using a VO

2005-04-12 Thread Peter Farland
4:44 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Error: Cannot invoke method when using a VO Hi Dan, hi cazzaran, yes, I have such a line in every of my ValueObjects. But I had errors in the POJO and in the Object.registerClass line. I didn't use the fully qualified n

Re: [flexcoders] Re: Error: Cannot invoke method when using a VO

2005-04-12 Thread Christoph Guse
Hi Dan, hi cazzaran, yes, I have such a line in every of my ValueObjects. But I had errors in the POJO and in the Object.registerClass line. I didn't use the fully qualified name of the Java class as first and the fully qualified name of the ActionScript class as second argument. Without these

Re: [flexcoders] Re: Error: Cannot invoke method when using a VO

2005-04-11 Thread Dan Tropp
class vo.ApplicantVO implements ValueObject {     public static var registered:Boolean =         Object.registerClass( "vo.ApplicantVO", ApplicantVO );              Do you have a line like this in your AS class?  ... } If you don't register t

[flexcoders] Re: Error: Cannot invoke method when using a VO

2005-04-11 Thread cazzaran
Christoph, Actually, I haven't solved it yet. It trying different things, which mostly amount to working *around* the problem (like reducing my object graph depth, etc). I agree, I like using deep object graphs to, but can't seem to get it to work. -Josh --- In flexcoders@yahoogroups.com, Chri

Re: [flexcoders] Re: Error: Cannot invoke method when using a VO

2005-04-11 Thread Christoph Guse
Hi cazzaran, how did you solve your problem? I'm interested in a solution, because I have a very similar problem. In my case I have an object (OgoJobVO) in which is another object (OgoAccountVO) in which is another object (OgoPersonVO). When I get the Job-Object from the Server, everything wor

[flexcoders] Re: Error: Cannot invoke method when using a VO

2005-03-30 Thread cazzaran
Found it... but it doesn't make total sense... here's the response trace: Info: Serializing response (Message #0 targetURI=/1/onStatus, responseURI=null) (Object #0) level = "error" code = "Server.Processing" type = "" rootcause = (Object #1) level = "error

RE: [flexcoders] Re: Error: Cannot invoke method when using a VO

2005-03-30 Thread Peter Farland
Sent: Wednesday, March 30, 2005 5:38 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Error: Cannot invoke method when using a VO I've set my flex logs to debug, but I don't get much in the way of logging from flex. I've also set every trace option to true, but still don

[flexcoders] Re: Error: Cannot invoke method when using a VO

2005-03-30 Thread cazzaran
I've set my flex logs to debug, but I don't get much in the way of logging from flex. I've also set every trace option to true, but still don't get much from it. I'm curious, do my server and client sided classes have to have identical sets of members (or matching getters and setters)? I ask th

RE: [flexcoders] Re: Error: Cannot invoke method when using a VO

2005-03-30 Thread Peter Farland
Without seeing the AMF trace on the server side, all I can do is suggest simplifying the case step by step and then work up to the problem at hand. Try a Group type that only has flash intrinsic types as properties... then go down another level... etc. Yahoo! Groups Links <*> To visit your gr

[flexcoders] Re: Error: Cannot invoke method when using a VO

2005-03-30 Thread cazzaran
OAP > transport protocol was removed for RemoteObject in Flex 1.5. I'd like to > see all Flex users move away from _remoteClass and rely on > Object.registerClass. > > > -Original Message- > From: cazzaran [mailto:[EMAIL PROTECTED] > Sent: Wednesday, March

RE: [flexcoders] Re: Error: Cannot invoke method when using a VO

2005-03-30 Thread Peter Farland
ay from _remoteClass and rely on Object.registerClass. -Original Message- From: cazzaran [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 30, 2005 3:31 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Error: Cannot invoke method when using a VO WHat's interesting, is

[flexcoders] Re: Error: Cannot invoke method when using a VO

2005-03-30 Thread cazzaran
e want to see whether an AMF Typed Object or untyped Object was > deserialized from your Group param. > > > -----Original Message----- > From: cazzaran [mailto:[EMAIL PROTECTED] > Sent: Wednesday, March 30, 2005 2:12 PM > To: flexcoders@yahoogroups.com > Subject: [flexco

RE: [flexcoders] Re: Error: Cannot invoke method when using a VO

2005-03-30 Thread Peter Farland
March 30, 2005 2:12 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Error: Cannot invoke method when using a VO I turned on remote object debugging, but it seems to make my flexbuilder unresponsive. After a while, builder says that I should abort the script or it will make my machine

[flexcoders] Re: Error: Cannot invoke method when using a VO

2005-03-30 Thread cazzaran
tool that has a few issues > - mainly that it doesn't show objects typed with Object.registerClass). > > > > > -Original Message- > From: cazzaran [mailto:[EMAIL PROTECTED] > Sent: Monday, March 28, 2005 4:58 PM > To: flexcoders@

RE: [flexcoders] Re: Error: Cannot invoke method when using a VO

2005-03-29 Thread Dimitrios Gianninas
);   Jimmy Gianninas Software Developer - Optimal Payments Inc.   From: cazzaran [mailto:[EMAIL PROTECTED] Sent: Monday, March 28, 2005 7:58 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Re: Error: Cannot invoke method when using a VO Peter,Here'

Re: [flexcoders] Re: Error: Cannot invoke method when using a VO

2005-03-28 Thread Igor Costa
ss). > > > -Original Message- > From: cazzaran [mailto:[EMAIL PROTECTED] > Sent: Monday, March 28, 2005 4:58 PM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Re: Error: Cannot invoke method when using a VO > > Peter, > > Here's my whi

RE: [flexcoders] Re: Error: Cannot invoke method when using a VO

2005-03-28 Thread Peter Farland
with Object.registerClass). -Original Message- From: cazzaran [mailto:[EMAIL PROTECTED] Sent: Monday, March 28, 2005 4:58 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Error: Cannot invoke method when using a VO Peter, Here's my

[flexcoders] Re: Error: Cannot invoke method when using a VO

2005-03-28 Thread cazzaran
ut I know it > was in Flex 1.0. > > -Original Message- > From: cazzaran [mailto:[EMAIL PROTECTED] > Sent: Monday, March 28, 2005 4:19 PM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Re: Error: Cannot invoke method when using a VO > > >

RE: [flexcoders] Re: Error: Cannot invoke method when using a VO

2005-03-28 Thread Peter Farland
] Sent: Monday, March 28, 2005 4:19 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Error: Cannot invoke method when using a VO Peter, It does... -Josh --- In flexcoders@yahoogroups.com, "Peter Farland" <[EMAIL PROTECTED]> wrote: > Does the Java version of Group ha

[flexcoders] Re: Error: Cannot invoke method when using a VO

2005-03-28 Thread cazzaran
Peter, It does... -Josh --- In flexcoders@yahoogroups.com, "Peter Farland" <[EMAIL PROTECTED]> wrote: > Does the Java version of Group have a public no args constructor? > > > -Original Message- > From: cazzaran [mailto:[EMAIL PROTECTED] > Sent: Monday, March 28, 2005 3:50 PM > To: