XML over HTTP v1.1.7
The XML/HTTP interface is modelled on the existing PluginInterface (look at the Azureus source, org.gudy.azureus2.plugins...) with a simple remoting layer on top (the remote layer is basically in org.gudy2.azureus.pluginsimpl.remote - the remote equivalents of the local plugin interfaces are prefixed with "RP" - e.g. RPPluginInterface is the remote version of PluginInterface). In the remote code you can see what methods are actually available remotely - either the RP<X> object doesn't exist (in which case the entire interface isn't supported) or methods within it invoke "notSupported".
The XML serialiser simply takes the RP
A client gets a "connection" to Azureus when it initially makes a request to
it. This
connection identifier must be used in all subsequent calls.
Each request must have a unique "request id".
The request message has a METHOD tag (indicating what method to call), an
OBJECT tag (for
all calls apart from the first one) and optional PARAMS.
The response is either the result of the call (for example, a further
object) or an
Arrays are passed as ENTRY tags with an "index" attribute.
Requests must be HTTP POSTed in the content. The target for the post is that of the host:port
of the plugin plus "/process.cgi". For example, a loopback connection can be addressed via "http://127.0.0.1:6884/process.cgi".
Its a very simple interface I'm afraid, knocked up in a couple of hours, and
it shows :)
Here's an example:
good luck
Paul
Here's an example of a request with parameters:
1.1.6: Support for InetAddress serialisation.
1.1.5: Added 'flags' field to Download. Requires 4209_B24+
1.1.4: Support for Keep-Alive connections and remote search optimisations.
1.1.3: Remove debug.
1.1.2: Fixes to work with 3041_B2+.
1.1: Moved files out of Azureus core into the plugin.
1.0: GTS irc plugin needs it.