Hi,
I have stupid question.

i have this code in flex....

var o:Object = new Object();
o.email = "[EMAIL PROTECTED]";
o.password = "pass";
nc.call("loginMethod", null, o);

On server side i have this method in Application.java:

public void loginMethod(Object o)
{
        
}


and class User.java:

class User()
{
        String email;
        String password;
.
.
.
getters/setters
.
.
.
}

How can I get variables from flex to class User?? I am Java newbie
H.

_______________________________________________
Red5 mailing list
[email protected]
http://osflash.org/mailman/listinfo/red5_osflash.org

Reply via email to