Hello,

Have one question about Java RPC backend for qooxdoo.
I try to explain with a little example.
For example in service I have method

...
public void echo(String a,Bean b){
     return a+b;
}
...

where Bean is org.some.package.Bean

public class Bean{
   int a;
   int b;
  ...
}

and in javascript I pass to this service following
data

[ 'hello', {a:1,b:2}].

Does backend call this method? Notice that I don't define
class hinting 'class':'org.some.package.Bean' in my data.
Do I need to define every time java class explicitly?

Thanks in advance,
Siarhei Barysiuk
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to