Package org.vnetcon.xml.ws.servlet.dao

Examples of org.vnetcon.xml.ws.servlet.dao.WebMethod


   

    while (i < publicMethods.length) {
      Method m = publicMethods[i];
      if (m.toString().startsWith("public ")) {
        WebMethod webMethod = new WebMethod(this.wsClass, m);
        webMethods.add(webMethod);
       
//        String retType = webMethod.getReturnType().getSchemaElement();
//        System.out.println("method: " + m.toString());
//        System.out.println("  return: " + retType);
View Full Code Here


   
    methods = wsClass.getDeclaredMethods();
    while (i < methods.length) {
      Method m = methods[i];
      if (m.toString().startsWith("public ")) {
        WebMethod wm = new WebMethod(this.wsClass, m);
        webMethods.add(wm);
        hashWebMethods.put(wm.getMethodName(), wm);
      }
      i++;
    }
  }
View Full Code Here

    Envelope env = this.xmlToEnvelope(this.soapRequest);
    Body body = env.getBody();
    String bodyXml = this.bodyToXML(body);
    SoapMethodCall smc = this.parseSoapBody(bodyXml);
    String methodRequest = smc.getMethodName();
    WebMethod webMethod = this.hashWebMethods.get(methodRequest);
    strRet = this.doNativeMethodCall(webMethod, smc);
    env = null;
    smc = null;
    Runtime.getRuntime().gc();
    return strRet;
View Full Code Here

TOP

Related Classes of org.vnetcon.xml.ws.servlet.dao.WebMethod

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.