XML RPC

Description
This bundle provides an XML/RPC Service that bundles within the OSGi environment can use to register their XML/RPC handlers. The bundle provides a "servlet bridge" from the standard OSGi HTTP Service and the Apache XML/RPC implementation, which is included as an embedded jar within the bundle.

Contributor(s)
SoftSell Business Systems, as part of their OpenOSGi Project

License
Common Public License

Services
Name(s)
com.softsell.open.osgi.xmlrpc.XmlRpcService
Relevant interface(s)
// The handler instance is any normal XML/RPC handler object.

public interface XmlRpcService
{
public void addHandler(String name, Object handler);
public void removeHandler(String name);
}

Properties
None

Requirements
javax.servlet, org.osgi.service.http, org.osgi.util.tracker