Thanks, for pointing me in the right direction. Got the answer:)
Type: Posts; User: mihajlo; Keyword(s):
Thanks, for pointing me in the right direction. Got the answer:)
I did a little experiment and was surprised to discover that when an exception occurs inside of my Spring “Service method” the transaction is still committed?! I recall reading somewhere that "by...
OK, I was able to finally resolve the issue: apparently it was caused by the tidal agent, which was running on the WL server and was using an earlier version of Spring (2.5.x I believe).
Just wanted...
Unfortunately including weblogic-application.xml file did not work, still got the same error message:
[wls05Prod01Mgd01:halo] 2010-05-22 16:23:17,349 ERROR...
Hi, I am having a similar issue upgrading my app to Spring 3.0.2, see
http://forum.springsource.org/showthread.php?t=89443
No, we don't have weblogic-application.xml, in fact we try to keep our code vendor-agnostic. But will give that a shot and report results. Thanks for the tip!
Hi I apologize if this is not the correct forum for this question, but we recently upgraded our fairly mature app to Spring 3.0.2 and tried to deploy on our target WebLogic 9.2 server; the deployment...
We are currently using Spring 2.0.4 and Hibernate 3.1.3; our Data Access approach is pretty standard: our DAO classes extend HibernateDaoSupport and we make use of getSession() method to obtain a...
Thanks very much, adding the following lines did the trick:
UsernamePasswordAuthenticationToken authRequest = new UsernamePasswordAuthenticationToken(TEST_SID_1, null);
Authentication auth =...
Yes, in the onSetUp() method:
protected void onSetUp() throws Exception {
super.onSetUp();
testUser = (UserDTO) authenticationService.loadUserByUsername(TEST_SID_1);
...
Ok, I realize I'm a new member and may not know a whole lot about Acegi Security, but would someone please answer one of my posts:)
I finally figured out how to protect service method invocations...
I forgot to mention I am using acegijsf:authorize tag...don't know if that could be the problem?
Hi, I'm trying to write AccessDecisionVoter to authorize access to some Web content that is protected via the authz:authorize tag; however I cannot seem to get the vote(Authentication authentication,...