i'm having the same problem. Did you manage to display a custom access denied page?
Type: Posts; User: vivip; Keyword(s):
i'm having the same problem. Did you manage to display a custom access denied page?
Hi,
i case someone is intrested we resolved this issue bt using ajax,
selecting the type wanted calls ajax with the parameter of the wanted object and the view to render, the controller calls...
Hi,
first issue was resolved:
unauthenticated user is redirected to login page for each rul request.
This is done by:
<beans:bean id="authenticationEntryPoint"...
Hi,
thanks for your reply.
i think i didn;t explain correctly what i want to todo.
i want to achieve two things:
1.for unauthenticated user - for any url (secured or not) will redirect to him...
Hi,
i'm using tiles2, spring 2.5 and spring security 2.0.3
1.i want to display a custom access denied page when an authenticated user tries to access a page without
the role needed,for now...
Hi,
Today i found out that the method i want to secure shouldn't be in the controller,
but in a Spring Bean, that is an object that is created by Spring and injected into another Bean.
My...
Hi,
i'm trying to secure a method, i have servlet.xml and application-context-security.xml
in servlet.xml i have my url mapped to thier controllers, so i want to add the method security...
Hi,
i used acegi 1.0.7 and now upgraded to spring security 2.0.3
i'm using a different DB schema,so i wanted to extend
org.springframework.security.userdetails.jdbc.JdbcDaoImpl (spring...
Hi,
i'm dealing with the same problem as i was to check the users organization in DB,the j_orgId is an extra input in login.jsp ,
i don't want to concatenate it , how can i read the extra input...
Hi,
i'm using the same page for adding and editing , having no problem.
i think that if on your add page you can add items to the list and they get binded , you shouldn't have problem with...
Hi,
i know the posts are old, but i used the same solution described here as for populating the combo box with Enums by referenceData method.
My problem is that the jsp combo gets populated...
Hi,
i have just started using spring 2.5 , sorry for my question:
i am using SimpleFormController.
i have a list i want to populate,so i added the list in the referenceData method.
when the jsp...
Hi,
I used the LazyList and it works great for adding new records:
with javascript i add new records and they get binded by spring.
My problem is that i want to allow delete record option as well,...
Thank,it worked!
By using a different controller i need to handle my command in a session scope,i was thinking of using the same controller for the iframe and change the view using a parameter,but i...
Hi,
Thanks a lot for the quick explanation!
i didn't quite understand what you mean by :
src="/SPRINGWEBFLOWWeb/hierarchyController.do
or src =<%=request.getContextPath()%>/jsp/hierarchy.jsp ...
Hi,
i'm having the same problem.
Did you find any solution?
Hi,
i am new in spring,so this question maybe very basic one,i'm using spring MVC 2.5.
i want to use binding in the iframe src (the inner jsp).
i have two pages,using the same SimpleFormController...
Thanks for your replay.
I'm trying to register a propertyEditor i created:
in initBinder:
binder.registerCustomEditor(MyClass.class,"MyClass.instanceName", new TestEditor());
the TestEditor...
I have the same situation and it works well , when i initiate (hard coded)
the interface with IMPL_1 i can bind it's attribute and see it's default value and when i change the initilaztion to IMPL_2...
Hi,
I just started working with Spring(2.0.2) and i don't understand how use dynamicly binding,
this is my problem:
i have a command with an interface A as a member and class B and class C which...
I just started working with Spring and having an interface member in the command i thought of the same
solution,but i don't understand the use of PropertyEditor:
in the example above:
"protected...
Hi,
It took me a while to find it,but here it is:
The way to activate an event in the new form tag is:
<form:input path="product.amount" onclick="javaScriptFunction"/>
and if you want to add...