i think it would be better to use object methods just for a number of reasons. namely synchronization issues, method overriding issues (you can't override static methods) etc. and it's neither POJO nor EJB way to make static methods as endpoints for remote calls. you'd better wrap them up into object methods.
Andrii Olefirenko --- In [email protected], "Kevin" <[EMAIL PROTECTED]> wrote: > > I had a programmer write a bunch of RemoteObjects for me in Java and I noticed that he > wrote everything as a static method. It seems to make sense since most of this things are > simple utilities, however, I also know that Flex is going to instantiate a class regardless of > whether all it's methods are static. Is there anything wrong with using static methods in > remote object calls? > > - Kevin >

