> I will take your sample and attempt to reproduce it here. Unfortunately (for > debugging this) I am using Commons VFS, which in turn uses HttpClient, so > maybe it is some usage/re-usage/configuration sequence that causes this. I > will see what I can do to reproduce.
I found the settings that VFS was using, and tried to emulate. It seems to need the MultiThreadedHttpConnectionManager plus HEAD to crash. HttpClient client = new HttpClient(new MultiThreadedHttpConnectionManager()); HeadMethod head = new HeadMethod(url); client.executeMethod(head); I updated the bug database (I believe) so this is posted there. BTW: I don't mind bugs, in any complex software there will be bugs, but I feel it is only "polite" to have (1) test projects on gump -- that run your unit tests [so I can 'depend upon them'] (2) transition projects on gump when you are doing a big re-work, so you control when folks get exposed to the new work. Folks like VFS just don't tinker w/ their code that often, and so if this had been (or is) something inside their usage it could fester for a while. Since you chose to move them to CVS HEAD (for Gump) and since they don't run their unit tests (either) then my projects fail in Gump. Just a request... regards, Adam --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
