spyhunter99 [
https://community.jboss.org/people/spyhunter99] created the discussion
"Re: How can I create Java web service (jax-ws) with array or List as a
parameter"
To view the discussion, visit:
https://community.jboss.org/message/716249#716249
--------------------------------------------------------------
I'd suggest making it a wrapped class. So...
class listcontainer
{
public List<String> command;
public String ID;
}
then your web service
public String invoke(listcontainer request)
or something like that. I'd suggest always writting WSDL first. It gives you the best
flexiblity and control for defining this stuff. Assuming your using SOAP, Document
wrapped Literal is my preference for interoperability
--------------------------------------------------------------
Reply to this message by going to Community
[
https://community.jboss.org/message/716249#716249]
Start a new discussion in JBoss Web Services at Community
[
https://community.jboss.org/choose-container!input.jspa?contentType=1&...]