My web service method returns an object Pagethat includes the following methods:
public Map<String,String[]> getParameters() { ... }
public setParameters(Map<String,String[]> parameters) { ... }
On the client side, the created JAX-WS method getParameters()returns an object Parametersthat provides the method getEntry()that returns List<Entry>. However, this list is always empty. What is the reason?
source
share