[appfuse-user] How to validate...

2006-12-28 Thread SandeepReddy
Hi all, I am new to appfuse and i am using appfuse 1.9.4 with ant 1.6.5 & struts.I want to inseart the values in the database by using sample-data.xml file by using dbload. Here the problem is, i want to validate the values in sample-data.xml file( i mean comparing the values with existed database

Re: [appfuse-user] Problem with appgen after replacing Hibernate with iBatis

2006-12-28 Thread Jong Hian Zin
Matt, I'm using appfuse-springmvc-1.9.4-src.zip. I think ibatis/build.xml is fine, it replaces properties.xml as expected. The problem seem to be in appgen; middlegen/build.xml failed after Hibernate is uninstalled. On 12/29/06, Matt Raible <[EMAIL PROTECTED]> wrote: What version of AppFuse ar

[appfuse-user] About filter mapping

2006-12-28 Thread Yesh
Hi, We have ported an application with appfuse. We have created a seperate folder named as forge for it. Sitemesh doesn't support that application. So,how to omit the forge directory from using sitemesh . What should be the url pattern for omitting a folder using filters. -- View this message

Re: [appfuse-user] AppFuseAcegiACL file download problem?

2006-12-28 Thread Hardaway
Thanks for reminding me. I forgot I have read that post earlier. Can someone else share the source again? Basically I have a problem on the GrantedAuthorityEffectiveAclsResolver. I found that it is trying to compare Role with String at function resolveEffectiveAcls. /* File: GrantedAuthorityEffe

Re: [appfuse-user] AppFuseAcegiACL file download problem?

2006-12-28 Thread Matt Raible
On 12/28/06, Hardaway <[EMAIL PROTECTED]> wrote: Hi, I have been trying hard to hook up my own application with Acegi ACL. However, I have no luck even follow closely with the tutorial (http://raibledesigns.com/wiki/Wiki.jsp?page=AppFuseAcegiACL). I used both user and role model from AppFuse bu

Re: [appfuse-user] Problem with appgen after replacing Hibernate with iBatis

2006-12-28 Thread Matt Raible
What version of AppFuse are you using? The easy way to solve this is to search through properties.xml and look for hibernate.classpath. Remove it if it's in there. Hopefully ibatis.classpath is in there as well. You can always look through ibatis/build.xml to see what it does and manually make

[appfuse-user] AppFuseAcegiACL file download problem?

2006-12-28 Thread Hardaway
Hi, I have been trying hard to hook up my own application with Acegi ACL. However, I have no luck even follow closely with the tutorial (http://raibledesigns.com/wiki/Wiki.jsp?page=AppFuseAcegiACL). I used both user and role model from AppFuse but still no help. Finally, I think I need to compare

[appfuse-user] Problem with appgen after replacing Hibernate with iBatis

2006-12-28 Thread Jong Hian Zin
"ant install-detailed" failed after I replaced Hibernate with iBatis "ant install uninstall-hibernate" C:\myapp\extras\appgen>ant install-detailed Buildfile: build.xml Overriding previous definition of reference to xdoclet.classpath clean: init: [mkdir] Created dir: C:\myapp\extras\appgen\bu

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

2006-12-28 Thread Nathan Anderson
All of the onlick events happen first, then the default behavior of the HTML. Think of it this way... if you were listening for a keypress in a textbox rather than a mouse click. The onkeydown, onkeyup, and onkeypress events are all processed before the character typed is added to the textbox

Re: [appfuse-user] Thoughts on upgrade path?

2006-12-28 Thread Matt Raible
The most important asset you have for such a transition is your unit tests. To move all of AppFuse into a Maven 2 directory structure didn't take me too long - about 3 days. The hard part was getting all the Maven plugins (dbunit, hibernate3, etc.) to work properly. The good news is those are p

[appfuse-user] Thoughts on upgrade path?

2006-12-28 Thread mseritan
I really like the way Appfuse 2.0 uses Maven to keep all the pieces up to date. I understand this is still work in progress but it is already very promising. One of the related pieces is upgrading existing code to Appfuse 2.0. One can pursue this as a goal in itself but also as an intermediate ste

Re: [appfuse-user] Incorporate Spring Into Existing Struts 1.24 app

2006-12-28 Thread Matt Raible
This may help: http://raibledesigns.com/wiki/Wiki.jsp?page=AppFuseSpringUpgrade Matt On 12/28/06, Scott Purcell <[EMAIL PROTECTED]> wrote: Hello, I have a struts 1.24 application that uses a old database connection system that I would like to remove. I do not have a lot of time, but wou

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

2006-12-28 Thread kkus
In example of events chapter, for an outer element1 and inner element2 when I click on element2 there is an event bubbling from element2 to element1. So I don't understand why in our case if I click on a.href (inner element) tr.onclick (outer element) will be processed first in IE6. GojiraDeM

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

2006-12-28 Thread Nathan Anderson
kkus wrote: I don't think is processed first. To be more precise, the tr.onclick is processed first then the a.href. In this case it is a difference of JS processing before the HTML is allowed to do its normal link operation. will be processed first and it will trigger onclick event when

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

2006-12-28 Thread Jason Brice
I found this online book excerpt helpful and interesting: http://www.quirksmode.org/js/contents.html , especially the events chapter. Jason On 12/28/06, kkus <[EMAIL PROTECTED]> wrote: I don't think is processed first. will be processed

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

2006-12-28 Thread kkus
I don't think is processed first. will be processed first and it will trigger onclick event when href link is clicked. Since IE6 only supports event bubbling, it will get its ancestor's onclick event. Ancestor's onclick is then processed like opening a new link as JavaScript code instructs, the

[appfuse-user] findByExample with JPA

2006-12-28 Thread André Faria
Somone know how to implement a findByExample Dao method with JPA? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [appfuse-user] appfuse on weblogic

2006-12-28 Thread Sanjiv Jivan
Unlike Tomcat which explores the entire war to the filesystem, Weblogic only explodes portion of the war which are - the jars from WEB-INF/lib and the compiled jsp classes. Everything else is read directly from the war. So certain API calls (like org.springframework.util.ResourceUtils.getFile) wh

Re: [appfuse-user] appfuse on weblogic

2006-12-28 Thread jmowla
Sanjiv the application deployed and working on tomcat, when i wanted to deploy the same app on weblogic i got that error, any specific configuration required? Sanjiv Jivan wrote: > > Its not complaining about abc-dao.jar missing from the classpath. Where is > "org/appfuse/abc/model" referred to

[appfuse-user] Incorporate Spring Into Existing Struts 1.24 app

2006-12-28 Thread Scott Purcell
Hello, I have a struts 1.24 application that uses a old database connection system that I would like to remove. I do not have a lot of time, but would like to toss in Springs IOC so I can use the dao portion of it. This would open me up to hibernate, etc, down the road. I know there are som

Re: [appfuse-user] appfuse on weblogic

2006-12-28 Thread Sanjiv Jivan
Its not complaining about abc-dao.jar missing from the classpath. Where is "org/appfuse/abc/model" referred to in your config? Is it supposed to be your Hibernate mapping file? If so, you seem yo be missing the extension in your sessionFactory bean config. On 12/26/06, jmowla <[EMAIL PROTECTED]>

Re: [appfuse-user] AW: Error doing ACL example

2006-12-28 Thread Stian B. Lindhom
Stian B. Lindhom wrote: > > Something that puzzles me is that you define two DAO beans, > basicAclObjectIdentityDAO and basicAclPermissionDAO, and autowire them > into basicAclProviderManager. This implementation extends > org.acegisecurity.acl.basic.BasicAclProvider wich requires basicAclDao t

Re: [appfuse-user] AW: Error doing ACL example

2006-12-28 Thread Stian B. Lindhom
Peter Schneider-Manzell wrote: > > 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. > That's sad to hear... :( You've done a great job documen

[appfuse-user] How to use Frameset in struts

2006-12-28 Thread Yesh
Hi, I am trying to use frameset in my appfuse application. I'm using struts as my framework. Give suggections for using frameset. -- View this message in context: http://www.nabble.com/How-to-use-Frameset-in-struts-tf2889614s2369.html#a8072781 Sent from the AppFuse - User mailing list archiv