I don't understand it either. I'm guessing that they'll just make up a user name and manually put it in the database table. Or, I may be wrong, and they'll use the entire DN without canonicalizing...
Type: Posts; User: erjablow; Keyword(s):
I don't understand it either. I'm guessing that they'll just make up a user name and manually put it in the database table. Or, I may be wrong, and they'll use the entire DN without canonicalizing...
I am told that I don't have much control over the dn format in people's certificates. One certificate might read:
cn=Eric Jablow, ou=Development, ou=IT, l=Poughkeepsie, s=NY, o=Initech, c=US.
...
Because the project I am working on works with many organizations, which make up their own rules for creating distinguished names, the standard subject-principal-regex will not work.
<x509...
I am trying to use DWR with Spring 2.5.6, and I cannot get DWR to vend /dwr/engine.js and its related JavaScript files. In fact, I ended up putting a breakpoint in DispatchServlet, and the attempt to...
Not only that: The setApplicationContext method isn't being called in time.
I was using a suggestion in another thread of overriding newFileUpload to add the progress listener. However, that...
I'm subclassing CommonsMultipartResolver so I can attach a ProgressListener to it, with the goal of using AJAX to access my progress listener and show upload prograss in a progress bar. Can I place...
Thanks, but I managed to solve the problem with help from user 'dkarr'. Strangely, his reply never showed up as a private message or a forum post. The problem was that by setting the mapping to /*...
I'm trying to figure out how to write a simple web application where URLs like http://myhost.com/myapp/page.html are handled by appropriate @Controller classes with @RequestMapping("/page.html") and...
Thank you for fixing the documentation for the next release of the manual.
I'm sorry for taking everyone's time. It turned out, after I reverted my configuration to an older one that worked, that the problem was the stray
<tx:annotation-driven/>
that I slipped into...
If it helps, I'm seeing this while debugging. First, the routine ContextSourceTransactionManager.doCleanupAfterCompletion() is called with a CompensatingTransactionObject as input. This leads to the...
Unfortunately, I work on a closed network, and so I can't send the entire test case. I'm only providing excerpts of the files; I'm retyping them, so I'm leaving out headers. Here's the structure...
I did debug further. It turns out that the 'bindResource' method of TransactionSynchronizationManager is called once with key the LdapContextSource and value a DirContextHolder. Unfortunately, the...
Stupid of me. I was under a misapprehension that working with LDAP transaction managers needed techniques different from working with database transaction managers. Still, I've run into a couple of...
Done. It's issue LDAP-199.
In my project, I have (too) many servcies that need LDAP 'transactionality'. Following the sample in chapter 6 of the manual (with the bug fix I reported earlier), I started with the sample code:
...
The sample xml configuration in Chapter 6 of the Spring-LDAP manual includes this element:
<bean id="transactionManager"
...
I'm running into a similar problem with Spring-LDAP 1.3.0. I have a role named supervisor that is a groupOfNames node:
In Spring code, I try
Nothing happens, even though the member I'm...
I just ran into a related issue. In order for me to set up LDAP/SSL with client certificates, I need to set up system properties containing the locations, passwords, and types of the key and trust...
Are you using the default AOP by proxies, or are you using CGILIB? I think that if you are using proxies, and if MyClass implements MyInterface, you end up with a proxy wrapper that implements...
The problem with standards is that there's too many of them. ;)
Seriously, my project is converging on a Spring/GWT solution. Spring wants me to use Spring DI on the server side, and GWT wants me...
The only thing to add is that your renderer classes should implement a common interface:
public class PdfRenderer implements Renderer {...}
public class FaxRenderer implements Renderer {...}
...
Now that JSR 330, Dependency Injection for Java, written by Bob Lee of Google Guice and Rod Johnson of SpringSource, has been approved, what is SpringSource's recommendation on writing DI code in the...
You may be able to use a lightweight directory that supports nesting of groups. I know ApacheDS does not support that, but Sun Java Directory Server has a set of object classes--nsRoleDefinition and...
We're using client X.509 certificates, so there is no password policy. We'd have to maintain the disabled state in the directory, or use the vote-based system described in Oleg Zhurakousky's blog. ...