Hi Guys,
I want to contribute to the development of the Axis as a developer.
Could you guys tell me how do I go about this?
Regards
Vaidya 

-----Original Message-----
From: Rick Rineholt [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, March 19, 2002 8:01 AM
To: [EMAIL PROTECTED]
Subject: Beta Fix candidate on Call.java


Need to get this fix in to beta 3.  Without it dynamic calls seem to be
broken. If parms are added
and the WSDL has no return type specified this needs to be set to
XMLType.AXIS_VOID.  Not null
since this would throw a JAXRPC exception.

*** 955,961 ****
          if ( output  != null ) message = output.getMessage();
          if ( message != null ) parts   = message.getOrderedParts(null);

!         this.setReturnType( null );
          if ( parts != null ) {
              for( int i = 0 ;i < parts.size() ; i++ ) {
                  Part part  = (Part) parts.get( i );
--- 955,962 ----
          if ( output  != null ) message = output.getMessage();
          if ( message != null ) parts   = message.getOrderedParts(null);

!         if(null != paramTypes) // attachments may have no parameters.
!           this.setReturnType( XMLType.AXIS_VOID );
          if ( parts != null ) {
              for( int i = 0 ;i < parts.size() ; i++ ) {
                  Part part  = (Part) parts.get( i );


                  Rick Rineholt
                  "The truth is out there...  All you need is a better
                  search engine!"

                  [EMAIL PROTECTED]


"THIS E-MAIL MESSAGE ALONG WITH ANY ATTACHMENTS IS INTENDED ONLY FOR THE
ADDRESSEE and may contain confidential and privileged information.
If the reader of this message is not the intended recipient,
you are notified that any dissemination, distribution or copy of this 
communication is strictly Prohibited. 
If you have received this message by error, please notify us 
immediately, return the original mail to the sender and delete the 
message from your system."

Reply via email to