I tried your suggestion with serverSideRedirect but that didn't seem to do anything, it's still redirecting.
Type: Posts; User: theone; Keyword(s):
I tried your suggestion with serverSideRedirect but that didn't seem to do anything, it's still redirecting.
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...
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...
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
But the error message says:
Caused by: java.lang.IllegalArgumentException: Removing a detached instance test.domain.Person#1
@Entity
public class Person implements Serializable {
@Id
@SequenceGenerator(name="id_seq")
@GeneratedValue
private Long id;
@Temporal(TemporalType.DATE)
private Date dob;
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,...
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...
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,...
Sorry,
I'm not getting any response from Hibernate forum. Can someone help?
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...
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....
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...
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...
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...
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...
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> ...
Yes, I'm using TransactionManager.
Can you show me an example how to use OpenSessionInViewFilter?
Thanks
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...
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...
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...
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
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...
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...
I did pass the EditUser Object as the command class...