1 10 11 package org.mule.providers.soap.xfire.wsdl; 12 13 import org.mule.providers.soap.xfire.XFireConnector; 14 15 18 public class XFireWsdlConnector extends XFireConnector 19 { 20 21 protected void registerProtocols() 22 { 23 registerSupportedProtocol("http"); 24 registerSupportedProtocol("https"); 25 26 registerSupportedProtocolWithotPrefix("wsdl:http"); 29 registerSupportedProtocolWithotPrefix("wsdl:https"); 30 } 31 32 public String getProtocol() 33 { 34 return "wsdl-xfire"; 35 } 36 } 37 | Popular Tags |