Hi,
I am new to Spring security and Acegi and i am trying to achieve NTLM authentication. The thing that i don't understand is that there's no authentication provider for NTLM.
In older posts...
Type: Posts; User: bengali; Keyword(s):
Hi,
I am new to Spring security and Acegi and i am trying to achieve NTLM authentication. The thing that i don't understand is that there's no authentication provider for NTLM.
In older posts...
Hi,
i experiment a nasty problem due to SpringSessionSynchronization called in the beforeCompletion phase of the JTA transaction. Even in a JTA transaction it closes the hibernate session. I...
You are right thanks it's explained in paragraph "6.6.1. Understanding AOP proxies"
Hi,
I enabled @Transactional annotation and it seems that some methods are not transactional (they do not start a transaction). The annotated bean implements an interface (JDK dynamic proxy) and...
I think the issue comes from the fact that Spring by default use the following piece of code to retrieve the classloader:
Thread.currentThread().getContextClassLoader();
The problem is...
Hi,
I have problems using ContextSingletonBeanFactoryLocator and classloader issues
with Jboss. I know it's totally Jboss related but i really need to find out why it doesn't work and maybe...
Hi,
I have a method in a Hibernate DAO (which extends HibernateDaoSupport) where I would like to perform raw JDBC. Actually, I have a complex mapping between objects and RDBMS tables and for...
The problem is worse than I thought.
Actually, I tried to create a common class that extended SimpleFormController and that in turn all my (SimpleFormController) controllers extended. This class had...
Hi,
I configured an HandlerExceptionResolver to intercept some business exceptions and display a nice error message in the view. I am able to retrieve the command of the controller (I stored it in...
Juergen answered on Jira (thanks Juergen):
" The problem here is that your target class implements an interface, but you still want your callers to talk to your target class directly. This...
I already posted about this issue but I have been able to narrow cases where it happens.
I get the following error:
"org.springframework.beans.TypeMismatchException: Failed to convert property...
Hi,
I have just read this blog entry http://www.jroller.com/page/malbari?entry=javaee_5_spring_2_and#comments that explains 2 different techniques to inject plain POJOS into EJB3 beans using...
I upgraded to Spring 2.0 M2 and the dependent libraries cglib-nodep-2.1_3.jar, aspectjweaver.jar,aspectjrt.jar) and still get the same error:
...
Ok thanks Rod.
that's what I thought with the name of the proxy class. Waiting for M2 suits me well since I am busy with other stuff and I am just experimenting AspectJ. As soon as it's released...
Hi,
I am currently testing the AspectJ AOP features of Spring 2.0 M1 and I got an error regarding the generated proxy which is not of type expected.
Actually, I wanted to transparently inject...
Ok I have found a way (in the documentation) to get the underlying beanFactory 's bean prepending its name with &.
It's not very clean but it works:
ApplicationContext ctx = new...
I know it's old but that's the version of the not so old Weblogic server 8.1. And I didn't want to use Weblogic's proprietary proxies.
I finally managed to create JDK dynamic proxies to remote...
Hi,
what would be the strategy to change the URL of a remote service at runtime ? Actually, I have a client which needs to connect to many remote services implemented as HttpInvoker services. They...
Hi,
From what I have seen in the documentation, it's possible to create proxies to remote MBeans via the MBeanProxyFactoryBean class. Does Spring provide a similar Proxy factory for JMX 1.0 MBean...
Hi,
I am using a SimpleFormController to implement a Login controller.
Users are redirected to this controller when they are not authenticated
(via an intereceptor) and a special hidden field...