Nearly all of the web service examples show on how to pass single input parameters as
"string" or "int" to a web service.
But what if I want to pass a whole Java class ValueObject like e.g.
public class MyValueObj {
public String name;
public int value;
protected boolean result; }
Is there somewhere an example (client and webservice implementation)
of passing such more complex ValueObjects to a web service?
Peter
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4185530#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...