[appfuse-user] mvn Jetty:run-war BUILD FAILURE - Test ERROR...

2008-03-12 Thread Preetkanwal_Singh
Hi all, Thanks for your earlier support. Am running mvn jetty:run-war and getting this test error. <<<> DEBUG [main] SignupActionTest.endTransaction(360) | Rolled back transaction after execution

Re: [appfuse-user] How to call a stored procedure

2008-03-12 Thread Aakhunaten
I did. There arent too many clear examples like where do I put the ? Anyways, I finally found out that Hibernate's Postgres dialect does not support resultsets from stored procedures :( I guess I will go with iBatis. praveen mraible wrote: > > Have you tried reading Hibernate's documen

Re: [appfuse-user] about change extension

2008-03-12 Thread Matt Raible
If you use mod_rewrite and Apache + Tomcat - anything is possible. It's really a slick solution. Matt On 3/12/08, chinofish <[EMAIL PROTECTED]> wrote: > > > we all know that .html is the choice of appfuse2, and in order to avoid side > effect of that, we add a static filter. > > but why not just

[appfuse-user] about change extension

2008-03-12 Thread chinofish
we all know that .html is the choice of appfuse2, and in order to avoid side effect of that, we add a static filter. but why not just use .do like struts 1.x did ? if we want to hide the technique, we can use url-rewrite. in fact, in most situations, people do not care others know the technique

Re: [appfuse-user] Could not resolve placeholder 'mail.default.from'

2008-03-12 Thread Matt Raible
Try running "mvn clean test" from the command line. I'm guessing this happens in Eclipse? If so, it's because mail.properties isn't being processed by Maven properly. You might try the latest M2 Plugin: http://m2eclipse.codehaus.org/ Matt On 3/11/08, banbonero <[EMAIL PROTECTED]> wrote: > > i h

Re: [appfuse-user] How to call a stored procedure

2008-03-12 Thread Matt Raible
Have you tried reading Hibernate's documentation? http://www.hibernate.org/hib_docs/reference/en/html/querysql.html#sp_query Matt On 3/11/08, Aakhunaten <[EMAIL PROTECTED]> wrote: > > I am using AppFuse 2.0.1 with Hibernate and PostgreSQL. I am not able to make > calls to stored procedures. I

Re: [appfuse-user] Hibernate and DTS packages on Sql Server

2008-03-12 Thread Matt Raible
You shouldn't need to restart AppFuse or Tomcat to see any data changes. Matt On 3/12/08, caius_swopes <[EMAIL PROTECTED]> wrote: > > I have an app fuse application running on tomcat on one server and my > database running on another sql server. I need to run a DTS package on my > sql server

[appfuse-user] Hibernate and DTS packages on Sql Server

2008-03-12 Thread caius_swopes
I have an app fuse application running on tomcat on one server and my database running on another sql server. I need to run a DTS package on my sql server to insert some new data daily. If the DTS package completes successfully, will I need to restart my tomcat instance running app fuse or do i

Re: [appfuse-user] ACEGI request.getRemoteUser() returns null

2008-03-12 Thread Matt Raible
I would help if I could reproduce the problem locally. Unfortunately, I'm unable to. You could use the following to try to get the username: SecurityContext securityContext = (SecurityContext) event.getValue(); Authentication auth = securityContext.getAuthentication(); if (auth != null && (auth

Re: [appfuse-user] ACEGI request.getRemoteUser() returns null

2008-03-12 Thread orangetreats20171
Could someone please help me with this I am stuck for quite a while now orangetreats20171 wrote: > > http://www.nabble.com/file/p15986107/security.xml security.xml > > The defaultTargetUrl in authenticationProcessingFilter has been changed to > point to "/mainMenu.html" instead of

Re: [appfuse-user] how does face-config.xml know the injected beans from Spring context?

2008-03-12 Thread Matt Raible
http://static.springframework.org/spring/docs/2.0.x/api/org/springframework/web/jsf/DelegatingVariableResolver.html On 3/12/08, Haotian Sun <[EMAIL PROTECTED]> wrote: > Hi Matt, > > I'm playing with Appfuse 1.9.4 with the option of JSF. Can you please > give me a simple description that how JSF'

[appfuse-user] how does face-config.xml know the injected beans from Spring context?

2008-03-12 Thread Haotian Sun
Hi Matt, I'm playing with Appfuse 1.9.4 with the option of JSF. Can you please give me a simple description that how JSF's face-config.xml retrives the injected beans from spring context files? Thanks, Haotian - To unsubscr