Registry / networking / xmlrpc-common

xmlrpc-common

JSON →
library3.1.3javamavenunverified

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

<dependency> <groupId>org.apache.xmlrpc</groupId> <artifactId>xmlrpc-common</artifactId> <version>3.1.3</version> </dependency>
INSTALL
IMPORT
SIG · XMLRPC-COMMON
X
xmlrpc-common
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; import java.net.URL; public class Quickstart { public static void main(String[] args) throws Exception { XmlRpcClientConfigImpl config = new XmlRpcClientConfigImpl(); config.setServerURL(new URL("http://localhost:8080/xmlrpc")); XmlRpcClient client = new XmlRpcClient(); client.setConfig(config); Object result = client.execute("methodName", new Object[]{"param"}); System.out.println("Result: " + 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
28 hits · last 30 days
node
22
Amazon
1
OpenAI (training)
1
Resources
xmlrpc-common — mvn dependency:get xmlrpc-common · libregistry