[appfuse-user] Notification Engine

2007-04-07 Thread James74
We want to have notification capability in our ongoing project being developed using Appfuse. We would like to notify user through Email, Phone, SMS, MMS etc. There are lots of open source notification engine available. I would appreciate your suggesting one based on your experience. BR,Jaymin --

Re: [appfuse-user] steps that appfuse is following to perform tests

2007-04-07 Thread Matt Raible
You can read about how jMock is used to test the service layer at: http://appfuse.org/display/APF/Services If this doesn't answer your questions - please post more specific questions. Matt On 4/6/07, Abdul Qayyum <[EMAIL PROTECTED]> wrote: Can you please give me an overview of how testing is

Re: [appfuse-user] urlrewrite problems

2007-04-07 Thread Matt Raible
I've entered an issue for this and checked the fix into SVN. http://issues.appfuse.org/browse/APF-723?page=com.cenqua.fisheye.jira:fisheye-tabpanel Matt On 4/7/07, Matt Raible <[EMAIL PROTECTED]> wrote: You might also try using the Restful2ActionMapper: http://struts.apache.org/2.x/struts2-co

Re: [appfuse-user] urlrewrite problems

2007-04-07 Thread Matt Raible
You might also try using the Restful2ActionMapper: http://struts.apache.org/2.x/struts2-core/apidocs/org/apache/struts2/dispatcher/mapper/Restful2ActionMapper.html Matt On 4/7/07, Matt Raible <[EMAIL PROTECTED]> wrote: After some more research, it appears this solution *does* work for Tomcat,

Re: [appfuse-user] urlrewrite problems

2007-04-07 Thread Matt Raible
After some more research, it appears this solution *does* work for Tomcat, but not for Jetty. I tried the 6.1.2rc2 version of the maven-jetty-plugin and it still doesn't work. Matt On 4/7/07, Matt Raible <[EMAIL PROTECTED]> wrote: I was able to change the StaticFilter to use an include instead

Re: [appfuse-user] urlrewrite problems

2007-04-07 Thread Matt Raible
I was able to change the StaticFilter to use an include instead of a forward and this allows the rewriteFilter as well as the staticFilter to work. However, I can't get SiteMesh to decorate the include (using INCLUDE), so it's not really a solution. Matt On 4/7/07, Matt Raible <[EMAIL PROTECTED

Re: [appfuse-user] urlrewrite problems

2007-04-07 Thread Matt Raible
On 4/6/07, sarat.pediredla <[EMAIL PROTECTED]> wrote: Hi, I am just diving into URL rewrite as I want my app to have RoR style pretty URLS. I noticed there is an existing rule for users as below, ^/user/(.*).html$ /editUser.html\?username=$1 But when i type http://localho

Re: [appfuse-user] database settings multi user

2007-04-07 Thread Matt Raible
You should be able to create 4 different sessionFactories in src/main/resources/applicationContext-resources.xml. If you need to add additional properties for filtering, just add them to your pom.xml - or hard-code them in your Spring configuration (or jdbc.properties) files. Matt On 4/6/07, Na

Re: [appfuse-user] nullpointer struts tag utils

2007-04-07 Thread Matt Raible
You should only need to remove messages.jsp from error.jsp, not decorators/default.jsp. Matt On 4/6/07, tibi <[EMAIL PROTECTED]> wrote: hi i get this nullpointer. probably its a problem in struts2. the problem is that my user has no role attached ( a bug i'm working on). but the displaying of

Re: [appfuse-user] appfuse 2 - webtest - verifypdftext step does not work

2007-04-07 Thread ros
This works for verify PDF documents in webtest: maven-antrun-plugin 1.1

Re: [appfuse-user] Disable canoo

2007-04-07 Thread sarat.pediredla
Matt, Apologies about this. There is NOTHING wrong with appfuse on luntbuild. It works great! It was just me not committing the /WEB-INF/classes/ directory to SVN which mean my local machine could run integration-test but luntbuild couldnt check it out from source and was failing. However, ther

Re: [appfuse-user] Error in /common/taglibs.jsp

2007-04-07 Thread Matt Raible
This should do it: org.ajaxtags ajaxtags 1.2-beta3 taglibs standard On 4/7/07, Ömer Başar <[EMAIL PROTECTED]> wrote: Yes you are right I have added ajaxtags and its dependencies are standart 1.0.6 and jstl 1.0.6 http://mvnrepository.com

Re: [appfuse-user] Error in /common/taglibs.jsp

2007-04-07 Thread Ömer Başar
Yes you are right I have added ajaxtags and its dependencies are standart 1.0.6 and jstl 1.0.6 http://mvnrepository.com/artifact/org.ajaxtags/ajaxtags/1.2-beta3 Thanks Matt. I wish I sent a message 4 hours ago. Last question what do I do now for ajaxtags not to download standard 1.0.6 and jstl

Re: [appfuse-user] Error in /common/taglibs.jsp

2007-04-07 Thread Matt Raible
Have you added any new dependencies to your pom.xml? Which web framework and version of AppFuse are you using? You might try running the following and then searching in mvn.log for "jstl" to see what's causing the revert to the older version. mvn package -X | tee mvn.log Matt On 4/7/07, Ömer

Re: [appfuse-user] Error in /common/taglibs.jsp

2007-04-07 Thread Ömer Başar
They are 1.0.6 both. Now I will try again. I hope it works. I will inform you either way. mraible wrote: > > Can you look in target/yourapp-version/WEB-INF/lib and see if the > jstl.jar and standard.jar are the right versions? > > They should be 1.1.2. The only reason I can think you're havin

Re: [appfuse-user] Error in /common/taglibs.jsp

2007-04-07 Thread Matt Raible
Can you look in target/yourapp-version/WEB-INF/lib and see if the jstl.jar and standard.jar are the right versions? They should be 1.1.2. The only reason I can think you're having this problem is 1) you don't have enough RAM (hence the locking) or 2) you have older versions of these JARs somewhe

Re: [appfuse-user] Error in /common/taglibs.jsp

2007-04-07 Thread Ömer Başar
Thanks for fast reply. my MAVEN_OPTS = -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8082 I can run the application with jetty. It gives no error when I run integration-test command. I can debug in remote but it locks my computer I don't know why

Re: [appfuse-user] Error in /common/taglibs.jsp

2007-04-07 Thread Matt Raible
I imagine this is caused by something to do with your remote debugging setup. If you can run "mvn integration-test", that means that your app working in Tomcat. If you create a new configuration in IDEA using "Remote" and then add those parameters to a MAVEN_OPTS environment variable, you should

[appfuse-user] Error in /common/taglibs.jsp

2007-04-07 Thread Ömer Başar
Hi all, The tabligs cannot be found <%@ taglib uri="http://java.sun.com/jsp/jstl/core"; prefix="c" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt"; prefix="fmt" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/sql"; prefix="sql" %> I think they should be without "/jsp" not to give errors.

Re: [appfuse-user] Missing Velocity Bit

2007-04-07 Thread Matt Raible
I haven't seen t his error before. Maybe it's a result of trying to use Derby? What happens if you use MySQL or H2? Matt On 4/6/07, Adam Sherman <[EMAIL PROTECTED]> wrote: I just created a new project: $ mvn archetype:create -DarchetypeGroupId=org.appfuse - DarchetypeArtifactId=appfuse-basic

Re: [appfuse-user] Filter ?

2007-04-07 Thread Matt Raible
There's no documentation, but the names are generally pretty descriptive. We could add comments in web.xml to tell what each does. However, it might be easiest to answer your questions here. Which ones are you curious about? Matt On 4/7/07, Will Berger <[EMAIL PROTECTED]> wrote: Was wonderin

Re: [appfuse-user] Disable canoo

2007-04-07 Thread Matt Raible
You could change the activation settings for integration-test to "!maven.it.skip" (or something like that) and then pass in -Dmaven.it.skip=true to skip running them. Also, since we would like AppFuse to run on all CI servers, you can enter this as an issue in JIRA and we'll try to figure out wha

Re: [appfuse-user] hibernate config overwriting entity

2007-04-07 Thread tibi
ok after a good night sleep i discovered that my xml files were not written to WEB-INF/classes (eclipse does not build them so the are not updated) so after copying them over to WEB-INF/classes the below solution works fine! to make things sure i set hibernate sql to debug and run mvn clean jet

[appfuse-user] Disable canoo

2007-04-07 Thread sarat.pediredla
How do I disable canoo web tests during integration-test? I am trying to use luntbuild for my CI needs and integration-test works great until canoo kicks in and for some weird reason, it does not want to find by default.vm. I found out this is a problem with maven.test.classpath as canoo cant get

[appfuse-user] Filter ?

2007-04-07 Thread Will Berger
Was wondering if anyone knows if there is any documentation that describes what all the filters do in the web.xml. Any help much appreciated. Will -- View this message in context: http://www.nabble.com/Filter---tf3540751s2369.html#a9883944 Sent from the AppFuse - User mailing list archive at N

Re: [appfuse-user] struts2-crud.mov jetty:run doesn't walk

2007-04-07 Thread Ömer Başar
Don't remove the classes dir. Just remove the lib directory and delete struts.xml in classes dir. Then you are free to to run mvn jetty:run thrasher wrote: > > When running "mvn jetty:run" on a fresh AppFuse project (both Struts 2 > basic, and modular) just like in the "struts2-crud.mov" demo,

Re: [appfuse-user] Chane default sql error messages

2007-04-07 Thread nutanc
Hi, Thanks again for the fast response.This should work.I will try it.But is there an easier way around it.I mean everything in spring seems to be configurable using some xml files.I also read somewhere that the error message can be overwritten in some sql-error-codes.xml. I am just not finding th

Re: [appfuse-user] hibernate3 and cobertura plugins not getting along

2007-04-07 Thread sarat.pediredla
Rob, Many thanks for this :) Rob van Oostrum-2 wrote: > > add this to your pom.xml (for a modular archetype use the pom in the > core module): > > > > test > > > !nodb > > >