cvs commit: xml-rpc .cvsignore

2002-08-15 Thread dlr
dlr 2002/08/15 09:13:03 Modified:..cvsignore Log: Adjusted build.xml to match Maven output as closely as possible; bin directory removed. Revision ChangesPath 1.6 +0 -1 xml-rpc/.cvsignore Index: .cvsignore =

cvs commit: xml-rpc .cvsignore

2002-08-15 Thread dlr
dlr 2002/08/15 09:15:33 Modified:..cvsignore Log: Adjusted build.xml to match Maven output as closely as possible; docs directory removed (it's under target/ now). Revision ChangesPath 1.7 +0 -1 xml-rpc/.cvsignore Index: .cvsignore ===

Re: WebServer.java

2002-08-15 Thread Rob Walker
> I'd rather have the stability of a full-blown, maintained servlet > engine; XML-RPC's spec makes perfomant implementations difficult, > anyhow. We avoid doing performance-critical operations over XML-RPC. In > the future, we will be using more and more Spread > , perhap

cvs commit: xml-rpc/src/java/org/apache/xmlrpc SystemHandler.java

2002-08-15 Thread dlr
dlr 2002/08/15 09:26:52 Modified:src/java/org/apache/xmlrpc SystemHandler.java Log: Removed explicit import of classes which are in the same package as us. Revision ChangesPath 1.2 +0 -1 xml-rpc/src/java/org/apache/xmlrpc/SystemHandler.java Index: S

cvs commit: xml-rpc build.xml build.properties

2002-08-15 Thread dlr
dlr 2002/08/15 09:30:05 Modified:.build.xml build.properties Log: Adjusted build.xml and build.properties to match Maven output as closely as possible. Revision ChangesPath 1.16 +17 -28xml-rpc/build.xml Index: build.xml ===

cvs commit: xml-rpc/src/java/org/apache/xmlrpc XmlRpc.java

2002-08-15 Thread dlr
dlr 2002/08/15 11:51:53 Modified:src/java/org/apache/xmlrpc XmlRpc.java Log: Clean up of debugging messages. Revision ChangesPath 1.28 +6 -7 xml-rpc/src/java/org/apache/xmlrpc/XmlRpc.java Index: XmlRpc.java ===

cvs commit: xml-rpc/src/java/org/apache/xmlrpc XmlRpcServer.java

2002-08-15 Thread dlr
dlr 2002/08/15 13:03:43 Modified:src/java/org/apache/xmlrpc XmlRpcServer.java Log: Worker.executeInternal(): Clarified debug message, broke long line, and re-add block removed during Adam's refactoring. Invoker.execute(): If the method name contains dots, use only the las

cvs commit: xml-rpc/xdocs changes.xml

2002-08-15 Thread dlr
dlr 2002/08/15 13:09:38 Modified:xdocschanges.xml Log: Recent changes. Revision ChangesPath 1.9 +65 -2 xml-rpc/xdocs/changes.xml Index: changes.xml === RCS file: /home/cvs/xml-rpc/

cvs commit: xml-rpc/xdocs changes.xml

2002-08-15 Thread dlr
dlr 2002/08/15 13:09:56 Modified:xdocschanges.xml Log: Corrected date on today's changes. Revision ChangesPath 1.10 +1 -1 xml-rpc/xdocs/changes.xml Index: changes.xml === RCS file:

cvs commit: xml-rpc/src/java/org/apache/xmlrpc WebServer.java

2002-08-15 Thread dlr
dlr 2002/08/15 13:30:21 Modified:src/java/org/apache/xmlrpc WebServer.java Log: o port is now private instead of protected. Both of these attributes are accessible via the protected serverSocket field, and are simply used as inputs to setup the serverSocket. o paranoid

cvs commit: xml-rpc/src/java/org/apache/xmlrpc/secure SecureWebServer.java

2002-08-15 Thread dlr
dlr 2002/08/15 13:31:25 Modified:src/java/org/apache/xmlrpc/secure SecureWebServer.java Log: Updated API for changes to WebServer class in CVS revision 1.15 (post XML-RPC release 1.1). Revision ChangesPath 1.4 +14 -35xml-rpc/src/java/org/apache/xmlrpc/sec

cvs commit: xml-rpc/src/test/org/apache/xmlrpc ClientServerRpcTest.java

2002-08-15 Thread dlr
dlr 2002/08/15 13:31:57 Modified:src/test/org/apache/xmlrpc ClientServerRpcTest.java Log: Updated API for changes to WebServer class in CVS revision 1.15 (post XML-RPC release 1.1). Revision ChangesPath 1.10 +51 -43xml-rpc/src/test/org/apache/xmlrpc/Client

cvs commit: xml-rpc/src/java/org/apache/xmlrpc XmlRpcServer.java

2002-08-15 Thread dlr
dlr 2002/08/15 13:37:11 Modified:src/java/org/apache/xmlrpc XmlRpcServer.java Log: Invoker.execute(): Sanity check to prevent indexing off the end of the XML-RPC method name. Revision ChangesPath 1.31 +2 -2 xml-rpc/src/java/org/apache/xmlrpc/XmlRpcServer.

cvs commit: xml-rpc/src/test/org/apache/xmlrpc ClientServerRpcTest.java

2002-08-15 Thread dlr
dlr 2002/08/15 13:39:26 Modified:src/test/org/apache/xmlrpc ClientServerRpcTest.java Log: testRpc(): Removed debugging trace. Revision ChangesPath 1.11 +1 -2 xml-rpc/src/test/org/apache/xmlrpc/ClientServerRpcTest.java Index: ClientServerRpcTest.java

Re: patch to correct improper handling of HTTP Basic authentication

2002-08-15 Thread Adam Megacz
Uh, is this going to get committed? The Zope/Python XML-RPC people are fixing a similar defect in their XML-RPC implementation; it would be good if Apache followed suit. http://lists.zope.org/pipermail/zope-dev/2002-August/017126.html http://lists.zope.org/pipermail/zope-dev/2002-August/0

Re: WebServer.java

2002-08-15 Thread Adam Megacz
"Rob Walker" <[EMAIL PROTECTED]> writes: > Once we got keep alive figured, Have you had any success with XML-RPC pipelining? XWT just got support for it a few weeks ago, but I haven't had a chance to see if it really improves real-world performance. http://lists.xwt.org/pipermail/announce/2

Re: WebServer.java

2002-08-15 Thread Rob Walker
> Have you had any success with XML-RPC pipelining? XWT just got support > for it a few weeks ago, but I haven't had a chance to see if it really > improves real-world performance. > > http://lists.xwt.org/pipermail/announce/2002-August/19.html No, I hadn't - thanks for the tip though, I