Package de.timroes.axmlrpc.xmlcreator

Examples of de.timroes.axmlrpc.xmlcreator.SimpleXMLCreator


   *     be build without errors.
   * @see XMLRPCClient
   */
  public String getXML() throws XMLRPCException {

    SimpleXMLCreator creator = new SimpleXMLCreator();

    XmlElement methodCall = new XmlElement(XMLRPCClient.METHOD_CALL);
    creator.setRootElement(methodCall);

    XmlElement methodName = new XmlElement(XMLRPCClient.METHOD_NAME);
    methodName.setContent(method);
    methodCall.addChildren(methodName);

    if(params != null && params.length > 0) {
      XmlElement params = new XmlElement(XMLRPCClient.PARAMS);
      methodCall.addChildren(params);

      for(Object o : this.params) {
        params.addChildren(getXMLParam(o));
      }
    }

    return creator.toString();
  }
View Full Code Here

TOP

Related Classes of de.timroes.axmlrpc.xmlcreator.SimpleXMLCreator

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.