AttachmentPart removeAllMimeHeaders() Method



Description

The Javax.xml.soap.AttachmentPart.removeAllMimeHeaders() method removes all the MIME header entries.

Declaration

Following is the declaration for javax.xml.soap.AttachmentPart.removeAllMimeHeaders() method

public abstract void removeAllMimeHeaders()

Parameters

NA

Return Value

This method does not return a value.

Exception

NA

Example

The following example shows the usage of javax.xml.soap.AttachmentPart.removeAllMimeHeaders() method.

package com.tutorialspoint;

import com.sun.xml.internal.messaging.saaj.util.Base64;
import com.sun.xml.internal.messaging.saaj.util.ByteInputStream;
import java.io.InputStream;
import java.util.Iterator;
import javax.activation.DataHandler;
import javax.xml.soap.*;

public class AttachmentPartDemo {

   public static void main(String[] args) {
      try {

         // create a new SOAPMessage
         SOAPMessage message = MessageFactory.newInstance().createMessage();

         // create a string as a new attachment 
         String attachment = "This is an attachment";

         // get the data handler and assign the attachment
         DataHandler handler = new DataHandler(attachment, "HandlerHeader");

         // create the attachment part
         AttachmentPart attachPart = message.createAttachmentPart(handler);

         // add another header
         attachPart.addMimeHeader("Header", "value");

         // remove all MIME headers
         attachPart.removeAllMimeHeaders();
         System.out.println("All MIMEHeaders have been removed.");
         
      } catch (Exception ex) {
         ex.printStackTrace();
      }
   }
}

If we compile the code and execute it, this will produce the following result −

All MIMEHeaders have been removed.
javax_xml_soap_attachmentpart.htm
Advertisements