Re: aserve and xmlrpc

David J Cooper Jr <[email protected]> Thu, 22 Aug 2002 09:00:23 -0700
Newsgroups gmane.lisp.open-source.franz
Message-ID <[email protected]>
Hello Tyler,

Try specifying :new as the value of the :server keyword argument to
net.aserve:start, as follows:

   (defparameter *xmlserver* nil)

     ...
    
   (net.aserve:start :port 9000) ;; start the default server as net.aserve:*wserver*

   (setq *xmlserver* (net.aserve:start :server :new :port 9001)) ;; start your xmlrpc server


Now you should specify the :server as net.aserve:*wserver* or
*xmlserver* in any of your publish commands, unless you want those
URLs to end up being available on both servers.


 -dave