protected abstract SoapFactory newSOAPFactory(String protocol) Method



Description

The javax.xml.soap.SAAJMetaFactory.newSOAPFactory(String protocol) method creates a MessageFactory object for the given String protocol.

Declaration

Following is the declaration for javax.xml.soap.SAAJMetaFactory.newSOAPFactory(String protocol) method

protected abstract SoapFactory newSOAPFactory(String protocol)

Parameters

protocol − a String indicating the protocol.

Exception

SOAPException − if there is an error in creating the SoapFactory.

Example

The following example shows the usage of javax.xml.soap.SAAJMetaFactory.newSOAPFactory(String protocol) method.

package com.tutorialspoint;

import javax.xml.soap.SOAPFactory;
import javax.xml.soap.SOAPConstants;
import javax.xml.soap.SOAPMessage;

public class SAAJMetaFactoryDemo {
   public static void main(String[] args) {
      try {
    	 //create a default soap factory using SoapFactory implementation of 
		 //SAAJMetaFactory.newSOAPFactory(String protocol)
    	 SOAPFactory messageFactory = SOAPFactory.newInstance(
    			 SOAPConstants.SOAP_1_2_PROTOCOL);
    	  
         // create a new SOAPMessage
         SOAPMessage message = MessageFactory
            .newInstance()
            .createMessage();
         
         message.writeTo(System.out);
         
      } catch (Exception ex) {
         ex.printStackTrace();
      }
   }
}

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

Mime Header Name: Content-Type
Mime Header value: text/xml
Mime Header Name: Encoding
Mime Header value: UTF-8
javax_xml_soap_saajmetafactory.htm
Advertisements