Re: [appfuse-user] Spring errors in 2.0-M5

2007-06-11 Thread donleyp
I was getting similar errors to these (specifically, the last one you listed) after adding a dependency in my 2.0-m4 appfuse based project to spring-ws 1.0-rc1. To diagnose the problem I told mvn to skip tests to see what it was producing in the WEB-INF/lib directory and it turns out that it was i

[appfuse-user] Cascading delete from User to my own model objects.

2007-06-01 Thread donleyp
I am getting the following error when I try to delete a user: "java.sql.SQLException: ORA-02292: integrity constraint (FTAP_DEMO.FK1D0C220DF503D155) violated - child record found" I looked at the DDL generated by hibernate and it does not contain the cascade delete clause in the alter table state

Re: [appfuse-user] Testing security during unit tests.

2007-03-27 Thread donleyp
(), "classpath:**/security.xml"); } This could be considered a bit kludgy. Is there a way of configuring this rather than coding it? Thanks! Donley donleyp wrote: > > I am having trouble using Acegi inside my unit tests. > > The following is a unit test for my "Acc

[appfuse-user] Testing security during unit tests.

2007-03-27 Thread donleyp
I am having trouble using Acegi inside my unit tests. The following is a unit test for my "AccountDao" class. public class AccountDaoTest extends BaseDaoTestCase { private AuthenticationManager authenticationManager; private AccountDao accountDao; private UserDao

[appfuse-user] Integration Test Failures When Using Oracle

2007-03-24 Thread donleyp
I've just started using AppFuse on a project at work and it really helped me get up and running quickly. Thanks to all the devs on this project for the great product. We use Oracle here and I did not want to start a project using MySQL and possibly get stuck with a bunch of migration problems rig