[appfuse-user] login.jsp

2007-09-05 Thread nmall
Hi, Is the username case sensitive in the login.jsp. Also, I found a bug where once a case incorrect name and password is given, even if the case of the username is changed to the right one, it ignores the input and gives an error. Any idea why this would happen. Also, why is the struts2 tag

Re: [appfuse-user] UserAction and userForm

2007-06-29 Thread nmall
OK, the method specified is "post" in the userForm.jsp thus resulting in a post message. However, my problem is that there is nothing in the user.id. Where do we expect to get it from. Thanks! nmall wrote: > > Hi, > > In UserAction (.java) class, why do we expect t

[appfuse-user] UserAction and userForm

2007-06-29 Thread nmall
Hi, In UserAction (.java) class, why do we expect the httprequest to be a post request and not a get (see code below). I am getting a "get" request when I click on editProfile. As a result, it does not go thru' this code. Also, the hidden filed "user.id" that is set in userForm.jsp is set to not

[appfuse-user] JSP exceptions

2007-06-25 Thread nmall
Hi, My appfuse jsps are throwing errors like the following and I am baffled. I am not even sure where I should start debugging this. I haven't touched any JSPs at all. Thanks for your help!! Any tips on debugging these JSPs. Only my login works right now. org.apache.jasper.JasperException

[appfuse-user] struts2 question

2007-06-10 Thread nmall
Hi, I have a servlet which implements some logic based on some URL parameters passed to it. I can invoke this servlet directly from my browser, by simply supplying the parameters thru the URL. http://localhost:8080/myproject/myapplication?param1=value1¶m2=value2 However, I would like to set t

Re: [appfuse-user] maven central repository

2007-06-07 Thread nmall
the maven-proxy > log > files for the cause of the error. Otherwise I would suggest raising a > query > on the maven-proxy mailing list (assuming there is one)? > > Mike > > On 6/7/07, nmall <[EMAIL PROTECTED]> wrote: >> >> >> After I installed the

Re: [appfuse-user] maven central repository

2007-06-06 Thread nmall
.DefaultPluginVersionManager.resolvePl uginVersion(DefaultPluginVersionManager.java:90) at org.apache.maven.plugin.DefaultPluginManager.verifyPlugin(DefaultPlug inManager.java:166) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.verifyPlugin(Defa nmall wrote: > > Hi, > &g

[appfuse-user] maven central repository

2007-06-06 Thread nmall
n you recommend a good tool to install all the artifacts in the central repository. Thanks for your help!! nmall -- View this message in context: http://www.nabble.com/maven-central-repository-tf3881665s2369.html#a11001475 Sent from the AppFuse - User mailing list archive at Nabbl

[appfuse-user] jndi datasource config in Jetty

2007-06-06 Thread nmall
Hi, I am trying to configure a jndi datasource thru' my spring beans. I added jetty-env.xml for Jetty to recognize the datasource. However, it still gives me the error framework.beans.factory.BeanCreationException: Error creating bean with name 'da taSource' defined in class path resource [a

[appfuse-user] Maven related question

2007-06-01 Thread nmall
I know this probably should go to the Maven bulletin board. However, I trust Matt to give me a good answer... I find that every time anyone wants to copy my maven project to their system and start in a new place, they need to do mvn install on about 100 libraries that my pom.xml depends on. Eve

Re: [appfuse-user] java.lang.IllegalStateException in appfuse

2007-05-30 Thread nmall
I am getting the same error and have no clue where it is coming from ( after loggin in successfully) . Thanks for any suggestions!! DEBUG - Bypassing // mainMenu DEBUG - Skipping Interceptor... Method [execute] found in exclude list. DEBUG - No bean named 'org.apache.struts2.dispatcher.ServletDi

Re: [appfuse-user] where should spring applicationContext*.xml files reside

2007-05-30 Thread nmall
for clarifying!!! mraible wrote: > > The one in core/src/main/resources is meant for backend classes > (managers and daos). The one in src/main/webapp/WEB-INF should be used > for any web-related classes. > > Matt > > On 5/29/07, nmall <[EMAIL PROTECTED]> wrote:

[appfuse-user] where should spring applicationContext*.xml files reside

2007-05-29 Thread nmall
Hi, I find that I have applicationContext*.xml files in src/main/resources as well as in src/main/webapp/WEB-INF. Which is the right place for it to reside. The context-param block in web.xml looks in the classpath ( see below). Thanks!! contextConfigLocation

Re: [appfuse-user] login debug messages

2007-05-29 Thread nmall
I using appfuse 2.0-M4 - yes , i have a full source version. I imported all the sources into my build to do this. Thanks! Jason Thrasher wrote: > > What versions are you using? It sounds like a configuration issue of some > kind. Have you changed anything? > > > > n

Re: [appfuse-user] No Result defined for action signup

2007-05-29 Thread nmall
I have removed Hibernate annotation dependency in my setup. Would that cause this error. I notice a debug messages "Detecting AnnotationVAlidatormanager" in my trace. thanks for your help!! nmall wrote: > > When I click on the signup button, my appfuse app gives these

[appfuse-user] No Result defined for action signup

2007-05-29 Thread nmall
When I click on the signup button, my appfuse app gives these debug messages "Bypassing // signup" after which it gives the error "No result defined ..for signup..." although there is a result defined for "input" in struts.xml. Any idea why I would get this error. Thanks so much for any pointer

Re: [appfuse-user] login debug messages

2007-05-29 Thread nmall
dows NT 5.1; en-US; rv:1.8.1.3) Gecko/20 070309 Firefox/2.0.0.3 Accept: */* Accept-Language: en-us,en;q=0.5 X-McProxyFilter: Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 300 Connection: keep-alive Referer: http://localhost:8080/myproject/editProfile.html Cookie: JSESSIONID=e

[appfuse-user] login debug messages

2007-05-28 Thread nmall
Hi, I was just looking at why the login page was taking so long and I find that it goes thru' almost the same cycle several times bfore it creates the login page . Any idea why appfuse does this. Thanks a lot for any clarifications!! DEBUG - Bound request context to thread: GET /myproject/login.

[appfuse-user] spring and JNDI datasource definition

2007-05-28 Thread nmall
Hi, I have defined my jdbc datasource as follows in my applicaitonContext.xml (see below) and am loading all the beans in the same file. I am getting an error when running mvn jetty:run-war with javax.naming.NameNotFound exception. I added jetty-env.xml (with this datasource repro below ) and a

Re: [appfuse-user] maven2 and spring and Groovy dependency

2007-05-25 Thread nmall
Hi, Sorry about posting this. What I had below fixed it. nmall wrote: > > Hi, > > While parsing the applicationContext.xml to which I added my own appl > specific stuff, maven starts complaining about a Groovy class. I added > groovy-1.0-jsr-06 into the pom and d

[appfuse-user] maven2 and spring and Groovy dependency

2007-05-25 Thread nmall
Hi, While parsing the applicationContext.xml to which I added my own appl specific stuff, maven starts complaining about a Groovy class. I added groovy-1.0-jsr-06 into the pom and did mvn install etc. However, it still gives me the following error on doing mvn jetty:run-war. I added this depende

[appfuse-user] jdbc url in pom.xml and hibernate.cfg.xml

2007-05-25 Thread nmall
Hi In appfuse, I have the jdbc.url in my pom.xml as well as in my hibernate.cfg.xml as connection properties in . Is the pom.xml used initially to find the database instance and the hibernate.cfg.xml when the login Action kicks in? Don't these have to be the same database instance/user/password

Re: [appfuse-user] How to avoid maven-appfuse not deleting the database on every build

2007-05-25 Thread nmall
If you add createDatabaseIfNotExist to your jdbc.url as below , it creates it only if it does not exist. HTH Balaji D Loganathan wrote: > > Thanks Luke, > Thats help. > Just wondering is there is a way where I can still run the unit tests and > integration tests without clearing the datab

Re: [appfuse-user] ACEGI exception

2007-05-24 Thread nmall
(Connection.java:3249) thanks a lot!! mraible wrote: > > Then it must be loading hibernate.cfg.xml from a different location > than the one you think it is. I'd search your classpath, including > JARs that you might suspect its in. > > Matt > > On 5/24/07, nmall <[

Re: [appfuse-user] ACEGI exception

2007-05-24 Thread nmall
Yes, I do !! It actually shows me errors if I don't have something mapped right. Thanks!! mraible wrote: > > Do you have org.appfuse.model.User as a mapped class in your > hibernate.cfg.xml file? > > On 5/24/07, nmall <[EMAIL PROTECTED]> wrote: >> >>

[appfuse-user] ACEGI exception

2007-05-24 Thread nmall
Hi, When I try to login on the login page, my appfuse based application gives me the following error. It is according to ACEGI docs an internal authentication error. It doesn't even go into my UserAction or other classes. Any idea what ths is Thanks a lot!! ( The user here is mraible as I tried

Re: [appfuse-user] WEB-INF/classes struts.xml

2007-05-23 Thread nmall
t know what you're trying to do, but many of > the problems you're having have already been solved by AppFuse. Are > you trying to import the sources of AppFuse (and the subsequent > dependencies) into your project? If so, the "appfuse:full-source" > goal in M5 will do

Re: [appfuse-user] WEB-INF/classes struts.xml

2007-05-23 Thread nmall
.config.providers.XmlConfigurationProvider.reg ister(XmlConfigurationProvider.java:194) ... 44 more nmall wrote: > > OK, I found that it is in struts.xml but what should it be set to - the > version of spring I am using?? Thanks !! > > ./target/work/webapp/WEB-INF/classes/strut

Re: [appfuse-user] WEB-INF/classes struts.xml

2007-05-23 Thread nmall
OK, I found that it is in struts.xml but what should it be set to - the version of spring I am using?? Thanks !! ./target/work/webapp/WEB-INF/classes/struts.xml: nmall wrote: > > Thanks, I guess this has nothing to do with the following error: Why > would it not find t

Re: [appfuse-user] WEB-INF/classes struts.xml

2007-05-23 Thread nmall
you'll > want to delete struts.xml from this directory to avoid conflicts. > > Matt > > On 5/23/07, nmall <[EMAIL PROTECTED]> wrote: >> >> Hi, >> >> How is the src/main/webapp/WEB-INF/classes directory generated. Is it >> something that is provi

[appfuse-user] WEB-INF/classes struts.xml

2007-05-23 Thread nmall
Hi, How is the src/main/webapp/WEB-INF/classes directory generated. Is it something that is provided by developer as more struts UI components are added. I am getting the following error after parsing struts.xml in this dir. Not sure what this is related to. Thanks so much for your help!! [test

[appfuse-user] Velocity error

2007-05-22 Thread nmall
Hi, Just when I thought I had understood appfuse somewhat, I get flummoxed by a new error from Velocity. What does appfuse use Velocity for exactly. Here is the error I am getting on mvn tomcat:run-war. Thanks for your help!! I haven't anything except add applicationContext-dao.xml tp my class

Re: [appfuse-user] Spring applicationContext

2007-05-22 Thread nmall
Thanks, I solved this problem I had by referring to it locally. Thanks a lot for all the help you provided !!! Appfuse really is great stuff!! nmall wrote: > > Matt > > You are brilliant. I did have multiple versions of spring jars - removed > them and have only spring-2.0.3

Re: [appfuse-user] Spring applicationContext

2007-05-22 Thread nmall
--- [INFO] Trace mraible wrote: > > It looks like you have two versions of Spring on your classpath. In > Tomcat, try cleaning out its "work" directory and see if that solves > it. If not, look in your deployed WE

Re: [appfuse-user] Spring applicationContext

2007-05-22 Thread nmall
at java.lang.Thread.run(Thread.java:595) nmall wrote: > > Yes, I do. > > > mraible wrote: >> >> Do you have the following in your web.xml? >> >> >> >> contextConfigLocation >> >> c

Re: [appfuse-user] Spring applicationContext

2007-05-21 Thread nmall
classpath*:/applicationContext-service.xml > classpath*:/applicationContext.xml > /WEB-INF/applicationContext*.xml > /WEB-INF/security.xml > > > > Matt > > On 5/21/07, nmall <[EMAIL PROTECTED]> wrote: >> >>

Re: [appfuse-user] Spring applicationContext

2007-05-21 Thread nmall
with JDK 5. > > Matt > > On 5/21/07, nmall <[EMAIL PROTECTED]> wrote: >> >> Hi Matt >> >> Thanks for the reply. I am still struggling with the following problem. >> When I inlcude the following header, the xerces parse r throws errors as >>

Re: [appfuse-user] Spring applicationContext

2007-05-21 Thread nmall
Spring ApplicationContext programmatically? If you > load it from the classpath, it won't be an XmlWebApplicationContext, > which is what you might be looking for. > > Matt > > On 5/21/07, nmall <[EMAIL PROTECTED]> wrote: >> >> hi, >> >>

Re: [appfuse-user] ClassNotFound: DwrServlet

2007-05-21 Thread nmall
th plugin configured > properly? > > Matt > > On 5/21/07, nmall <[EMAIL PROTECTED]> wrote: >> >> Hi, >> >> When I run my project using mvn -e jetty:run-war, it gives me DwrServlet >> Not found . When I run it with tomcat using mvn -e tomcat:ru

[appfuse-user] ClassNotFound: DwrServlet

2007-05-21 Thread nmall
Hi, When I run my project using mvn -e jetty:run-war, it gives me DwrServlet Not found . When I run it with tomcat using mvn -e tomcat:run-war, I get the following (see error at the bottom). Any ideas would be greatly appreciated. Do I need to load some library for DwrServlet. Thanks!! java.la

Re: [appfuse-user] Errors at startup

2007-05-21 Thread nmall
if you were using an AppFuse-generated project. > > Matt > > On 5/21/07, nmall <[EMAIL PROTECTED]> wrote: >> >> BTW, I added the following dependency to both my tomcat-maven-plugin and >> in >> my project dependencies. But it made no difference. >>

[appfuse-user] Spring applicationContext

2007-05-21 Thread nmall
hi, My application requires that I initialize the Spring application Context programmatically where I initialize a bunch of other stuff ( code below) instead of using ContextLoaderListener in the web.xml appContext = new ClassPathXmlApplicationContext( new String[] {"application

Re: [appfuse-user] Errors at startup

2007-05-21 Thread nmall
BTW, I added the following dependency to both my tomcat-maven-plugin and in my project dependencies. But it made no difference. org.apache.velocity velocity 1.5 Thanks!! nmall wrote: > > Hi, I thought I got over my spring application c

[appfuse-user] Errors at startup

2007-05-21 Thread nmall
Hi, I thought I got over my spring application context initialization and now Iam getting a totally new set of errors - have no idea where to start. Thanks a lot for your help!!! Initializing spring application context log4j:WARN No appenders could be found for logger (org.springframework.beans.

Re: [appfuse-user] No WebApplicationContext found

2007-05-21 Thread nmall
pl.XMLErrorReporter.reportError(Unknown Source) at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source) at org.apache.xerces.impl.dtd.XMLDTDValidator.addDTDDefaultAttrsAndValid ate(Unknown Source) nmall wrote: > > Hi, > > I have my applicationContext.xml in src/main/resources. Where doe

[appfuse-user] No WebApplicationContext found

2007-05-21 Thread nmall
Hi, I have my applicationContext.xml in src/main/resources. Where does the Spring application context get loaded in appfuse. However I am getting the following error. Thanks for your help! [ERROR] Exception sending context initialized event to listener instance of clas s org.appfuse.webapp.list

Re: [appfuse-user] Same error from security.xml

2007-05-12 Thread nmall
nvironment on a different machine. Thanks! mraible wrote: > > Are you still using Tomcat? Did you change your JDK? When does this > happen - when running tests? Does it happen if you test everything on > another machine? > > Matt > > On 5/12/07, nmall <[EMAIL PROT

[appfuse-user] No Bean named userDao found

2007-05-12 Thread nmall
Hi, Due to xerces parser giving me errors on the header file ( which I posted in a previous thread), I had to remove the xml header with a simple DTD header http://www.springframework.org/dtd/spring-beans.dtd";> However, this doesn't recognise statements in the security.xml so I removed thef o

[appfuse-user] Same error from security.xml

2007-05-11 Thread nmall
seems I have no choice but to give the following. But I get the same error I reproduced in my previous mail. Thanks for any suggestions. nmall wrote: > > Here is my applicationContext-resources.xml. Thanks! > > > http://www.springframework.org/schema/beans"; > xm

Re: [appfuse-user] errors from applicationContext-resources.xml

2007-05-11 Thread nmall
wrote: > > Can you post the contents of your applicationContext-resources.xml? > > Matt > > On 5/11/07, nmall <[EMAIL PROTECTED]> wrote: >> >> Hi, I have the standard applicationContext-resources.xml file but I am >> getting the following errors from to

[appfuse-user] errors from applicationContext-resources.xml

2007-05-11 Thread nmall
Hi, I have the standard applicationContext-resources.xml file but I am getting the following errors from tomcat 5.5 when I try to run mvn -e tomcat:run. Any ideas why this would happen. Your help is appreciated ! My ApplicationContext-resources.xml header : http://www.springframework.org/schema/

[appfuse-user] build errors

2007-05-10 Thread nmall
Hi, I resolved my Maven Struts FilterDispatcher errors by adding the following dependencies to my pom.xml. However, when I do mvn -e jetty:run-war, I get several NullPointerExceptions from Spring. I have applicationContext-resources.xml in my src/main/resources. Thanks for your help!! java.lan

Re: [appfuse-user] Maven Tomcat deploy 401 error

2007-05-10 Thread nmall
) mraible wrote: > > You must have a FilterDispatcher in your web.xml for this to happen. > Did you start with Struts as your web framework? > > Matt > > On 5/10/07, nmall <[EMAIL PROTECTED]> wrote: >> >> Hi, >> >> I did as you suggested - mvn tomca

Re: [appfuse-user] Maven Tomcat deploy 401 error

2007-05-10 Thread nmall
nfiguration from downloading > to using a variable. If you look, there should be a comment > that tells you how to do this. > > Matt > > On 5/9/07, nmall <[EMAIL PROTECTED]> wrote: >> >> Where is the port set to 8080 when deploying thru' maven. I chang

Re: [appfuse-user] Maven Tomcat deploy 401 error

2007-05-09 Thread nmall
Where is the port set to 8080 when deploying thru' maven. I changed my Tomcat port to 8081 however, though I specified 8081 in the cargo plugin as below, it is still trying to connect on 8080 and therefore getting a connection refused. Thanks for your suggestions! [INFO] Deploying war to http://l

Re: [appfuse-user] Maven Tomcat deploy 401 error

2007-05-09 Thread nmall
cation. Have you set the correct username and password in the plugin > configuration? > > Mike > > On 5/9/07, nmall <[EMAIL PROTECTED]> wrote: >> >> >> Hi, >> >> My tomcat server is up and running and when I do a mvn -e tomcat:deploy, >> I &

[appfuse-user] Maven Tomcat deploy 401 error

2007-05-09 Thread nmall
Hi, My tomcat server is up and running and when I do a mvn -e tomcat:deploy, I get the following error from maven. Any idea why. I have cargo settings etc in my pom.xml. Thanks for your help! [INFO] Generating war c:\work\build\myproject\target\myproject-1.0-SNAPSHOT.war [INFO] Building war: c:

[appfuse-user] Removing Hibernate Annotations use

2007-05-08 Thread nmall
Hi, All the appfuse classes use Hibernate Annotations. How can I completely remove Hibernate Annotations dependency or is that too hard to do. Thanks for your help. I appreciate it! nmal -- View this message in context: http://www.nabble.com/Removing-Hibernate-Annotations-use-tf3710730s2369.h

[appfuse-user] Access Denied error

2007-05-07 Thread nmall
Hi, I have been working on my project for a while now and I did not add anything new to security. However, I am not even able to view the login tabs now. It gives me "Access Denied" error as follows. Attached is my security.xml. Any ideas why this would happed? Thanks for your help! Access Den

Re: [appfuse-user] strange classloading problem

2007-04-30 Thread nmall
] --- INFO] Total time: 30 seconds INFO] Finished at: Mon Apr 30 07:24:43 EDT 2007 INFO] Final Memory: 17M/63M INFO] --- nmall wrote: > > Thanks, Mike. > > I do have the jar files cont

Re: [appfuse-user] strange classloading problem

2007-04-30 Thread nmall
It may just work ;-). > > Mike > > On 4/30/07, nmall <[EMAIL PROTECTED]> wrote: >> >> >> Hi Matt et al, >> >> I have a strange class loading problem when running with mvn jetty. The >> webapplication framework is based on appfuse and I

[appfuse-user] strange classloading problem

2007-04-29 Thread nmall
Hi Matt et al, I have a strange class loading problem when running with mvn jetty. The webapplication framework is based on appfuse and I am trying to get another standalone application running in it. Please ignore for now that application. The strange problem is that jetty webappclassloader is

Re: [appfuse-user] classes directories

2007-04-29 Thread nmall
inate wrote: > > Hi nmall, > > For the most part you can ignore everything in the "./target" folder. But > to answer your question, the "./target" folder is used by maven to build, > test, extract .war files, create .war files, etc. That is why you are &g

[appfuse-user] classes directories

2007-04-29 Thread nmall
Hi, When I create a basic struts archetype, I have all of the following classes directories. Pardon my ignorance, but what is the purpose of these directories since they seem to have the same content. Thanks for your clairification ! ./target/aclproject-1.0-SNAPSHOT/WEB-INF/classes ./target/cla

[appfuse-user] ClassNotFound but library has the class

2007-04-27 Thread nmall
s it's own sessionFactory for Hibernate - and > it doesn't support annotations. > > Matt > > On 4/26/07, nmall <[EMAIL PROTECTED]> wrote: >> >> Hi, >> >> I would like to integrate Pentaho standalone with the struts webapp >> pro

[appfuse-user] Hibernate error

2007-04-26 Thread nmall
Hi, I would like to integrate Pentaho standalone with the struts webapp provided by appfuse basic struts, here is the error I am getting while initializing. Any suggestions on how to deal with this. Thanks for any help!! I am sure this would be helpful for lots of people out there if it is done

[appfuse-user] Adding a long list of libraries to classpath

2007-04-26 Thread nmall
it'll be available at /pentaho.html (unless you have a > custom namespace). I don't know what's going wrong in your > application, but adding a new action should be similar to how its done > in the Person Tutorial. Have you done that tutorial? > > Matt > > On

Re: [appfuse-user] How to redirect mvn -e jetty:run-war to a log file

2007-04-25 Thread nmall
; > > to: > > action="pentaho" > > Should solve your problem. > > Matt > > On 4/25/07, nmall <[EMAIL PROTECTED]> wrote: >> >> Hi Matt >> >> But these are just names for my actions - Pentaho has not yet even b

Re: [appfuse-user] Where are the jetty logs

2007-04-25 Thread nmall
wrote: > > If you take Pentaho out of the mix, does it work? It sounds like > there may be issues getting Pentaho to work with Struts 2. I'd > simplify the problem, then try to fix it. > > Matt > > On 4/25/07, nmall <[EMAIL PROTECTED]> wrote: >> >>

Re: [appfuse-user] Where are the jetty logs

2007-04-25 Thread nmall
ren't overwritten: > > > maven-war-plugin > 2.0.2 > > > > **/hibernate.cfg.xml,**/sql-map-config.xml,**/web.xml,WEB-INF/classes/META-INF/** > > > > &

Re: [appfuse-user] maven and jsps

2007-04-25 Thread nmall
t; ./target/work/webapp/WEB-INF/pages/mainMenu.jsp >>>> -rwxr-xr-x 1 None 749 Apr 24 23:10 >>>> ./src/main/webapp/WEB-INF/pages/mainMenu.jsp >>>> -rwx--+ 1 None 749 Apr 24 23:13 >>>> ./target/aclproject-1.0-SNAPSHOT/WEB-INF/pages/mainMenu.js

Re: [appfuse-user] maven and jsps and menu-config.xml

2007-04-25 Thread nmall
This is true forsrc/main/webapp/WEB-INF/menu-config.xml as well. I changed it - did a mvn clean -e jetty:run-war. I still didn't have the ones in target/work/webapp/WEB-INF and target/wat/work/appfuse-struts-2.0-m4/WEB-INF/ reflecting the changes. Thanks for any pointers. nmall

Re: [appfuse-user] maven and jsps

2007-04-25 Thread nmall
t; ./target/work/webapp/WEB-INF/pages/mainMenu.jsp >>>> -rwxr-xr-x 1 None 749 Apr 24 23:10 >>>> ./src/main/webapp/WEB-INF/pages/mainMenu.jsp >>>> -rwx--+ 1 None 749 Apr 24 23:13 >>>> ./target/aclproject-1.0-SNAPSHOT/WEB-INF/pages/mainMenu.js

Re: [appfuse-user] maven and jsps

2007-04-24 Thread nmall
/pages/mainMenu.jsp >> -rwx--+ 1 None 749 Apr 24 23:13 >> ./target/aclproject-1.0-SNAPSHOT/WEB-INF/pages/mainMenu.jsp >> >> When I make changes to src/main/webapp/WEB-INF/pages/mainMenu.jsp and do >> a >> mvn -e compile or jetty:run-war, the o

Re: [appfuse-user] maven and jsps

2007-04-24 Thread nmall
jetty:run-war, the others don't get populated with the latest version automagically. Which of these are really needed. Thanks a lot for your help! nmall nmall wrote: > > Hi, > > Couple of questions: > > In the struts-basic project, the jsps are packaged and not present

[appfuse-user] maven and jsps

2007-04-24 Thread nmall
Hi, Couple of questions: In the struts-basic project, the jsps are packaged and not present in the src directory. I pulled them in and put them in src/main/webapp/WEB-INF/pages directory. Is this right. Now when I do mvn -e compile or mvn -e jetty:run-war, it doesn't put them automatically in

[appfuse-user] struts2 and appfuse

2007-04-24 Thread nmall
Hi, I am trying to add some simple action classes to the struts.xml that exists in appfuse 2.-0 M4 basic struts. I added a simple action which replaced the uploadFile that was there earlier /WEB-INF/pages/pentaho.jsp /WEB-INF/pages/pentaho.js

[appfuse-user] struts2 and appfuse

2007-04-24 Thread nmall
Hi, I am trying to add some simple action classes to the struts.xml that exists in appfuse 2.-0 M4 basic struts. I added a simple action which replaced the uploadFile that was there earlier /WEB-INF/pages/pentaho.jsp /WEB-INF/pages/pentaho.js

Re: [appfuse-user] building entire appfuse M2 source with maven

2007-04-19 Thread nmall
te and > appfuse-service, you'll need to pull in the dependencies for those > projects from their pom.xml files. If you post the errors you're > seeing, we may be able to offer better help. > > Matt > > On 4/18/07, nmall <[EMAIL PROTECTED]> wrote: >> >

Re: [appfuse-user] building entire appfuse M2 source with maven

2007-04-18 Thread nmall
Constants.java RoleDao.java BasicAclPermissionDAO.java src/main/java/org/appfuse/dao/hibernate: UserDaoHibernate.java LookupDaoHibernate.java UniversalDaoHibernate.java GenericDaoHibernate.java RoleDaoHibernate.java BasicAclObjectIdentityDAOHibernate.java nmall wrote: > > Hi, &

Re: [appfuse-user] building entire appfuse M2 source with maven

2007-04-18 Thread nmall
om the top-level > directory. This is the same as executing "mvn install" because > "install" is the default goal (specified in the section of > pom.xml). > > Matt > > On 4/18/07, nmall <[EMAIL PROTECTED]> wrote: >> >> Hi, >> >>

[appfuse-user] building entire appfuse M2 source with maven

2007-04-18 Thread nmall
Hi, I need to build the entire appfuse source for trying security stuff and adding acls etc. I have downloaded M2 source. What is the maven command line that I can issue to build the entire source and what resulting libraries should I put into any project that I want to use the ACL classes in.

Re: [appfuse-user] Eclipse Appfuse project errors

2007-04-17 Thread nmall
a modular > project). If so, delete them. > > Matt > > On 4/17/07, nmall <[EMAIL PROTECTED]> wrote: >> >> I am using eclipse 3.2.2. Not sure why it doesn't work for me :-( >> >> >> mraible wrote: >> > >> > What version o

[appfuse-user] hibernate error due to name change

2007-04-17 Thread nmall
Hi I have changed a couple of column names and table names and I am getting hte following error from a hibernate SQL query. Grepped all over but cannot find the query which is using this "name" - possibly happening due to role.name being changed to role.role_name. Thanks for your help! I am run

Re: [appfuse-user] Eclipse Appfuse project errors

2007-04-17 Thread nmall
ferences*. > Select the *Java > Build Path > Classpath Variables* page and set > *M2_REPO*to equal > *~/.m2/repository* (c:\Document and Settings\yourusername\.m2\repository > on > Windows). > > If this doesn't work - I suspect you're using an older version of Ec

[appfuse-user] Eclipse Appfuse project errors

2007-04-17 Thread nmall
Hi, I am trying to setup my appfuse project in eclipse. Did the following mvn eclipse:eclipse in the root directory of my project Set M2_REPO as required in the classpath in Eclipse However, when I try to import existing projects into workspace using File->Import->Existing Projects into

[appfuse-user] Eclipse Appfuse project errors

2007-04-17 Thread nmall
Hi, I am trying to setup my appfuse project in eclipse. Did the following mvn eclipse:eclipse in the root directory of my project Set M2_REPO as required in the classpath in Eclipse However, when I try to import existing projects into workspace using File->Import->Existing Projects into

Re: [appfuse-user] Problem saving user or logging in

2007-04-17 Thread nmall
This doesn't work probably 'cos I have changed the names of the tables. Thanks. mraible wrote: > > mraible/tomcat -> admin user > tomcat/tomcat - normal user > > On 4/17/07, nmall <[EMAIL PROTECTED]> wrote: >> >> Thanks, the command went thru'

Re: [appfuse-user] Problem saving user or logging in

2007-04-17 Thread nmall
Thanks, the command went thru' but what is the default - I tried tomcat/A male kitty, tomcat/mraible and others that were in sample-data.xml. It didn't work. mraible wrote: > > Sorry, I meant to type "mvn dbunit:operation". > > Matt > > On 4/

Re: [appfuse-user] Problem saving user or logging in

2007-04-17 Thread nmall
ke the user you're > trying to add already exists. If you run "mvn hibernate:operation" > (or "ant db-load" with 1.x), you should be able to login with the > default users in sample-data.xml. > > Matt > > On 4/17/07, nmall <[EMAIL PROTECTED]>

Re: [appfuse-user] Problem saving user or logging in

2007-04-17 Thread nmall
tabase. Looking at > your log (2nd line from the bottom), it looks like the user you're > trying to add already exists. If you run "mvn hibernate:operation" > (or "ant db-load" with 1.x), you should be able to login with the > default users in sample-data

[appfuse-user] Problem saving user or logging in

2007-04-17 Thread nmall
Hi, I am having a problem logging in as a user that exists - it gives " invalid user name and password - please try again" error. Now these users/passwords exist in sample-data.xml as well as the database. I set log levels to DEBUG on the appfuse as well as acegisecurity modules. IT looks like t

Re: [appfuse-user] build error from mvn integraton-test

2007-04-17 Thread nmall
Thanks a lot! There were some junk characters at the beginning of the sample-data.xml. Matt, you are a genius! nmall wrote: > > Hi, > > Things were working quite well with appfuse m4 and suddenly I am getting > this error from mvn -e integration-test or mvn -e jetty:run-war fo

[appfuse-user] build error from mvn integraton-test

2007-04-17 Thread nmall
Hi, Things were working quite well with appfuse m4 and suddenly I am getting this error from mvn -e integration-test or mvn -e jetty:run-war for that matter. [INFO] [compiler:testCompile] [INFO] Nothing to compile - all classes are up to date [INFO] [dbunit:operation {execution: test-compile}

Re: [appfuse-user] multiple questions

2007-04-11 Thread nmall
gt; > On 4/11/07, nmall <[EMAIL PROTECTED]> wrote: >> >> >> Hi, >> >> 1) I downloaded appfuse source from svn and still cannot find tehe >> LoginServlet.java and other jsps. How do we get these so we can modify >> them >> and use them. >

[appfuse-user] multiple questions

2007-04-11 Thread nmall
Hi, 1) I downloaded appfuse source from svn and still cannot find tehe LoginServlet.java and other jsps. How do we get these so we can modify them and use them. 2) Can we use ant with appfuse 2.x. I am quite new to Maven and not sure we can build a whole new app with it. 3) I was trying to add

Re: [appfuse-user] AppFuse 2.0 AND ACEGI integration

2007-04-11 Thread nmall
.org/docbook/acegi.html#after-invocation-acl-aware > > Personally, I haven't implemented ACLs in a product application (only > in sample applications), so I can't really comment on which system is > better. > > Matt > > On 4/10/07, nmall <[EMAIL PROTECTED]

[appfuse-user] AppFuse 2.0 AND ACEGI integration

2007-04-10 Thread nmall
Hi, I am looking at http://raibledesigns.com/wiki/Wiki.jsp?page=AppFuseAcegiACLAddModelsAndHibernate http://raibledesigns.com/wiki/Wiki.jsp?page=AppFuseAcegiACLAddModelsAndHibernate and realize this is for Appfuse 1.x. Now, does 2.0 M4 have all this integrated into a jar file, since the t

[appfuse-user] Unable to access article on AppfuseSecurity

2007-04-10 Thread nmall
Hi, I am unable to access the following article : How to use Acegi Security to control access to objects with ACLs. It is on the AppfuseSecurity link - http://raibledesigns.com/wiki/Wiki.jsp?page=AppFuseSecurity http://raibledesigns.com/wiki/Wiki.jsp?page=AppFuseSecurity . I thought this would

[appfuse-user] ACEGI Security and Hibernate

2007-04-10 Thread nmall
Fuse+Core+Classes > > Mike > > On 4/10/07, nmall <[EMAIL PROTECTED]> wrote: >> >> >> I used the following archetype to get the Struts2 basic with spring and >> hibernate. However, I don't see any of the hibernate classes\config files >> in >

  1   2   >