1 /* 2 * JBoss, the OpenSource EJB server 3 * 4 * Distributable under LGPL license. 5 * See terms of license at gnu.org. 6 */ 7 package org.jboss.webservice.soap; 8 9 import org.jboss.axis.client.Call; 10 import org.jboss.webservice.client.CallImpl; 11 12 import java.net.MalformedURLException; 13 14 /** 15 * A factory for creating SOAPConnection objects. Implementation of this class 16 * is optional. If SOAPConnectionFactory.newInstance() throws an 17 * UnsupportedOperationException then the implementation does not support the 18 * SAAJ communication infrastructure. Otherwise SOAPConnection objects can be 19 * created by calling createConnection() on the newly created 20 * SOAPConnectionFactory object. 21 * 22 * @author Scott.Stark@jboss.org 23 * @version $Revision: 1.3.4.1 $ 24 */ 25 public class SOAPConnectionImpl extends org.jboss.axis.soap.SOAPConnectionImpl 26 { 27 28 protected Call createCall(Object endpoint) throws MalformedURLException 29 { 30 return new CallImpl(endpoint); 31 } 32 } 33