Package org.apache.axis.wsdl.wsdl2ws.rpc

Examples of org.apache.axis.wsdl.wsdl2ws.rpc.RPCWebServiceGenarator


* @author Dimuthu Leelarathne (muthulee@opensource.lk)
*/
public class WebServiceGenaratorFactory {
  public static WebServiceGenarator createWebServiceGenarator(WebServiceContext wscontext){
    if(wscontext.getWrapInfo().getWrapperStyle() == WrapperConstants.STYLE_RPC)
      return new   RPCWebServiceGenarator(wscontext);                     
    return null;
  }
View Full Code Here


* @author Dimuthu Leelarathne (muthulee@opensource.lk)
*/
public class WebServiceGenaratorFactory {
  public static WebServiceGenarator createWebServiceGenarator(WebServiceContext wscontext){
    if(wscontext.getWrapInfo().getWrapperStyle() == WrapperConstants.STYLE_RPC)
      return new   RPCWebServiceGenarator(wscontext)
    else if(wscontext.getWrapInfo().getWrapperStyle() == WrapperConstants.STYLE_DOCUMENT)                   
      return new   DocLitWebServiceGenarator(wscontext);
    else 
      return null;
  }
View Full Code Here

TOP

Related Classes of org.apache.axis.wsdl.wsdl2ws.rpc.RPCWebServiceGenarator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.