You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by bu...@apache.org on 2003/03/26 18:29:51 UTC

DO NOT REPLY [Bug 18242] - Document Literal WSDL Processing - maxOccurs="unbounded"

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18242>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18242

Document Literal WSDL Processing - maxOccurs="unbounded"

dims@yahoo.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |INVALID



------- Additional Comments From dims@yahoo.com  2003-03-26 17:29 -------
Since maxOccurs is unbounded...WSDL2Java does not know how many to allocate. So
you have to do this in your code.

      CmdResponse resp = new CmdResponse();
      resp.setCmdStatus("2");
      resp.setMessage(new samples.pubsub.Message[2]);

Thanks,
dims