Search:

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

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. I tried your suggestion with serverSideRedirect...

    I tried your suggestion with serverSideRedirect but that didn't seem to do anything, it's still redirecting.
  2. how to forward instead of redirect when session expired

    Is there a way to forward the request instead of redirect?

    Here is the scenario, user is challenged with the login page when click on an url and the session is expired. After a successful...
  3. How to user info without restarting the app

    Hi,

    I'm using basic authentication using jdbc dao. Is there a way to invalidate the user info in memory without restarting the app? I want the changes to an existing user or the newly added user...
  4. Replies
    1
    Views
    1,117

    Use browser login window

    Instead of using my own login dialog page, I would like to challenge the users with the browser built-in login dialog. Can someone show me how to configure that in Acegi?

    Thank you
  5. Replies
    18
    Views
    6,403

    But the error message says: Caused by:...

    But the error message says:
    Caused by: java.lang.IllegalArgumentException: Removing a detached instance test.domain.Person#1
  6. Replies
    18
    Views
    6,403

    here is that entity

    @Entity
    public class Person implements Serializable {
    @Id
    @SequenceGenerator(name="id_seq")
    @GeneratedValue
    private Long id;

    @Temporal(TemporalType.DATE)
    private Date dob;
  7. Replies
    18
    Views
    6,403

    getJpaTemplate create or remove error

    Hi,

    I'm extending JpaDaoSupport in my dao. I'm able to query and update to the database. But when I try to add a new record or delete a record I'm getting the following errors:

    For delete,...
  8. Replies
    1
    Views
    2,176

    Forwarding to different controller in another web context

    Hi,

    I'm facing a similar problem and don't know how to solve it.

    I have two different web contexts in my app. A login web context A and an application web context B. When user logs in...
  9. Error configuring application listener of class org.springfr

    Hi,

    I'm trying to test a web app using spring framework in eclipse 3.0.
    When I start JBoss 4 in Eclipse, I'm getting this error:

    16:39:16,287 INFO [TomcatDeployer] deploy, ctxPath=/xsl,...
  10. Sorry, I'm not getting any response from...

    Sorry,

    I'm not getting any response from Hibernate forum. Can someone help?
  11. How do I do a query like this using HibernateDaoSupport?

    Hi,

    I have a USERLOG table and an ACTIVITY table. the relationship is one-to-many respectively.

    USERLOG has a primary key made up of userid and date fields.
    ACITITY has a foreign key made up...
  12. Replies
    3
    Views
    1,564

    The form method is set to POST I basically...

    The form method is set to POST

    I basically used the existing working formController by renaming it and changing the codes inside the function. I can't think of anything tha I'm doing differently....
  13. Replies
    3
    Views
    1,564

    Question on SimpleFormController

    Hi,

    I've this one particular formController I can never figure out why it doesn't work. When I click on the submit button, it never calls to the OnSubmit function, instead the FormBackingObject...
  14. Thought I would post the related files here......

    Thought I would post the related files here...
    again, my problem is i cannot add or update the collections (which is members in this case) when a user is added or modified.
    deleting a user is no...
  15. Cannot update or add to a collection using lazy=true

    I can add, update and delete a record in the User table but I cannot add or update to the collection that is related to that user record.

    When I delete a user all the roles related to that user...
  16. Replies
    6
    Views
    3,311

    Now that I can add, update and delete a record in...

    Now that I can add, update and delete a record in the User table but I cannot add or update to the collection that is related to that user record.

    When I delete a user all the roles related to...
  17. Can you show me the example code as how you...

    Can you show me the example code as how you actually add or update a record in the SimpleFormController?

    I follow the instruction to configure web.xml, I use TransactionMananger

    <filter> ...
  18. Yes, I'm using TransactionManager. Can you...

    Yes, I'm using TransactionManager.

    Can you show me an example how to use OpenSessionInViewFilter?

    Thanks
  19. How the "lazy" loading to be configured properly w

    I'm having a problem with lazy=true.
    When set lazy=true, I got the following error when access the form view

    [9/10/04 13:40:33:266 EDT] 5119d012 SystemOut O Hibernate: select member0_.userid...
  20. Replies
    6
    Views
    3,311

    Correction to my last post... After save, it...

    Correction to my last post...

    After save, it returns the object with the correct modified values.
    However, when I look in the database, the records were deleted but the new records were never...
  21. Replies
    6
    Views
    3,311

    That is similar problem I'm having too. I'm...

    That is similar problem I'm having too. I'm using TransactionManger. I'm deleting the existing records, from the "Groups" table which is many-to-one to the "Users" table, before I add the new...
  22. Yes I'm running Spring IDE plugin for...

    Yes

    I'm running Spring IDE plugin for Websphere
    org.springframework.ide.eclipse.beans_1.0.3
    org.springframework_1.0.2
    Hibernate2.1

    User.hbm.xml
    <hibernate-mapping>
    <class
  23. Continuation of previous post Another problem...

    Continuation of previous post

    Another problem that I'm having is when working with an existing record, updating the User Object works. When I try to add to the member table
    the new records...
  24. could not reassociate uninitialized transient collection

    Hi,

    I have a couple problem with Hibernate inserting a new record.

    I'm using HibernateTransactionManager in the service layer.

    I've a form that is binded to a model "UserEdit" Object which...
  25. I did pass the EditUser Object as the command...

    I did pass the EditUser Object as the command class...
Results 1 to 25 of 42
Page 1 of 2 1 2