Registry / networking / xmlrpc-client

xmlrpc-client

JSON →
library3.1.3javamavenunverified

Apache XML-RPC is a Java implementation of XML-RPC, a protocol that uses XML over HTTP for remote procedure calls.

<dependency> <groupId>org.apache.xmlrpc</groupId> <artifactId>xmlrpc-client</artifactId> <version>3.1.3</version> </dependency>
INSTALL
IMPORT
SIG · XMLRPC-CLIENT
X
xmlrpc-client
networkingjavav3.1.3
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

XmlRpcClient
✓ org.apache.xmlrpc.client.XmlRpcClient

Creates an XML-RPC client and calls a remote method.

import org.apache.xmlrpc.client.XmlRpcClient; import org.apache.xmlrpc.client.XmlRpcClientConfigImpl; public class Quickstart { public static void main(String[] args) throws Exception { XmlRpcClientConfigImpl config = new XmlRpcClientConfigImpl(); config.setServerURL(new java.net.URL("http://localhost:8080/xmlrpc")); XmlRpcClient client = new XmlRpcClient(); client.setConfig(config); Object result = client.execute("sample.sum", new Object[]{1, 2}); System.out.println(result); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
3.1.3latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
34 hits · last 30 days
node
30
OpenAI (training)
1
Resources
xmlrpc-client — mvn dependency:get xmlrpc-client · libregistry