1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
# The following inhibits R CMD check from complaining about not
# being able to load the namespace based on the specified dependencies.
#import(methods)
importFrom(methods, show)
import(RCurl)
import(XML)
export(xml.rpc)
exportClass("XMLRPCServer")
export("XMLRPCServer")
exportMethods("$")
export(rpc.serialize)
# rpc.serialize - convert to XML-RPC from R
# covertToR, xmlRPCToR - convert response from XML-RPC method call
# createBody - for creating the body of the XML-RPC request
|