Hi Qiulu,
Did you sort this? I'd be interested in your implementation. I'm still finishing mine.
Cheers
Glenn
Type: Posts; User: glenn2041; Keyword(s):
Hi Qiulu,
Did you sort this? I'd be interested in your implementation. I'm still finishing mine.
Cheers
Glenn
Cheers 'stevedick' for the heads up on the quick fix; removing the import for org.springframework.orm.jpa.support solved my problem.
I'll revert once we bring Eclipse 3.5 onboard
Hi all,
I'm developing an Eclipse RCP application that uses five separate databases & ldap. It'll be deployed via WebStart into our internal network from an instance of WebSphere. The problem is...
Hi,
I'm a fan of the JdbcTemplate, but there is one helper method I've needed that I've had to code into an extension of it. I think it would be a good candidate for inclusion.
It's a cross...
Thanks very much for your help gents.
I thought I'd post the final code for anyone who need it. If you don't want to worry about the potential cyclic recursions, the code can become a lot more...
Unfortunately the implementation of AD here isn't well unorganised. dn isn't implemented, so lookup doesn't work.
distinguishedName is a common property that exists in all entries.
I found what...
Cheers for the heads up on the ldapTemplate.lookup(...). I'll check it out.
I slightly simplified the code that I originally posted, as the actual code is limiting how many levels to traverse (to avoid potential cyclic recursions).
Here's the full code:
class...
Hi all,
I'm getting a strange result from the following code:
List<UserRole> results = getLdapTemplate().search("", new EqualsFilter("distinguishedName", distinguishedName).encode(),
...
I realise that this thread is old, but I thought I'd share a project I found for Eclipse RCP Spring integration: https://sourceforge.net/projects/eclipse-spring/
I have yet to implement it - just...
Hi all,
I figure out what the problem was:
The contextScope.base was in the incorrect order.
I had set to "DC=nz,DC=co,DC=company" should have been "DC=company,DC=co,DC=nz".
Happy happy...
Hi all,
I was having a problem connecting to the source, but I solved that by adding Context.REFERRAL = 'follow' to the baseEnvironmentProperties.
But now when I do a search, I'm getting a...
Good as. Cheers for that.
Hi all,
I'm trying to set the cssClass depending on the value of a boolean variable using JSP 2.0 EL.
'directDebitEnabled' is a boolean. when it is false I want the class to be 'disabled'.
...
By username I mean the windows signon credentials ie "doe_j" - not John Doe. Once I get "doe_j", I can query Active Directory & relevant details I need - primarily security roles.
I have found...
Hi all,
I'm trying to access the windows username for use with Spring LDAP.
Does anyone know how to achieve this?
Any help would be much appreciated.
Cheers
Glenn
I'm not sure if it will work via WS, but you can try Apache Betwixt (http://jakarta.apache.org/commons/betwixt/). This will makes easy work of transforming pojo's to xml.