1 10 11 package org.mule.providers.soap.axis.extensions; 12 13 import org.apache.axis.ConfigurationException; 14 import org.apache.axis.configuration.FileProvider; 15 import org.apache.axis.handlers.soap.SOAPService; 16 17 import javax.xml.namespace.QName ; 18 19 26 public class WSDDFileProvider extends FileProvider 27 { 28 32 public WSDDFileProvider(String filename) 33 { 34 super(filename); 35 } 36 37 40 public WSDDFileProvider(String basepath, String filename) throws ConfigurationException 41 { 42 super(basepath, filename); 43 } 44 45 52 public SOAPService getService(QName qname) throws ConfigurationException 53 { 54 return getDeployment().getService(qname); 55 } 56 } 57 | Popular Tags |