[appfuse-user] jsperror in appfuse 1.9.4

2008-01-28 Thread jithesh
Hi, I am using appfuse 1.9.4 for developing web application in wasce 1.1. Recently i upgraded to 2.0. While accessing the application i am getting the following error. ERROR [[jsp]] Servlet.service() for servlet jsp threw exception org.apache.jasper.JasperException: /index.jsp(1,1) The

Re: [appfuse-user] for upload file size

2008-01-28 Thread Matt Raible
Which web framework are you using? For #2, there's no way to filter file types with a standard HTML control. However, there is a cool jQuery file upload widget - but I can't seem to find it right now. Matt On Jan 28, 2008, at 10:19 PM, ujjala wrote: Where can we define the limit of upload

[appfuse-user] for upload file size

2008-01-28 Thread ujjala
Where can we define the limit of uploading file size. Also i want to upload only selected extensions like .doc.xls etc how can i handle it. -- View this message in context: http://www.nabble.com/for-upload-file-size-tp15152609s2369p15152609.html Sent from the AppFuse - User mailing list archiv

Re: [appfuse-user] using sub packages

2008-01-28 Thread elaroche
Well ok. If you know where too look I'm ok to help (I need to find time for that ;-)) I know how it was working in appfuse 1.8, don't know if it's still velocity and where the templates are mraible wrote: > > We haven't done anything to support sub-packages at this time. If > it's possibl

Re: [appfuse-user] using sub packages

2008-01-28 Thread Matt Raible
We haven't done anything to support sub-packages at this time. If it's possible to make it work - it wasn't intentional. With that being said, it might be possible but I don't know how to do it off the top of my head. I'd have to look at the code. Matt On Jan 28, 2008, at 8:11 AM, elaroche

Re: AW: [appfuse-user] Problems with Server Roundtrips and Issue in JSF Demo

2008-01-28 Thread Matt Raible
Since any tags are processed on the server-side, I don't see how browser behavior could be different - unless the rendered HTML is incorrect. Matt On Jan 27, 2008, at 8:53 PM, EddieHsu wrote: I found that there no any problem with firefox wheather or not add name="form" value="list"/>

[appfuse-user] using sub packages

2008-01-28 Thread elaroche
Hi everybody. I'm sure it has already been asked but I can't found anything :( (bad keywords for sure). I'm looking to know how to create sub packages that works with appfuse maven generation. I'm using Appfuse 2 last stable release. archetype: modular well I've made a Pojo: com.mycompany.myapp

Re: [appfuse-user] Multiple objects in Form

2008-01-28 Thread Leo Barrientos C.
My solution is : protected Map referenceData(HttpServletRequest request) { Map data = new HashMap(); data.put("object1", new Object1()); data.put("object2", new Object2()); return data; } Michael Horwitz wrote: The simplest way is to override the referenceData() m

Re: [appfuse-user] Run hbm2ddl only if database/tables don't exist yet?

2008-01-28 Thread Michael Horwitz
On 1/28/08, Yopy <[EMAIL PROTECTED]> wrote: > > > Is it possible, and if so, how would it be possible, to have the hbm2ddl > goal > (or whatever it is) run only if the specified database / table(s) don't > exist yet? Right now, it either executes (on startup) every time, or not > at > all, dependin

Re: [appfuse-user] Multiple objects in Form

2008-01-28 Thread Michael Horwitz
The simplest way is to override the referenceData() method on the controller - this will allow you to pass in other objects as parameters to the form page. One thing to note though - if you are using Spring's binding capabilities, it will only bind the elements on the form onto a single backing obj

[appfuse-user] Run hbm2ddl only if database/tables don't exist yet?

2008-01-28 Thread Yopy
Is it possible, and if so, how would it be possible, to have the hbm2ddl goal (or whatever it is) run only if the specified database / table(s) don't exist yet? Right now, it either executes (on startup) every time, or not at all, depending on whether I have the hbm2ddl goal enabled in the hiberna