I have a similar problem when I used the beta version of 1.2. Try using 1.1.
On 07/10/2003 10:12:16 Rufus Buschart wrote:
>Hi,
>
>i wrote a small example application, which is supposed to start a
>xml-rpc server:
>
>import org.apache.xmlrpc.WebServer;;
>
>public class NoteServer {
>
>public static void main (String args[]) {
>System.out.println("Start NoteServer");
>try {
>WebServer xmlrpcServer = new WebServer (9117);
>System.out.println("Webserver started");
>xmlrpcServer.addHandler ("notes", new NoteHandler ());
>System.out.println("Handle registered");
>} catch (Exception e) {
>System.out.println ("Error starting XML-Server" + e);
>}
>System.out.println("NoteServer started");
>}
>
>}
>
>But what it does is:
>
>[EMAIL PROTECTED] ~/home/Webservices/NoteHandler
>$ java NoteServer
>Start NoteServer
>Webserver started
>Handle registered
>NoteServer started
>
>[EMAIL PROTECTED] ~/home/Webservices/NoteHandler
>$
>
>Well and that's it. No error message, nothing. It simply quits. Does
>somebody of you have any idea?
>
>Thanks,
>
>Rufus
- xmlrpc.WebServer stopps without error Rufus Buschart
- RE: xmlrpc.WebServer stopps without error developer
- Re: xmlrpc.WebServer stopps without error Rufus Buschart
- RE: xmlrpc.WebServer stopps without error Mauro Canal
- Annie . Ly
