[ 
https://issues.apache.org/jira/browse/AXIS2-1397?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Davanum Srinivas updated AXIS2-1397:
------------------------------------

    Assignee: Thilina Gunarathne

> MTOM attachment Streaming -problem when deal with multiple attachment- got NPE
> ------------------------------------------------------------------------------
>
>                 Key: AXIS2-1397
>                 URL: https://issues.apache.org/jira/browse/AXIS2-1397
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: om
>            Reporter: indika priyantha kumara
>         Assigned To: Thilina Gunarathne
>
>  I have got NPE when iterating multiple attachment using API method 
> isReadyToGetNextStream() and 
> getNextStream()
> java.lang.NullPointerException
>       at 
> org.apache.axiom.attachments.MultipartAttachmentStreams.getNextStream(MultipartAttachmentStreams.java:63)
> It is seem as even stream comes to end ,the boolean value of 
> isReadyToGetNextStream() is true;
> Java Code 
>  Attachments attachments = null;
>         if (this.opcts != null) {
>             attachments = (Attachments) 
> this.opcts.getMessageContext(WSDLConstants.MESSAGE_LABEL_IN_VALUE).getProperty(MTOMConstants.ATTACHMENTS);
>         }
>         else {
>             throw new AxisFault("Message context not set/Attachments not 
> set");
>         }
>         // Get image data
>         IncomingAttachmentStreams streams = 
> attachments.getIncomingAttachmentStreams();
>         int i = 0;
>         while (streams.isReadyToGetNextStream()) {
>             
>                 OMElement file = fac.createOMElement("file" + (i + 1), null);
>                 IncomingAttachmentInputStream stream = 
> streams.getNextStream();
>                 if(stream !=null) {
>                 byte[] data = IOUtils.getStreamAsByteArray(stream);
>                 //setting response
>                 OMText omText = fac.createOMText(new DataHandler(new 
> ByteArrayDataSource(data)), true);
>                 file.addChild(omText);
>                 elem.addChild(file);
>                 }
>             }
>            
>         }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to