Package net.sourceforge.pebble.webservice

Examples of net.sourceforge.pebble.webservice.SearchAPIHandler


      xmlrpc.addHandler("metaWeblog", metaweblogApi);

      PebbleAPIHandler pebbleApi = (PebbleAPIHandler)ctx.getBean("pebbleApiHandler");
      xmlrpc.addHandler("pebble", pebbleApi);

      SearchAPIHandler searchApi = (SearchAPIHandler)ctx.getBean("searchApiHandler");
      xmlrpc.addHandler("search", searchApi);

      byte[] result = xmlrpc.execute(request.getInputStream());
      response.setContentType("text/xml; charset=UTF-8");
      response.setContentLength(result.length);
View Full Code Here

TOP

Related Classes of net.sourceforge.pebble.webservice.SearchAPIHandler

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.