Re: [Wicket-user] Nullpointerexception in MultipartWebRequest

2005-04-11 Thread Jonathan Locke
upload form now has no limit by default: /** Maximum size of an upload in bytes */ Bytes maxSize = Bytes.MAX; Jan Mikkelsen wrote: Here is what happened: I tried the head version. It fails to complete unittests, so I skipped that. I now get a NPE in line 69 of MultipartWebRequest: d

Re: [Wicket-user] Nullpointerexception in MultipartWebRequest

2005-04-10 Thread Jan Mikkelsen
Here is what happened: I tried the head version. It fails to complete unittests, so I skipped that. I now get a NPE in line 69 of MultipartWebRequest: diskFileUpload.setSizeMax(uploadForm.maxSize.bytes()); That is because I hadn't set max size. I suspect this is something others will fail

Re: [Wicket-user] Nullpointerexception in MultipartWebRequest

2005-04-09 Thread Jan Mikkelsen
Hi Eelco No, I am not working on head, but I will try that tomorrow, and I will definitely try your suggestion and get back with results. Thanks /Jan --- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundre

Re: [Wicket-user] Nullpointerexception in MultipartWebRequest

2005-04-09 Thread Eelco Hillenius
Jan, are you working on head? If so, could you try changing getParameters from: public String[] getParameters(final String key) { return getParameter(key).split(","); } to public String[] getParameters(final String key) { String val = getParame

Re: [Wicket-user] Nullpointerexception in MultipartWebRequest

2005-04-09 Thread Jan Mikkelsen
I have filed a bug report with a bit more information. > Hi > > I am busy updating my application from 0.9.19 to 1.0, and so far I like > the changes you have made to the framework, especially > CompoundPropertyModel. > > I have just run into a problem that I hope you can help with. I have an

Re: [Wicket-user] Nullpointerexception in MultipartWebRequest

2005-04-09 Thread Jan Mikkelsen
Ups, sorry, I hadn't noticed your mail, Jon. I will look at it now... --- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hyp

Re: [Wicket-user] Nullpointerexception in MultipartWebRequest

2005-04-09 Thread Jonathan Locke
i cannot address today. best way to get a response from the team is to submit a detailed bug report with a repro case. someone will surely get to it soon if you do this... best, jon Jan Mikkelsen wrote: Hi I'm sorry to keep asking, but I need some kind of solution, advice or something, p

Re: [Wicket-user] Nullpointerexception in MultipartWebRequest

2005-04-09 Thread Jan Mikkelsen
Hi I'm sorry to keep asking, but I need some kind of solution, advice or something, please. Kind regards, Jan --- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Disco

[Wicket-user] Nullpointerexception in MultipartWebRequest

2005-04-09 Thread Jan Mikkelsen
Hi I am busy updating my application from 0.9.19 to 1.0, and so far I like the changes you have made to the framework, especially CompoundPropertyModel. I have just run into a problem that I hope you can help with. I have an UploadForm with a FileUpload component and some other components, like