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' but what is the default - I tried tomcat/A >> male

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

2007-04-17 Thread Matt Raible
mraible/tomcat -> admin user tomcat/tomcat - normal user On 4/17/07, nmall <[EMAIL PROTECTED]> wrote: 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 mean

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/17/07, nmall <[EMAIL PROTECTED]> wrote: >> >> mvn

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

2007-04-17 Thread Matt Raible
Sorry, I meant to type "mvn dbunit:operation". Matt On 4/17/07, nmall <[EMAIL PROTECTED]> wrote: mvn hibernate:operation doesn't work for me - here is the error. + Error stacktraces are turned on. [INFO] Scanning for projects... [INFO] Searching repository for plugin with prefix: 'hibernate'

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

2007-04-17 Thread nmall
mvn hibernate:operation doesn't work for me - here is the error. + Error stacktraces are turned on. [INFO] Scanning for projects... [INFO] Searching repository for plugin with prefix: 'hibernate'. [INFO] [ERROR] BUILD ERRO

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

2007-04-17 Thread Matt Raible
Can you try running rm -r src/main/webapp/WEB-INF/classes/org/appfuse/model/*. It's possible you have old classes lying around with the old table names. For debuggging, if you're using an IDE, you should be able to find the sources in your project, set a breakpoint (in something like UserManager

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

2007-04-17 Thread nmall
Actually, even when I enter an entirely new user, it refuses to add it. I have changed the names of the tables app_user and role to sa_account_user and sa_account_role. I have done this in c:\work\testapp\src\main\java\org\appfuse\model\User.java, Role.java as well as in sample_data.xml. When I

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

2007-04-17 Thread Matt Raible
The user's id is supposed to be null when you signup a new user - it's assigned after the record is inserted into your database. 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

[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