# spring-rpcxml **Repository Path**: just4it/spring-rpcxml ## Basic Information - **Project Name**: spring-rpcxml - **Description**: Apache XML-RPC 与 Spring MVC4 的结合插件 - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2017-02-09 - **Last Updated**: 2021-09-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #spring-rpcxml # 1.发布: ```xml ``` # 2.调用: ```java XmlRpcClientConfigImpl config = new XmlRpcClientConfigImpl(); config.setServerURL(new URL("http://127.0.0.1:8080/examples-web-spring-rpcxml/remote/remoteservicexml")); config.setEnabledForExtensions(true); config.setConnectionTimeout(60 * 1000); config.setReplyTimeout(60 * 1000); XmlRpcClient client = new XmlRpcClient(); client.setConfig(config); Object result = client.execute("RemoteServiceXml.test", new Object[] { "remoteservicexml" }); System.out.println(result); ```