RE: [OS-webwork] ServletDispatcher still broken from refactoring

2003-10-15 Thread Patrick Lightbody
I believe I fixed this in CVS last night. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of BOGAERT Mathias Sent: Tuesday, October 14, 2003 7:17 AM To: '[EMAIL PROTECTED]' Subject: RE: [OS-webwork] ServletDispatcher still broken from refactorin

Re: [OS-webwork] ServletDispatcher still broken from refactoring

2003-10-14 Thread Francisco Hernandez
EMAIL PROTECTED] Subject: [OS-webwork] ServletDispatcher still broken from refactoring the request isnt being wrapped by the multipart wrapper anyone have the old version that was working somewhere? HttpServletRequest httpRequest = ServletActionContext.getRe

RE: [OS-webwork] ServletDispatcher still broken from refactoring

2003-10-14 Thread BOGAERT Mathias
Cameron broke this, but hasn't fixed it yet. Replace your ServletDispatcher with the attached one. Cheers, Mathias Bogaert -Original Message- From: Francisco Hernandez [mailto:[EMAIL PROTECTED] Sent: dinsdag 14 oktober 2003 16:17 To: [EMAIL PROTECTED] Subject: [OS-we

[OS-webwork] ServletDispatcher still broken from refactoring

2003-10-14 Thread Francisco Hernandez
the request isnt being wrapped by the multipart wrapper anyone have the old version that was working somewhere? HttpServletRequest httpRequest = ServletActionContext.getRequest(); System.out.println("IS MULTIPART: "+MultiPartRequest.isMultiPart(httpRequest)); isMultiPart is re

Re: [OS-webwork] ServletDispatcher

2002-12-09 Thread Rickard Öberg
boxed wrote: I have written a custom directory browsing view with webwork, and it works fine now, but I discovered a rather annoying thing in webwork in the proccess: ServletDispatchers getActionName() method is private. This forced me to copy paste the entire code of this class into my directory

Re: [OS-webwork] ServletDispatcher

2002-12-08 Thread Scott Farquhar
Nope - I'm for making it protected. IMHO protected should be the default unless there is a good reason to make it private. Do you have CVS access? Email me privately & I'll change it if you don't. Cheers, Scott boxed wrote: I have written a custom directory browsing view with webwork, and it

[OS-webwork] ServletDispatcher

2002-12-08 Thread boxed
I have written a custom directory browsing view with webwork, and it works fine now, but I discovered a rather annoying thing in webwork in the proccess: ServletDispatchers getActionName() method is private. This forced me to copy paste the entire code of this class into my directory browse servlet