Re: [appfuse-user] AppFuse 2.0

2006-12-22 Thread Fan
Is Appfuse 2.0 finally released ? Or it's just a beta version ? I am still picking up the Appfuse 1.9.4 :P should I forget about it and try Appfuse 2.0 instead ? What are the differences between these two version ? Matt Raible-3 wrote: > > Unfortunately, AppFuse is open source so there's not

Re: [appfuse-user] tough question: doGet request fired twice in displaytag

2006-12-22 Thread kkus
I also loaded a stack file for your reference. See attachment. Sanjiv Jivan wrote: > > All decent debuggers have a Call Stack / Frame view which allows you to > trace the sequence of methods that led to the current call being made. So > by > examining the higher order call stacks, you should be

Re: [appfuse-user] tough question: doGet request fired twice in displaytag

2006-12-22 Thread kkus
I am using Eclipse 3.2. I copied two call stacks into txt files and compared their content - they are identical. Request is issued from a url link and there is no javascript involved. I will try Fiddler when I have more time. Any other clues? Thanks! Sanjiv Jivan wrote: > > All decent debuggers

Re: [appfuse-user] tough question: doGet request fired twice in displaytag

2006-12-22 Thread Sanjiv Jivan
All decent debuggers have a Call Stack / Frame view which allows you to trace the sequence of methods that led to the current call being made. So by examining the higher order call stacks, you should be able to figure out why the calls are being made twice. Which IDE / debugger are you using? Is

Re: [appfuse-user] tough question: doGet request fired twice in displaytag

2006-12-22 Thread kkus
When breakpoint was hit, I checked request field and both have the same session id and seems identical. What specific object or variable do you want me to check? Sanjiv Jivan wrote: > > Examine the call stack in your debugger when the breakpoints are hit. > > On 12/22/06, kkus <[EMAIL PROTECTE

Re: [appfuse-user] tough question: doGet request fired twice in displaytag

2006-12-22 Thread Sanjiv Jivan
Examine the call stack in your debugger when the breakpoints are hit. On 12/22/06, kkus <[EMAIL PROTECTED]> wrote: In 1.9.4 Spring MVC, I put a breakpoint at doGet() of FrameworkServlet.java. Then in Administration - View Users page I clicked a link for a user then there are two threads stoppi

[appfuse-user] tough question: doGet request fired twice in displaytag

2006-12-22 Thread kkus
In 1.9.4 Spring MVC, I put a breakpoint at doGet() of FrameworkServlet.java. Then in Administration - View Users page I clicked a link for a user then there are two threads stopping at the same breakpoint. It seems only happen in displaytag or only for Get request. How can I debug the root cause f

[appfuse-user] debugging testcases in eclipse

2006-12-22 Thread ftravers
I'm trying to debug a testcase in eclipse. However when I run what I think is the right command it doesn't suspend until I connect to it on port 4000. The build does look like it supplies 'suspend=y' argument...what am I doing wrong? I ran ant -Denterprice-debug=true -Dtestcase=StoreAction te

[appfuse-user] errors in canoo-test

2006-12-22 Thread hquinn
Greeting everyone! I have different errors when I run the canoo-test of my application. I don't understand why I'm getting this message... because when I try it in the browser.. it work just fine.. BUILD FAILED E:\workspace\musas\build.xml:599: The following error occurred while executing this li

Re: [appfuse-user] html search form for hibernate managed object/Displaytag displayed data - Looking for Best Practices

2006-12-22 Thread Sanjiv Jivan
I have build a comprehensive solution for (multi column) sort / page / filter of Hibernate backed beans. All the filter criteria you've listed is supported. The solution is not a small snippet of code though, its more of a library. I was planning on posting the code on my blog in a week or so and

Re: [appfuse-user] html search form for hibernate managed object/Displaytag displayed data - Looking for Best Practices

2006-12-22 Thread Larry Ger
I havent used Compass, but my gut feel is that it may be easier to just integrate Lucene directly. There are good tutorials on this too, google: appfuse + lucene Easier still would be to stick to SQL/hibernate based queries as Lucene requires an additional module and extra logic in synching up yo

Re: [appfuse-user] APPGEN question

2006-12-22 Thread Jasper Huzen
Can you post your error message(s)? andrea cossu-2 wrote: > > Ok, > it works fine with tables, but what i want to say is if instead of a > table, > it works also with a view. > When i trie to generate pojos for a view i riceive an error and the build > fails. > > tnks > > -- > andrea cossu

[appfuse-user] Re: APPGEN question

2006-12-22 Thread andrea cossu
Ok, it works fine with tables, but what i want to say is if instead of a table, it works also with a view. When i trie to generate pojos for a view i riceive an error and the build fails. tnks -- andrea cossu "Jasper Huzen" <[EMAIL PROTECTED]> ha scritto nel messaggio news:[EMAIL PROTECTED]

AW: [appfuse-user] Error doing ACL example

2006-12-22 Thread Peter Schneider-Manzell
Hi! I am responsible for the Acegi ACL tutorial, but unfortunately our own server (which contained the source code example) crashed and we are still trying to recover the files from our backups. Bye, Peter -Ursprüngliche Nachricht- Von: Richard Oss [mailto:[EMAIL PROTECTED] Gesendet:

Re: [appfuse-user] APPGEN question

2006-12-22 Thread Jasper Huzen
You can use Middlegen to generate POJO's from table. Appgen can do this for you (uses also middlegen to do this). You have to input "table" in the first questionbox when running appgen. Succes, Jasper andrea cossu-2 wrote: > > I need to create pojos for a view instead of a table. > Does Appg

[appfuse-user] RE: struts & method parameter

2006-12-22 Thread Jasper Huzen
Do you use Appfuse or only WebWork/Struts? I think you are missing some nice feature. There is no needed method parameter into your url. You can define into you xwork.xml an action mapping and bind these with a method from an action. If you see this action mapping: /WEB-INF/pages

[appfuse-user] RE: struts & method parameter

2006-12-22 Thread Fabrizio Cappelletti \(Google\)
I reply to myself, because I have found the answer and I think it's better to remark it. In the BaseAction.java (under src/web.action) the method "execute" handle URLs without parameter ("method" for default): if the URL contains (and NOT only begins with) the words "edit", "save" or "view" it wil

Re: [appfuse-user] Problem with struts-menu template?

2006-12-22 Thread Jasper Huzen
Sure, I'll send you some files. Matt Raible-3 wrote: > > Can you send a screenshot and the generated HTML or your > menu-config.xml? It's tough to fix unless I can reproduce it. > > Matt > > On 12/21/06, Jasper Huzen <[EMAIL PROTECTED]> wrote: >> >> I am using version 1.9.4 of appfuse. >> >>

[appfuse-user] APPGEN question

2006-12-22 Thread andrea cossu
I need to create pojos for a view instead of a table. Does Appgen work either with tables and views? If it doesn't how can i create the pojos automatically? tnks in advance -- andrea cossu - To unsubscribe, e-mail: [EMAIL

[appfuse-user] struts & method parameter

2006-12-22 Thread Fabrizio Cappelletti \(Google\)
Hi all, I have a newbie struts question for you: to choose an Action method to execute from a jsp is ALWAYS needed to specify the method= parameter when calling the Action path (i.e. users.html). I know that there is a default called by the "unspecified" method, and I know that adding the method