XML-RPC Sample Client

2008-02-06 Thread jimmy
I am trying to run the Sample Client, not familiar with Maven or Java for that 
matter I am having some difficulties. I am able to 'mvn clean install' the 
entire continuum application from the root and then invoke the webapp and that 
all runs fine.

But how would one invoke the Sample Client for XML-RPC? When trying to run in 
with java on the command line I get the following NoClassDefFoundError. Any 
information would be greatly appreciated. Thank you for your help so far.

Jimmy

[EMAIL 
PROTECTED]:~/projects/continuum/continuum-xmlrpc/continuum-xmlrpc-client/target/classes/org/apache/maven/continuum/xmlrpc/client$
 java SampleClient
Exception in thread main java.lang.NoClassDefFoundError: SampleClient (wrong 
name: org/apache/maven/continuum/xmlrpc/client/SampleClient)
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
at 
java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
at java.net.URLClassLoader.access$000(URLClassLoader.java:56)
at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276)
at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)




XMLRPC Extensions

2008-02-04 Thread jimmy
I am wondering exactly what the XMLRPC Extensions are that you are using
entail?

I am trying to write an XMLRPC Client in Python to connect to Continuum
but it appears that the standard XMLRPC implementation provided by
Python does not work and I am trying to pinpoint the problem

I have been diving into Continuum code trying to figure out how it
differs from a standard XMLRPC implementation.

Right now my best guess is an authentication problem using Python's
XMLRPC library but that is just a guess.

Basically every command I try to execute on my Continuum server I get a
fault error message of 'No such handler: system.listMethods'

Any information or pointers would be beneficial.

Thank You

Jimmy