Did you ever get this working? I'm experiencing the same issues.
Type: Posts; User: rshan; Keyword(s):
Did you ever get this working? I'm experiencing the same issues.
AdAuthenticator:
import javax.naming.NamingEnumeration;
import javax.naming.directory.SearchControls;
import javax.naming.directory.SearchResult;
import javax.naming.ldap.InitialLdapContext;
...
This should be included in the Spring Security documentation.
I culled various bits of information from google searches and came up with the following working solution using Spring 3.0.3, Spring...
Why was this method removed in 2.0.0.RC1? It was very useful for presenting configured steps in a UI.
Is there another way to do this?
I have a step with an ItemProcessor that throws a fatal exception. I would expect that the net result would be a step with 'Failed' status. Instead it stays in 'Running' status because...
I should've been more clear... _writeCount is a private member of my ItemWriter and is part of the work around. Without the listener and call to StepExecution.setWriteCount the framework has no idea...
I'm running 2.0.M3.
I have a step that writes multiple db records for each read input item. As such, the write count, in real time while the step is running, and at the end is not correct.
I've...
I've decided on a custom CompositeItemWriter solution. However, I'm still facing an issue with maintaining writeCount. I thought I would be able to maintain it with an afterWrite listener, but the...
I have a use case whereby each object returned by my itemReader<I> is transformed into 1 or more objects to be written by my itemWriter<O>. Until now I've been following the itemReader<I>,...