Hi guys,
I'd like to start using axis2 as a service engine.
All clients in my structure are javacripts clients, and
the best option could be use REST request and response using JSON
objects?
I'm using pojo objects in this way:
public class User {
private HashMap entries = new HashMap();
public User(){
}
public void Add( User ){
this.entries.put (entry.getName(), entry);
}
public User Info(String name){
return (User) entries.get(name);
}
}
public class User {
private String name = null;
public String getName() {
return name;
}
public void setName(String name) {
this. name = name;
}
}
How can i force json response ?
I have added the tags in axis2.xml file.
regards
Lechu
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]