Hi, I want to expose a webmethod like this:
@WebMethod
public List<CustonBean> test(String output)
{
If(output == "xml")
{
//use XML Provider i.e. output XML
}
Else if(output == "json")
{
//use JSON Provider i.e. output JSON
}
}
I do not want to use @Produces or rely on "Accept" request header.
Any help please ?
