vote up 0 vote down star

My web service method returns a Page object which includes the following methods:

public Map<String,String[]> getParameters() { ... }
public setParameters(Map<String,String[]> parameters) { ... }

On the client side, the JAX-WS generated getParameters() method returns a Parameters object which provides a getEntry() method that returns a List<Entry>. However, this list is always empty. What is the cause?

flag

58% accept rate

1 Answer

vote up 1 vote down check

You have to use concrete types instead of interfaces in setters and getters:

public HashMap<String,String[]> getParameters() { ... }
public setParameters(HashMap<String,String[]> parameters) { ... }

Then, everything works as expected.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.