Has anyone had any luck dumping out identity information, specifically requester identities from the Lawson Security Module.
You can also use the ssoconfig from the command line in Unix.
ssoconfig -c
5 Manage Lawson Services
6 Export Serivce and identity info
And if you only want one service, you would chose NO
Then specify which service you want to pull
The rest is pretty self explanitory.
Posted By ccubitt on 02/01/2010 08:31 AM You can also use the ssoconfig from the command line in Unix. ssoconfig -c
This is the method I usually use. It's quick and easy and gives an XML file that's pretty simple to parse out.
John Desmarais
You can also dump the information using ldifde or csvde. I use csvde and parse the resultant .csv file programmatically to clean up the dump. Here's the syntax I use to dump the rm and sm information.
ldifde -j d:\adam_export -f c:\adam_export\rmldif.ldif -s chocnt-107.ad.choc.org -d "OU=resources,O=lwsnrmdata,CN=lwsn,DC=choc" -v -a cn=root,cn=lwsn,dc=choc *
ldifde -j d:\adam_export -f c:\adam_export\mdldif.ldif -s chocnt-107.ad.choc.org -d "OU=idxref,O=lwsnSecData,CN=lwsn,DC=choc" -v -a cn=root,cn=lwsn,dc=choc *
csvde -f d:\adam_export\sm.csv -s chocnt-107.ad.choc.org -j d:\adam_export -d "OU=idxref,O=lwsnSecData,CN=lwsn,DC=choc" -v -a cn=root,cn=lwsn,dc=choc *
csvde -f d:\adam_export\rm.csv -s chocnt-107.ad.choc.org -j d:\adam_export -d "OU=resources,O=lwsnrmdata,CN=lwsn,DC=choc" -v -a cn=root,cn=lwsn,dc=choc *
Jim