Re: VOTE: Release Apache XML-RPC 3.1.2 (RC1)

2009-04-21 Thread Don Albertson
Jochen Wiedmann wrote: Please cast your vote: [*] +1 [ ] =0 [ ] -1 - Fix: Eliminated a possible race condition in the ThreadPool. Fixes XMLRPC-162. Thanks to Mark Gertsvolf. - Fix: The ThreadPool could create more threads than configured. Fixes XMLRPC-161. Thanks to Mark Gertsvolf. - Fix: Weak

Re: VOTE: Release Apache XML-RPC 3.1.2 (RC1)

2009-04-21 Thread Henri Gomez
+0, I could only check it via maven artifact (not yet deployed ;( But I'm confident :) 2009/4/20 Jochen Wiedmann : > Hi, > > I'd like to call for a release of Apache XML-RPC, version 3.1.2. This > is a bug fix release with no functional changes, compared to 3.1.1. > See below for changes. The pro

Basic Authentication & perl client

2009-04-21 Thread Daphna Wasserman (dwasserm)
Hi, I'm working on a java based application, where both server and client are written in java (pojos). However, we also have some perl scripts which act as clients; i.e. they send XML-RPC requests to the java server. I've implemented AuthenticationHandler on the server side, and have been trying

Re: Basic Authentication & perl client

2009-04-21 Thread Jochen Wiedmann
On Tue, Apr 21, 2009 at 3:23 PM, Daphna Wasserman (dwasserm) wrote: > I've tried using both LWP::UserAgent's  method credentials() & > HTTP:Headers' method Authorization_Basic(). I'd expect authorization_basic to do the trick. When in doubt, try to use Wireshark, tcpmon, or a similar tool first,

RE: Basic Authentication & perl client

2009-04-21 Thread Daphna Wasserman (dwasserm)
Thanks! $request->authorization_basic('root', 'blabla'); Indeed did it! -Original Message- From: Jochen Wiedmann [mailto:jochen.wiedm...@gmail.com] Sent: Tuesday, April 21, 2009 5:05 PM To: xmlrpc-dev@ws.apache.org Subject: Re: Basic Authentication & perl client On Tue, Apr 21, 2009 a