Hello, I have LDAP running on z/os 1.9. It has both secure and non-secure interfaces. The following shows the jcl that I use as a client to the LDAP which is talking to RACF
//LDAPSRCH EXEC PGM=IKJEFT01,DYNAMNBR=50,REGION=2048K //ENVVAR DD DSN=SYS1.MVSZ.LDAPARMS(LDAPCENV),DISP=SHR //SYSEXEC DD DISP=SHR,DSN=SYS1.GLD.SGLDEXEC //SYSPROC DD DISP=SHR,DSN=SYS1.GLD.SGLDEXEC //SYSTSPRT DD SYSOUT=* //SYSPRINT DD SYSOUT=* //SYSUDUMP DD SYSOUT=* //SYSTSIN DD * ldapsrch -d ALL -h 10.190.0.3 -p 636 -s base -K aaaaaaazring + -w bbbbbbbb -Z -L + -D racfid=aaaaaaa,profiletype=user,sysplex=sysplex1 + -b racfid=aaaaaaa,profiletype=user,sysplex=sysplex1 "OBJECTCLASS=*" //SYSIN DD DUMMY // -----Original Message----- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Wolfgang Schäfer Sent: Wednesday, October 15, 2008 1:34 PM To: [email protected] Subject: Re: Acessing LDAP data on other servers from z/OS Hello Andy, z/OS comes with an LDAP client which is of course hidden in the unix system services :-) If you enter the command 'ldapsearch" from the shell without parameters it gives you some syntax synopsis ... probably the last lines are the most important ones: "Refer to "IBM Tivoli Directory Server Client Programming for z/OS", Document Num ber: SA23-2214, for complete documentation" (this is on z/OS 1.9) But since ldapsearch is something like a standard in the world, google could be your friend as well to learn the (for me) strange looking LDAP query language ... Cheers from Germany Wolfgang ----- Original Message ----- From: "Andy Robertson" <[EMAIL PROTECTED]> Newsgroups: bit.listserv.ibm-main To: <[email protected]> Sent: Wednesday, October 15, 2008 1:16 PM Subject: Acessing LDAP data on other servers from z/OS > We have some LDAP servers running under Lotus Notes on AIX boxes and we > want to check/validate some data held on z/OS against them. The > validation > process must run on z/OS. > > I've no real experience of using LDAP. > > I'm aware that z/OS can run a LDAP server but that is not quite what we > want. > > Is it possible to access LDAP data on another box from the USS side of > z/OS > and how would one start?? Any pointers or manuals to read?? > > > > > > > > ~~~~~~~~~~~~ Andy Robertson telephone mobile 0777 214 9545 home 01273 > 488272 > > ********************************************************************** > This email is confidential and may contain copyright material of the John > Lewis Partnership. > If you are not the intended recipient, please notify us immediately and > delete all copies of this message. > (Please note that it is your responsibility to scan this message for > viruses). Email to and from the > John Lewis Partnership is automatically monitored for operational and > lawful business reasons. > ********************************************************************** > > John Lewis plc > Registered in England 233462 > Registered office 171 Victoria Street London SW1E 5NN > > Websites: http://www.johnlewis.com > http://www.waitrose.com > http://www.greenbee.com > http://www.johnlewispartnership.co.uk > > ********************************************************************** > > ---------------------------------------------------------------------- > For IBM-MAIN subscribe / signoff / archive access instructions, > send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO > Search the archives at http://bama.ua.edu/archives/ibm-main.html > ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/ibm-main.html ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/ibm-main.html

