Search:

Type: Posts; User: mihajlo; Keyword(s):

Search: Search took 0.04 seconds.

  1. Thanks, for pointing me in the right direction....

    Thanks, for pointing me in the right direction. Got the answer:)
  2. Spring Service Method Commits on an Checked Exception?!

    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...
  3. Issue Resolved!

    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...
  4. Unfortunately including weblogic-application.xml...

    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...
  5. Same Issue in WebLogic 9.2

    Hi, I am having a similar issue upgrading my app to Spring 3.0.2, see

    http://forum.springsource.org/showthread.php?t=89443
  6. No, we don't have weblogic-application.xml, in...

    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!
  7. Issue With Deploying Spring 3.0.2 app to WebLogic 9.2

    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...
  8. Opening Multiple DB Connections from DAOs?

    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...
  9. Thanks very much, adding the following lines did...

    Thanks very much, adding the following lines did the trick:


    UsernamePasswordAuthenticationToken authRequest = new UsernamePasswordAuthenticationToken(TEST_SID_1, null);
    Authentication auth =...
  10. Yes, in the onSetUp() method: protected void...

    Yes, in the onSetUp() method:


    protected void onSetUp() throws Exception {
    super.onSetUp();
    testUser = (UserDTO) authenticationService.loadUserByUsername(TEST_SID_1);
    ...
  11. "Authentication obj not found" err in JUnit Tests after adding MethodSecurityIntercep

    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...
  12. I forgot to mention I am using acegijsf:authorize...

    I forgot to mention I am using acegijsf:authorize tag...don't know if that could be the problem?
  13. Custom AccessDecisionVoter and the authorize tag

    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,...
Results 1 to 13 of 13