Search:

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

Search: Search took 0.05 seconds.

  1. Replies
    3
    Views
    1,865

    Same Issue

    I am also having the same issue. The actual exception I see is:

    javax.xml.transform.TransformerFactoryConfigurationError: Provider org.apache.xalan.processor.TransformerFactoryImpl not found
    ...
  2. Solved

    Use the SavedRequest object Acegi sticks in the session under the constant:


    org.acegisecurity.ui.AbstractProcessingFilter.ACEGI_SAVED_REQUEST_KEY

    Thanks!

    A.
  3. How to emulate post-login redirection on a signup page?

    We have a "signup" link on our login page which works as expected. Now, we would like to have users redirected to the original page they wanted after they signup and are logged in. Exactly like what...
  4. I have indeed attempted it, without success. But...

    I have indeed attempted it, without success. But I don't really understand the flow enough to debug my problem.

    Also, in the same vein, I wonder about the ability of annotated pojos to handle...
  5. Not Quite

    I don't think that thread is quite what I'm after.

    I would like to use a SimpleUrlHandlerMapping to manually specify the mappings to POJO controllers and then use the @RequestMapping annotation on...
  6. Replies
    2
    Views
    1,242

    Simply use the response the way you would for a...

    Simply use the response the way you would for a standard servlet (write the image) and then return null from the controller method to indicate that the response has been handled.

    A.
  7. Explicit Mapping in Combination with Annotations

    Is the following possible?


    use a traditional SimpleUrlHandlerMapping to map base paths
    use @RequestMapping annotations to map to methods

    e.g. if /foo/bar should map to FooController.bar(),...
  8. Replies
    1
    Views
    957

    Losing Functionality to Annotations?

    If using the new annotations to define a controller, in particular the @RequestParam annotation, do we lose the functionality of the various abstract Controller implementations? For example, the...
  9. I Need the Current User

    This thread exposes one of my problems: a domain object might need a specific "created_by" field to be populated with the user creating the object. How do you deal with this in tests that aren't...
  10. Replies
    4
    Views
    2,822

    Use Old ACL Package?

    This thread brings up a question that I really should answer right away:

    I am beginning work today on a user story that requires the ability for some domain objects to be publicly readable and for...
  11. Any Updates?

    I'm wondering if this ever did make it into a Jira issue/or get implemented?

    Thanks,

    A.
  12. Replies
    6
    Views
    1,456

    So would it be possible to create an Interface...

    So would it be possible to create an Interface that does not throw exceptions and use a proxy to implement it?

    I guess at this point, I might as well just create a wrapper class…

    A.
  13. Replies
    6
    Views
    1,456

    Wrapping the Exception?

    Would it be possible to wrap the checked exception in a runtime exception using some form of proxy then?

    Thanks,

    A.
Results 1 to 13 of 13