You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@turbine.apache.org by dl...@apache.org on 2002/10/10 04:36:57 UTC

cvs commit: jakarta-turbine-3/conf/master Fulcrum.master

dlr         2002/10/09 19:36:57

  Modified:    conf/master Fulcrum.master
  Log:
  Enhancements to support Apache XML-RPC versions 1.2 alpha 1 and 2.
  
  TurbineXmlRpcService.java:
  
  o Added an isModernVersion flag to support the more explicit start up
  semantics present versions > 1.1.
  
  o Made instance fields protected for easy sub-classing.
  
  o Added an address field of type InetAddress to support binding to
  specific network interfaces.
  
  o Acquired the configuration for the address field in init() and used
  the appropriate ctor.
  
  o Determined whether modern version by querying class loader for new
  XML-RPC class, and implemented explicit call to WebServer.start() for
  modern versions.
  
  o In shutdown(), only employ old "connect-to-close" work-around for
  old versions.  I've fixed this tricky shutdown problem in CVS.
  
  Fulcrum.master:
  
  o Added new services.XmlRpcService.address property, defaulted to
  127.0.0.1 (which Java's InetAddress.getByName(String) happily resolves
  on Linux).
  
  o Clarified comment and used more realistic port for the
  services.XmlRpcService.port property.
  
  Revision  Changes    Path
  1.13      +11 -4     jakarta-turbine-3/conf/master/Fulcrum.master
  
  Index: Fulcrum.master
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-3/conf/master/Fulcrum.master,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -u -r1.12 -r1.13
  --- Fulcrum.master	3 May 2002 17:33:05 -0000	1.12
  +++ Fulcrum.master	10 Oct 2002 02:36:57 -0000	1.13
  @@ -348,12 +348,19 @@
   
   services.XmlRpcService.parser=org.apache.xerces.parsers.SAXParser
   
  -# This property specifies which port the server part of the XmlRpc
  -# should listen, if it is active.
  +# This property specifies which network interface the server part of
  +# XmlRpc should bind to (if it is active).
   #
  -# Default: 12345
  +# Default: 127.0.0.1
   
  -services.XmlRpcService.port=12345
  +services.XmlRpcService.address=127.0.0.1
  +
  +# This property specifies which TCP port the web server part of
  +# XmlRpc should listen on (if it is active).
  +#
  +# Default: 8081
  +
  +services.XmlRpcService.port=8081
   
   # If any classes are specified here, the Service will create an
   # instance of them here and start up a listener on the specified
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>