Well! I think I got it! :)
I was using the wrong objectclass because what wanted back was PERSON records, not group records.
I used this code:
AndFilter andFilter = new AndFilter();...
Type: Posts; User: pk1023; Keyword(s):
Well! I think I got it! :)
I was using the wrong objectclass because what wanted back was PERSON records, not group records.
I used this code:
AndFilter andFilter = new AndFilter();...
OKay, whew, I am still working on this.
I have switched to this code:
AndFilter filter = new AndFilter();
filter.and(new EqualsFilter("objectclass", "group"));
filter.and(new...
Yeah I know, I didn't give much detail. Thrusday was a bad day and I was ready to be out of the building!
I am running this against Active Directory.
I want to get a list of the member DNs from...
I am desperately trying to get the list of members in a group from a ldapTemplate search.
here's the code that I have that doesn't work:
public List getAllGroups() {
AndFilter...
All right, hopefully this is super simple.
I am using WebServiceTemplate and a custom WebServiceClient to call a webservice.
I need to set custom HTTP header of "Internal" and "True".
How...
Okay, So I have no idea what I am doing, and it's probably all because I am not qualified to be doing all this. But, anyway I want this SOAPHeader:
<miso-header:SoapHeader...
Hey all, I have this code:
public void simpleSendAndReceive(String message) {
ApplicationContext context = WebApplicationContextUtils.getWebApplicationContext(srvCTX);
...