SlideShare ist ein Scribd-Unternehmen logo
1 von 58
Downloaden Sie, um offline zu lesen
14 
The lazy administrator, how to make your life 
easier by using TDI to automate your work 
Klaus Bild, Wannes Rams 
UKLUG 2012 – Cardiff, Wales
UKLUG 2012 – Cardiff, Wales 
About us… 
Klaus Bild 
Senior System Architect 
kbild.ch 
twitter.com/kbild 
linkedin.com/in/kbild 
Wannes Rams 
Senior Consultant 
wannes.rams.be 
twitter.com/wannesrams 
linkedin.com/in/wannesrams
UKLUG 2012 – Cardiff, Wales 
Agenda 
• Introduction to TDI (a.k.a SDI) 
• What is TDI 
• How to use it with Domino 
• How to use it with Connections 
• Examples, examples, examples 
• Create a Wiki page with users of your Domino address book 
• Maintain Community membership through a Domino application 
• Export users last logon date per application
UKLUG 2012 – Cardiff, Wales 
Goal 
Giving you a 
basic understanding 
how you can use 
Tivoli Directory Integrator 
to reuse data which resides 
in Connections 
or Domino.
What is Tivoli Directory Integrator (TDI 7.1.1) 
aka Security Directory Integrator (SDI 7.2) 
Input 
(Feed) 
Assembly 
Line (AL) 
Output 
UKLUG 2012 – Cardiff, Wales 
Functions Flow Components 
Scripts Attribute Maps
What is Tivoli Directory Integrator (TDI) 
aka Security Directory Integrator (SDI) 
UKLUG 2012 – Cardiff, Wales 
Modes: 
• AddOnly (A) 
• CallReply (C) 
• Delete (D) 
• Delta (Δ) 
• Interator (I) 
• Lookup (L) 
• Update (U) 
• Server (S)
What is Tivoli Directory Integrator (TDI) 
aka Security Directory Integrator (SDI) 
UKLUG 2012 – Cardiff, Wales 
Available Connectors (7.1.1, more than 60): 
• Active Directory Change Detection Connector 
• AssemblyLine Connector 
• Axis Easy Web Service Server Connector 
• Axis2 Web Service Server Connector 
• CCMDB Connector 
• Command line Connector 
• Database Connector 
• Deployed Assets Connector 
• Direct TCP /URL scripting 
• custom 
• Domino AdminP Connector 
• Domino Change Detection Connector 
• Domino Users Connector 
• DSMLv2 SOAP Connector 
• DSMLv2 SOAP Server Connector 
• EIF Connector 
• File Connector 
• File Management Connector 
• Form Entry Connector 
• FTP Client Connector 
• Generic Log Adapter Connector 
• Old HTTP Client Connector 
• HTTP Client Connector 
• Old HTTP Server Connector 
• HTTP Server Connector 
• IBM MQ Connector 
• IBM Directory Server Changelog Connector 
• IdML CI and Relationship Connector 
• IT Registry CI and Relationship Connector 
• ITIM Agent Connector 
• TIM DSMLv2 Connector 
• JDBC Connector 
• JMS Connector 
• JMS Password Store Connector 
• JMX Connector 
• JNDI Connector 
• LDAP Connector 
• LDAP Group Members Connector 
• LDAP Server Connector 
• Log Connector 
• Lotus Notes Connector 
• Mailbox Connector 
• Memory Queue Connector 
• Memory Stream Connector 
• Properties Connector 
• RAC Connector 
• RDBMS Change Detection Connector 
• SAP ABAP Application Server Business Object Repository Connector 
• SAP ABAP Application Server User Registry Connector 
• Script Connector 
• Server Notifications Connector 
• Simple Tpae IF Connector 
• SNMP Connector 
• SNMP Server Connector 
• Sun Directory Change Detection Connector 
• System Queue Connector 
• System Store Connector 
• TADDM Change Detection Connector 
• TADDM Connector 
• TCP Connector 
• TCP Server Connector 
• Tivoli Access Manager (TAM) Connector 
• Timer Connector 
• Tpae IF Change Detection Connector 
• Tpae IF Connector 
• URL Connector 
• Web Service Receiver Server Connector 
• Windows Users and Groups Connector 
• z/OS LDAP Changelog Connector
UKLUG 2012 – Cardiff, Wales 
How to use TDI with Domino 
Available Connectors for Notes/Domino: 
• Domino Change Detection Connector (Mode: I): 
Enables TDI to detect when changes have occurred to a nsf database 
maintained on a Domino server and reports changed Domino documents. 
• Domino Users Connector (Mode: ADILU): 
Provides access to Lotus Domino user accounts and the means for managing 
them. 
• Lotus Notes Connector (Mode: ADILU): 
Works directly with any type of Notes Documents in any .nsf database. 
• Domino AdminP Connector (Mode: AI): 
The Domino AdminP Connector is a special version of the Lotus Notes 
Connector, the database parameter is always set to admin4.nsf. It has the 
capability to sign fields while adding a document and you can create AdminP 
request. 
Or use non Domino specific: 
LDAP Connector (ADILUΔ) / HTTP Client Connector (AILC)
Local Client Session Local Server Session IIOP session 
Yes No Yes 
Domino Users Connector Yes Yes Yes 
Lotus Notes Connector Yes Yes Yes 
No 
Yes Yes 
UKLUG 2012 – Cardiff, Wales 
How to use TDI with Domino 
Supported session types by Connector 
Supported Sessions > 
Connectors V 
Domino Change 
Detection Connector 
Domino AdminP 
Connector 
-> IIOP session gives you the highest flexibility
UKLUG 2012 – Cardiff, Wales 
How to use TDI with Domino 
If you are using IOOP sessions, perform the following: 
• Ensure the Notes.jar file does not exist in the TDI_install_dir/jars folder and any of 
its subfolders. 
• Copy Domino_data/domino/java/NCSO.jar to TDI_install_dir/jars/3rdparty/IBM or to 
the folder specified by the com.ibm.di.loader.userjars property in global.properties 
(or solution.properties).
How to use TDI with Connections 
Pre-packaged scripts with IBM Connections: 
“Official” way to go if you want to change which users are imported or 
want to change/add/get profile data. Included scripts: 
collect_dns, delete_or_inactivate_employees, dump_photos_to_files, dump_pronounce_to_files, 
fill_country/department/emp_type/organization/workloc, load_photos_from_files, 
load_pronounce_from_files, mark_managers, populate_from_dn_file, sync_all_dns 
Needs setup, has to be imported into TDI solution directory and will add 
two additional connectors (Profile/Photo) as well. 
IBM Connections API 
Gives you access to almost every function that you can access and use 
through the IBM Connections user interface. You can use standard TDI 
connectors (i.e. HTTP Client connector). Be aware that the API 
documentation is not very good (to say it nicely). 
UKLUG 2012 – Cardiff, Wales
How to use TDI with Connections 
IBM Social Business Toolkit: 
TDI is java based and therefore you can use the IBM SBT SDK to create 
your own script connectors. You have to import some parts of the SDK 
into your TDI environment. You definitely should have a developer 
background. 
-> http://de.slideshare.net/AndreasArtner/activity-stream-how-to-feed-the-beast 
Direct Database access: 
Connections stores almost everything inside the RDBMS but there is no 
public DB schema info from IBM. This is not a supported way to change 
data inside Connections (although some Partner solutions directly 
manipulate data in the database and their solutions are IBM supported). 
But you can use it to get data from Connections. 
UKLUG 2012 – Cardiff, Wales
Create a Wiki page with users of your 
Domino address book - Example 
UKLUG 2012 – Cardiff, Wales
Create a Wiki page with users of your 
Domino address book - Example 
UKLUG 2012 – Cardiff, Wales
Create a Wiki page with users of your 
Domino address book – How to 
The workflow is as follows: 
1. Get all Domino users in names.nsf 
2. Create the Wiki page Atom document 
3. Send the Wiki page Atom document to the Wikis API 
UKLUG 2012 – Cardiff, Wales
UKLUG 2012 – Cardiff, Wales 
Wiki page – How to 
1. Get all Domino users in names.nsf: 
Just use Domino Users Connector in iterator mode, easy. 
Best practice: 
Always use property files for your parameters, it will save you a lot of time 
if you want to use the AL with different servers, environments!
Wiki page – How to 
2. Create the Wiki page Atom document (AL create_Wiki_Entry_Atom): 
UKLUG 2012 – Cardiff, Wales 
• Find out how the Atom document has to be build 
(http://www-10.lotus.com/ldd/appdevwiki.nsf/dx/Wiki_page_content_ic50) 
or try the SBT playground 
https://greenhouse.lotus.com/sbt/SBTPlayground.nsf/ 
Explorer.xsp#api=Social_Wikis_API_Working_with_wiki_pages 
• Should be easy but… 
Example on SBT playground (does not work) 
• Works if you change the content line to 
<content type="text/html"><![CDATA[<p>This is James's wiki page.</p>]]>
UKLUG 2012 – Cardiff, Wales 
Wiki page – How to 
2. AL create_Wiki_Entry_Atom: 
• Define the HTML code for the page 
• Use the Prolog for the first part 
• Use the iterator to generate the list 
• Use the Epilog for the closing
UKLUG 2012 – Cardiff, Wales 
Wiki page – How to 
2. AL create_Wiki_Entry_Atom: 
• This is the final code, all on ONE line: 
<?xml version="1.0" encoding="UTF-8"?><entry xmlns="http://www.w3.org/2005/Atom"><content type="text/html"><![CDATA[<div><p dir="ltr"><strong 
style="color: rgb(67, 106, 173);font-size:large;">All data is from the Domino directory - Example for ICON UK </strong> <img src="/images/graphics-star-wars- 
300566.gif" width="151" height="100"/></p><table border="1" cellpadding="5" cellspacing="0" dir="ltr" style="border-collapse: collapse; width: 
800px;" width="246"><tbody><tr height="14"><td><strong>Name</strong></td><td><strong>Shortname</strong></td><td><strong>Title</strong></ 
td><td><strong>Company</strong></td><td><strong>Number</strong></td><td><strong>Photo (Connections photo!)</strong></td></tr><tr><td><span 
class="vcard"><a class="fn url" href="">Christian Guedemann</a><span class="email" style="display: none;">Christian.Guedemann@snt.com</span></ 
span></td><td><span class="vcard"><a class="fn url" href="">CGU</a><span class="email" style="display: none;">Christian.Guedemann@snt.com</ 
span></span></td><td>Senior System Architect</td><td>WebGate Consulting AG</td><td><a href="sip://+41008008008">+41008008008</a></ 
td><td><div style="width: 150px;height: 150px;border-radius: 75px;-webkit-border-radius: 75px;-moz-border-radius: 75px;background: url(/profiles/ 
photo.do?email=Christian.Guedemann@snt.com) no-repeat;"></div></td></tr><tr><td><span class="vcard"><a class="fn url" href="">Klaus Bild</ 
a><span class="email" style="display: none;">Klaus.Bild@snt.com</span></span></td><td><span class="vcard"><a class="fn url" href="">KBI</ 
a><span class="email" style="display: none;">Klaus.Bild@snt.com</span></span></td><td>Senior System Architect</td><td>WebGate Consulting AG</ 
td><td><a href="sip://+41004004004">+41004004004</a></td><td><div style="width: 150px;height: 150px;border-radius: 75px;-webkit-border-radius: 
75px;-moz-border-radius: 75px;background: url(/profiles/photo.do?email=Klaus.Bild@snt.com) no-repeat;"></div></td></tr><tr><td><span 
class="vcard"><a class="fn url" href="">Christoph Stoettner</a><span class="email" style="display: none;">CHristoph.Stoettner@snt.com</span></ 
span></td><td><span class="vcard"><a class="fn url" href="">CST</a><span class="email" style="display: none;">CHristoph.Stoettner@snt.com</ 
span></span></td><td>Senior IT Consultant</td><td>Fritz and Macziol GmbH</td><td><a href="sip://+41003003003">+41003003003</a></ 
td><td><div style="width: 150px;height: 150px;border-radius: 75px;-webkit-border-radius: 75px;-moz-border-radius: 75px;background: url(/profiles/ 
photo.do?email=CHristoph.Stoettner@snt.com) no-repeat;"></div></td></tr><tr><td><span class="vcard"><a class="fn url" href="">Sharon Bellamy</ 
a><span class="email" style="display: none;">Sharon.Bellamy@snt.com</span></span></td><td><span class="vcard"><a class="fn url" href="">SBE</ 
a><span class="email" style="display: none;">Sharon.Bellamy@snt.com</span></span></td><td>IT Consultant</td><td>Cube Soft Consulting</ 
td><td><a href="sip://+41003003003">+41003003003</a></td><td><div style="width: 150px;height: 150px;border-radius: 75px;-webkit-border-radius: 
75px;-moz-border-radius: 75px;background: url(/profiles/photo.do?email=Sharon.Bellamy@snt.com) no-repeat;"></div></td></tr><tr><td><span 
class="vcard"><a class="fn url" href="">Wannes Rams</a><span class="email" style="display: none;">Wannes.Rams@snt.com</span></span></ 
td><td><span class="vcard"><a class="fn url" href="">WRA</a><span class="email" style="display: none;">Wannes.Rams@snt.com</span></span></ 
td><td>Social Business Consultant</td><td>GFI</td><td><a href="sip://+41003003003">+41003003003</a></td><td><div style="width: 150px;height: 
150px;border-radius: 75px;-webkit-border-radius: 75px;-moz-border-radius: 75px;background: url(/profiles/photo.do?email=Wannes.Rams@snt.com) no-repeat;"></ 
div></td></tr></tbody></table></div> ]]></content><category scheme="tag:ibm.com,2006:td/type" term="page" label="page" /></entry>
Wiki page – How to 
3. Send the Wiki page Atom document to the Wikis API (HTTP client 
UKLUG 2012 – Cardiff, Wales 
connector): 
• This is good documented (no joke) 
http://www-10.lotus.com/ldd/appdevwiki.nsf/dx/Updating_a_wiki_page_ic50
UKLUG 2012 – Cardiff, Wales 
Wiki page – How to 
This user needs editor rights on the Wiki
Wiki page – SSL requests 
• Most Connections environments force traffic over SSL 
• If you get following error if you call the Connections API through SSL 
you have to import the Connections server certificate into 
TDI_install_dir/jserverapi/testadmin.jks (pw: administrator) 
UKLUG 2012 – Cardiff, Wales
UKLUG 2012 – Cardiff, Wales 
Wiki page – How to 
• Final step is to create an AL with combines the 
create_Wiki_Entry_Atom AL and the HTTP client connector
Community membership through a 
Domino application - Example 
UKLUG 2012 – Cardiff, Wales
Community membership - Example 
UKLUG 2012 – Cardiff, Wales
Community membership – How to 
The workflow is as follows: 
1. Iterate through all Community entries in the Notes DB 
2. Create Community if it is a new Community 
• Check if it is a new community 
• Create Community Atom entry 
• Call/Reply request to the Communities API 
• Get the Uuid of the new Community & write it back to the Notes DB 
3. Add missing members to every Community 
• Iterate through all members found in the Community entry (from the 
Notes DB) and look if user is not a member in the Community 
member feed 
• Create member Atom entry 
• Send the member Atom entry to the Communities API 
4. Add missing Owners (same steps as for member adding) 
UKLUG 2012 – Cardiff, Wales
Community membership – How to 
1. Iterate through all Community entries in the Notes DB: 
Just use Lotus Notes Connector in iterator mode, again this is easy. 
You don’t need a running HTTP 
task on Domino if you use the 
DIIOP IOR string as Server IP 
Address! 
UKLUG 2012 – Cardiff, Wales
Community membership – How to 
2. Create Community if it is a new Community 
UKLUG 2012 – Cardiff, Wales 
• Check if it is a new community
Community membership – How to 
2. Create Community if it is a new Community 
UKLUG 2012 – Cardiff, Wales 
• Create Community Atom entry 
var atom_community_entry = '<?xml version="1.0" encoding="UTF-8"?><entry 
xmlns="http://www.w3.org/2005/Atom" xmlns:app="http://www.w3.org/2007/app" 
xmlns:snx="http://www.ibm.com/xmlns/prod/sn"><title type="text">' + 
work.Community_Name + '</title><content type="html">' + work.Description + '</ 
content><category term="community" scheme="http://www.ibm.com/xmlns/prod/ 
sn/type"></category><snx:communityType>' + work.Access + '</ 
snx:communityType></entry>';
Community membership – How to 
2. Create Community if it is a new Community 
UKLUG 2012 – Cardiff, Wales 
• Call/Reply request to the Communities API 
This user needs the admin security role for the Communities app! (WAS Admin Console)
Community membership – How to 
2. Create Community if it is a new Community 
• Get the Uuid of the new Community & write it back to the Notes DB 
UKLUG 2012 – Cardiff, Wales
Community membership – How to 
3. Add missing members to every Community 
• Get the Community member feed (received with HTTP client 
connector) 
This will create a request to following URL: 
…/communities/service/atom/community/members? 
communityUuid=$uuid&role=member 
UKLUG 2012 – Cardiff, Wales
Community membership – How to 
3. Add missing members to every Community 
• Iterate through all members found in the Community entry (from the 
Notes DB) and look if user is not a member in the Community 
member feed 
UKLUG 2012 – Cardiff, Wales
Community membership – How to 
3. Add missing members to every Community 
• Create member Atom entry through script: 
var atom_member_entry = '<?xml version="1.0" encoding="UTF-8"?><entry 
xmlns="http://www.w3.org/2005/Atom" xmlns:app="http://www.w3.org/2007/app" 
xmlns:snx="http://www.ibm.com/xmlns/prod/sn"><contributor>¨<email>' + 
work.InternetAddress + '</email><snx:role>member</snx:role></ 
contributor><snx:role component="http://www.ibm.com/xmlns/prod/sn/ 
communities">member</snx:role></entry>'; 
UKLUG 2012 – Cardiff, Wales
Community membership – How to 
3. Add missing members 
UKLUG 2012 – Cardiff, Wales 
to every Community 
• Send the member 
Atom entry to the 
Communities API 
(HTTP client 
connector) 
URL on next page 
This user needs the admin security 
role for the Communities app! 
(WAS Admin Console)
Community membership – How to 
3. Add missing members to every Community 
• Send the member Atom entry to the Communities API (HTTP 
client connector) 
This will create a request to following URL: 
…/communities/service/atom/community/members? 
communityUuid=$uuid 
UKLUG 2012 – Cardiff, Wales
Community membership – How to 
4. Add missing Owners (same steps as for members) 
var atom_owner_entry = '<?xml version="1.0" encoding="UTF-8"?><entry xmlns="http://www.w3.org/2005/Atom" 
xmlns:app="http://www.w3.org/2007/app" xmlns:snx="http://www.ibm.com/xmlns/prod/sn"><contributor>¨<email>' + 
work.InternetAddress_Owner + '</email><snx:role>owner</snx:role></contributor><snx:role component="http:// 
www.ibm.com/xmlns/prod/sn/communities">owner</snx:role></entry>'; 
UKLUG 2012 – Cardiff, Wales
Community membership – How to 
• Final assembly line 
UKLUG 2012 – Cardiff, Wales
Export users last logon date per 
application - Example 
UKLUG 2012 – Cardiff, Wales
Export users last logon date per 
application - Example 
UKLUG 2012 – Cardiff, Wales
Export users last logon date – How to 
• We will export the last logon date for all users 
• For all applications 
• Export to Domino 
• Export to CSV 
• This runs scheduled weekly as a reporting to our deployment team 
UKLUG 2012 – Cardiff, Wales
Export users last logon date – How to 
The workflow is as follows: 
1. Iterate through all entries in the PeopleDB and fetch uid and full name 
2. Connect to application table that contains profile 
3. Fetch user key 
4. Connect to Application table that contains last logon date 
5. Repeat for all applications 
6. Write to Domino 
7. Write to csv 
UKLUG 2012 – Cardiff, Wales
Export users last logon date – How to 
• Create a new assemble line and add a Database Connector. Make it 
an iterator and connect it to your Profiles database Employee table 
UKLUG 2012 – Cardiff, Wales
Export users last logon date – How to 
• I will show you for 1 database and then give you the mapping table for 
the other databases 
• Connect to the Files database, USER_TO_LOGIN table 
UKLUG 2012 – Cardiff, Wales
Export users last logon date – How to 
• Use the uid_lower as your key to find the relevant user key 
UKLUG 2012 – Cardiff, Wales
Export users last logon date – How to 
UKLUG 2012 – Cardiff, Wales
Export users last logon date – How to 
• Now connect to the Files database USER table to get the last logon 
date of this user using the USER_ID fetched in the last step as a link 
UKLUG 2012 – Cardiff, Wales
Export users last logon date – How to 
• Repeat these steps for all applications, except Blogs. The Blogs 
database table ROLLERUSER contains uid and last logon date. On 
top of that it is the only table that uses the uid as is and not converted 
to lowercase.(thank god for consistency) 
UKLUG 2012 – Cardiff, Wales
Export users last logon date – How to 
• This is the table for all the databases 
UKLUG 2012 – Cardiff, Wales 
Application Uid lookup Table 
Table Name Uid Column User Key Column 
Blogs Not needed Not needed Not needed 
Bookmarks PERSONLOGIN LOGINNAME PERSON_ID 
Files USER_TO_LOGIN LOGIN_ID LOGIN_ID 
Forum DF_MEMBERLOGIN LOGINNAME_LOWER MEMBERID 
Homepage LOGINNAME LOGINNAME PERSON_ID 
Activities OA_MEMBERLOGIN LLOGINNAME MEMBERID 
Profiles EMPLOYEE PROF_UID_LOWER PROF_KEY 
Communities MEMBERLOGIN LOWER_LOGIN MEMBER_UUID 
Wikis USER_TO_LOGIN LOGIN_ID USER_ID
Export users last logon date – How to 
• This is the table for all the databases 
UKLUG 2012 – Cardiff, Wales 
Application Last Logon table 
Table Name Uid Last Logon 
Blogs ROLLERUSER USERNAME LASTLOGIN 
Bookmarks PERSON PERSON_ID LASTLOGIN 
Files USER ID LAST_VISIT 
Forum MEMBERPROFILE MEMBERID LASTLOGIN 
Homepage PERSON PERSON_ID LAST_UPDATE 
Activities OA_MEMBERPROFILE MEMBERID LASTLOGIN 
Profiles PROFILE_LAST_LOGIN PROF_KEY LAST_LOGIN 
Communities MEMBERPROFILE MEMBER_UUID LASTLOGIN 
Wikis USER ID LAST_VISIT
Export users last logon date – How to 
• Create a Domino Database with a form called “User” and following 
fields: 
• Activities_LASTLOGIN, Name, Blogs_LASTLOGIN, Communities_LASTLOGIN, 
Dogear_LASTLOGIN, Files_LASTVISIT, Forum_LASTVISIT, Homepage_LASTUPDATE, 
Profiles_LASTLOGIN, Uid, Wikis_LASTVISIT 
UKLUG 2012 – Cardiff, Wales 
• And a view to show these
Export users last logon date – How to 
• Add a LotusNotes connector to the assembly line and connect it to 
UKLUG 2012 – Cardiff, Wales 
your database using diiop. 
• Set the mode to “AddOnly”
Export users last logon date – How to 
• Create the following output map 
• The reason for not having the value as is in the left column is because 
the value you get from db2 is in java.sql.date format, we need to make 
sure we get the string 
UKLUG 2012 – Cardiff, Wales
Export users last logon date – How to 
• To dump to a csv file add a File System Connector and select csv as 
UKLUG 2012 – Cardiff, Wales 
parser. Add the header fields 
to the Field Names and enable 
the write header 
• Set “;” as your seperator
Export users last logon date – How to 
Now we need to set 
the file location and 
file name. 
We want to make 
this dynamic so we 
can schedule the 
script. File location 
will be defined in 
the property file. 
Use the following javascript to define the filename and location 
var srcPath=system.getTDIProperty("Cnx", "export_path") 
var stDateStamp=system.formatDate((new Date()),"yyyyMMdd"); 
var outFile=srcPath + system.getTDIProperty("Cnx", "export_filename") + 
stDateStamp + ".csv"; 
return outFile 
UKLUG 2012 – Cardiff, Wales
Export users last logon date – How to 
• For the csv file we can output in the original format, no need to 
UKLUG 2012 – Cardiff, Wales 
transform to String as the parser will do this for us.
UKLUG 2012 – Cardiff, Wales 
Questions?
http://slideshare.com/palmke 
UKLUG 2012 – Cardiff, Wales 
Thank You! 
http://linkedin.com/in/wannesrams 
http://twitter.com/wannesrams 
http://wannes.rams.be 
http://www.webgate.biz 
http://slideshare.com/kbild 
http://linkedin.com/in/kbild 
http://twitter.com/kbild 
http://kbild.ch

Weitere ähnliche Inhalte

Was ist angesagt?

What's New in Notes, Sametime and Verse On-Premises
What's New in Notes, Sametime and Verse On-PremisesWhat's New in Notes, Sametime and Verse On-Premises
What's New in Notes, Sametime and Verse On-PremisesGabriella Davis
 
Deawsj 7 ppt-2_a
Deawsj 7 ppt-2_aDeawsj 7 ppt-2_a
Deawsj 7 ppt-2_aNiit Care
 
Social Connections 12 - IBM Connections Adminblast
Social Connections 12 - IBM Connections AdminblastSocial Connections 12 - IBM Connections Adminblast
Social Connections 12 - IBM Connections AdminblastNico Meisenzahl
 
A hitchhiker’s guide to troubleshooting ibm connections
A hitchhiker’s guide to troubleshooting ibm connectionsA hitchhiker’s guide to troubleshooting ibm connections
A hitchhiker’s guide to troubleshooting ibm connectionsSharon James
 
Best Practices for Installing IBM Verse on Premises
Best Practices for Installing IBM Verse on PremisesBest Practices for Installing IBM Verse on Premises
Best Practices for Installing IBM Verse on PremisesTimsterC
 
21 Ways to make your Data work for you
21 Ways to make your Data work for you21 Ways to make your Data work for you
21 Ways to make your Data work for youChristoph Adler
 
facebook architecture for 600M users
facebook architecture for 600M usersfacebook architecture for 600M users
facebook architecture for 600M usersJongyoon Choi
 
Face Off Domino vs Exchange On Premises
Face Off Domino vs Exchange On PremisesFace Off Domino vs Exchange On Premises
Face Off Domino vs Exchange On PremisesGabriella Davis
 
Quickr migration in IBM Connections CCM.
Quickr migration in IBM Connections CCM.Quickr migration in IBM Connections CCM.
Quickr migration in IBM Connections CCM.Enzo Stanzione
 
The Nuts and Bolts of Migrating Quickr Domino to CCM
The Nuts and Bolts of Migrating Quickr Domino to CCM The Nuts and Bolts of Migrating Quickr Domino to CCM
The Nuts and Bolts of Migrating Quickr Domino to CCM Fergal McKenna
 
June OpenNTF Webinar - Domino V12 Certification Manager
June OpenNTF Webinar - Domino V12 Certification ManagerJune OpenNTF Webinar - Domino V12 Certification Manager
June OpenNTF Webinar - Domino V12 Certification ManagerHoward Greenberg
 
IBM Connections Design To #NOTFAIL
IBM Connections Design To #NOTFAILIBM Connections Design To #NOTFAIL
IBM Connections Design To #NOTFAILGabriella Davis
 
Best and worst practices deploying IBM Connections
Best and worst practices deploying IBM ConnectionsBest and worst practices deploying IBM Connections
Best and worst practices deploying IBM ConnectionsLetsConnect
 
Containerizing Your On-Premise Environment
Containerizing Your On-Premise EnvironmentContainerizing Your On-Premise Environment
Containerizing Your On-Premise EnvironmentMichael Mohen
 
CO_Scenario_InfoDelivTr_FINAL ENGLISH
CO_Scenario_InfoDelivTr_FINAL ENGLISHCO_Scenario_InfoDelivTr_FINAL ENGLISH
CO_Scenario_InfoDelivTr_FINAL ENGLISHLeonardo Sepulcri
 

Was ist angesagt? (20)

Ms vs ibm_v1.3
Ms vs ibm_v1.3Ms vs ibm_v1.3
Ms vs ibm_v1.3
 
What's New in Notes, Sametime and Verse On-Premises
What's New in Notes, Sametime and Verse On-PremisesWhat's New in Notes, Sametime and Verse On-Premises
What's New in Notes, Sametime and Verse On-Premises
 
Deawsj 7 ppt-2_a
Deawsj 7 ppt-2_aDeawsj 7 ppt-2_a
Deawsj 7 ppt-2_a
 
Self Healing Capabilities of Domino 10
Self Healing Capabilities of Domino 10Self Healing Capabilities of Domino 10
Self Healing Capabilities of Domino 10
 
Social Connections 12 - IBM Connections Adminblast
Social Connections 12 - IBM Connections AdminblastSocial Connections 12 - IBM Connections Adminblast
Social Connections 12 - IBM Connections Adminblast
 
Up to Speed on HTML 5 and CSS 3
Up to Speed on HTML 5 and CSS 3Up to Speed on HTML 5 and CSS 3
Up to Speed on HTML 5 and CSS 3
 
A hitchhiker’s guide to troubleshooting ibm connections
A hitchhiker’s guide to troubleshooting ibm connectionsA hitchhiker’s guide to troubleshooting ibm connections
A hitchhiker’s guide to troubleshooting ibm connections
 
Best Practices for Installing IBM Verse on Premises
Best Practices for Installing IBM Verse on PremisesBest Practices for Installing IBM Verse on Premises
Best Practices for Installing IBM Verse on Premises
 
21 Ways to make your Data work for you
21 Ways to make your Data work for you21 Ways to make your Data work for you
21 Ways to make your Data work for you
 
facebook architecture for 600M users
facebook architecture for 600M usersfacebook architecture for 600M users
facebook architecture for 600M users
 
Face Off Domino vs Exchange On Premises
Face Off Domino vs Exchange On PremisesFace Off Domino vs Exchange On Premises
Face Off Domino vs Exchange On Premises
 
Quickr migration in IBM Connections CCM.
Quickr migration in IBM Connections CCM.Quickr migration in IBM Connections CCM.
Quickr migration in IBM Connections CCM.
 
The Nuts and Bolts of Migrating Quickr Domino to CCM
The Nuts and Bolts of Migrating Quickr Domino to CCM The Nuts and Bolts of Migrating Quickr Domino to CCM
The Nuts and Bolts of Migrating Quickr Domino to CCM
 
Domino 365 DNUG 2020
Domino 365 DNUG 2020Domino 365 DNUG 2020
Domino 365 DNUG 2020
 
June OpenNTF Webinar - Domino V12 Certification Manager
June OpenNTF Webinar - Domino V12 Certification ManagerJune OpenNTF Webinar - Domino V12 Certification Manager
June OpenNTF Webinar - Domino V12 Certification Manager
 
Net framework
Net frameworkNet framework
Net framework
 
IBM Connections Design To #NOTFAIL
IBM Connections Design To #NOTFAILIBM Connections Design To #NOTFAIL
IBM Connections Design To #NOTFAIL
 
Best and worst practices deploying IBM Connections
Best and worst practices deploying IBM ConnectionsBest and worst practices deploying IBM Connections
Best and worst practices deploying IBM Connections
 
Containerizing Your On-Premise Environment
Containerizing Your On-Premise EnvironmentContainerizing Your On-Premise Environment
Containerizing Your On-Premise Environment
 
CO_Scenario_InfoDelivTr_FINAL ENGLISH
CO_Scenario_InfoDelivTr_FINAL ENGLISHCO_Scenario_InfoDelivTr_FINAL ENGLISH
CO_Scenario_InfoDelivTr_FINAL ENGLISH
 

Andere mochten auch

Social Intranet for Small Businesses - ICON UK
Social Intranet for Small Businesses - ICON UKSocial Intranet for Small Businesses - ICON UK
Social Intranet for Small Businesses - ICON UKKlaus Bild
 
AdminCamp 14 - IBM Connections Deep Dive
AdminCamp 14 - IBM Connections Deep DiveAdminCamp 14 - IBM Connections Deep Dive
AdminCamp 14 - IBM Connections Deep DiveKlaus Bild
 
The lazy administrator, how to make your life easier by using tdi to automate...
The lazy administrator, how to make your life easier by using tdi to automate...The lazy administrator, how to make your life easier by using tdi to automate...
The lazy administrator, how to make your life easier by using tdi to automate...Klaus Bild
 
Make Your IBM Connections Deployment Your Own: Customize It!
Make Your IBM Connections Deployment Your Own: Customize It!Make Your IBM Connections Deployment Your Own: Customize It!
Make Your IBM Connections Deployment Your Own: Customize It!Klaus Bild
 
Tipps und Skripts aus dem Leben eines Connections Admins
Tipps und Skripts aus dem Leben eines Connections AdminsTipps und Skripts aus dem Leben eines Connections Admins
Tipps und Skripts aus dem Leben eines Connections AdminsKlaus Bild
 
Make Your IBM Connections Deployment Your Own - Customize it! German Version
Make Your IBM Connections Deployment Your Own - Customize it! German VersionMake Your IBM Connections Deployment Your Own - Customize it! German Version
Make Your IBM Connections Deployment Your Own - Customize it! German VersionKlaus Bild
 
SHOW301 - Make Your IBM Connections Deployment Your Own: Customize It!
SHOW301 - Make Your IBM Connections Deployment Your Own: Customize It!SHOW301 - Make Your IBM Connections Deployment Your Own: Customize It!
SHOW301 - Make Your IBM Connections Deployment Your Own: Customize It!Klaus Bild
 
AdminCamp 14 - IBM Notes goes Connections
AdminCamp 14 - IBM Notes goes ConnectionsAdminCamp 14 - IBM Notes goes Connections
AdminCamp 14 - IBM Notes goes ConnectionsKlaus Bild
 
The Silence of the Installers
The Silence of the InstallersThe Silence of the Installers
The Silence of the InstallersKlaus Bild
 
The Silence of the Installers
The Silence of the InstallersThe Silence of the Installers
The Silence of the InstallersKlaus Bild
 
How to monitor your IBM Connections environment with Python Scripts, JMeter a...
How to monitor your IBM Connections environment with Python Scripts, JMeter a...How to monitor your IBM Connections environment with Python Scripts, JMeter a...
How to monitor your IBM Connections environment with Python Scripts, JMeter a...Klaus Bild
 
Give your community owners the reports they really need
Give your community owners the reports they really needGive your community owners the reports they really need
Give your community owners the reports they really needKlaus Bild
 
AdminCamp 14: Make your IBM Connections deployment your own - Customize it!
AdminCamp 14: Make your IBM Connections deployment your own - Customize it!AdminCamp 14: Make your IBM Connections deployment your own - Customize it!
AdminCamp 14: Make your IBM Connections deployment your own - Customize it!Klaus Bild
 
The Best Things in Life Are Free – Wie Sie Ihre IBM ConnecEons Umgebung koste...
The Best Things in Life Are Free – Wie Sie Ihre IBM ConnecEons Umgebung koste...The Best Things in Life Are Free – Wie Sie Ihre IBM ConnecEons Umgebung koste...
The Best Things in Life Are Free – Wie Sie Ihre IBM ConnecEons Umgebung koste...Klaus Bild
 
Der entspannte Administrator - How to make your life easier by using TDI to a...
Der entspannte Administrator - How to make your life easier by using TDI to a...Der entspannte Administrator - How to make your life easier by using TDI to a...
Der entspannte Administrator - How to make your life easier by using TDI to a...Klaus Bild
 
Wie man aus langweiligen 
Logdateien Gold gewinnen kann
Wie man aus langweiligen 
Logdateien Gold gewinnen kannWie man aus langweiligen 
Logdateien Gold gewinnen kann
Wie man aus langweiligen 
Logdateien Gold gewinnen kannKlaus Bild
 
Your App Deserves More – The Art of App Modernization
Your App Deserves More – The Art of App ModernizationYour App Deserves More – The Art of App Modernization
Your App Deserves More – The Art of App ModernizationKlaus Bild
 
Customize it! Make IBM Connections look your way
Customize it! Make IBM Connections look your way Customize it! Make IBM Connections look your way
Customize it! Make IBM Connections look your way Klaus Bild
 

Andere mochten auch (18)

Social Intranet for Small Businesses - ICON UK
Social Intranet for Small Businesses - ICON UKSocial Intranet for Small Businesses - ICON UK
Social Intranet for Small Businesses - ICON UK
 
AdminCamp 14 - IBM Connections Deep Dive
AdminCamp 14 - IBM Connections Deep DiveAdminCamp 14 - IBM Connections Deep Dive
AdminCamp 14 - IBM Connections Deep Dive
 
The lazy administrator, how to make your life easier by using tdi to automate...
The lazy administrator, how to make your life easier by using tdi to automate...The lazy administrator, how to make your life easier by using tdi to automate...
The lazy administrator, how to make your life easier by using tdi to automate...
 
Make Your IBM Connections Deployment Your Own: Customize It!
Make Your IBM Connections Deployment Your Own: Customize It!Make Your IBM Connections Deployment Your Own: Customize It!
Make Your IBM Connections Deployment Your Own: Customize It!
 
Tipps und Skripts aus dem Leben eines Connections Admins
Tipps und Skripts aus dem Leben eines Connections AdminsTipps und Skripts aus dem Leben eines Connections Admins
Tipps und Skripts aus dem Leben eines Connections Admins
 
Make Your IBM Connections Deployment Your Own - Customize it! German Version
Make Your IBM Connections Deployment Your Own - Customize it! German VersionMake Your IBM Connections Deployment Your Own - Customize it! German Version
Make Your IBM Connections Deployment Your Own - Customize it! German Version
 
SHOW301 - Make Your IBM Connections Deployment Your Own: Customize It!
SHOW301 - Make Your IBM Connections Deployment Your Own: Customize It!SHOW301 - Make Your IBM Connections Deployment Your Own: Customize It!
SHOW301 - Make Your IBM Connections Deployment Your Own: Customize It!
 
AdminCamp 14 - IBM Notes goes Connections
AdminCamp 14 - IBM Notes goes ConnectionsAdminCamp 14 - IBM Notes goes Connections
AdminCamp 14 - IBM Notes goes Connections
 
The Silence of the Installers
The Silence of the InstallersThe Silence of the Installers
The Silence of the Installers
 
The Silence of the Installers
The Silence of the InstallersThe Silence of the Installers
The Silence of the Installers
 
How to monitor your IBM Connections environment with Python Scripts, JMeter a...
How to monitor your IBM Connections environment with Python Scripts, JMeter a...How to monitor your IBM Connections environment with Python Scripts, JMeter a...
How to monitor your IBM Connections environment with Python Scripts, JMeter a...
 
Give your community owners the reports they really need
Give your community owners the reports they really needGive your community owners the reports they really need
Give your community owners the reports they really need
 
AdminCamp 14: Make your IBM Connections deployment your own - Customize it!
AdminCamp 14: Make your IBM Connections deployment your own - Customize it!AdminCamp 14: Make your IBM Connections deployment your own - Customize it!
AdminCamp 14: Make your IBM Connections deployment your own - Customize it!
 
The Best Things in Life Are Free – Wie Sie Ihre IBM ConnecEons Umgebung koste...
The Best Things in Life Are Free – Wie Sie Ihre IBM ConnecEons Umgebung koste...The Best Things in Life Are Free – Wie Sie Ihre IBM ConnecEons Umgebung koste...
The Best Things in Life Are Free – Wie Sie Ihre IBM ConnecEons Umgebung koste...
 
Der entspannte Administrator - How to make your life easier by using TDI to a...
Der entspannte Administrator - How to make your life easier by using TDI to a...Der entspannte Administrator - How to make your life easier by using TDI to a...
Der entspannte Administrator - How to make your life easier by using TDI to a...
 
Wie man aus langweiligen 
Logdateien Gold gewinnen kann
Wie man aus langweiligen 
Logdateien Gold gewinnen kannWie man aus langweiligen 
Logdateien Gold gewinnen kann
Wie man aus langweiligen 
Logdateien Gold gewinnen kann
 
Your App Deserves More – The Art of App Modernization
Your App Deserves More – The Art of App ModernizationYour App Deserves More – The Art of App Modernization
Your App Deserves More – The Art of App Modernization
 
Customize it! Make IBM Connections look your way
Customize it! Make IBM Connections look your way Customize it! Make IBM Connections look your way
Customize it! Make IBM Connections look your way
 

Ähnlich wie The lazy administrator, how to make your life easier by using tdi to automate your work

Show104 buried treasure
Show104 buried treasureShow104 buried treasure
Show104 buried treasureMark Myers
 
SHOW104 - Buried treasure: Finding the Hidden Gold in Lotus Notes Data
SHOW104 - Buried treasure: Finding the Hidden Gold in Lotus Notes DataSHOW104 - Buried treasure: Finding the Hidden Gold in Lotus Notes Data
SHOW104 - Buried treasure: Finding the Hidden Gold in Lotus Notes Datapanagenda
 
ICONUK 2015 - Installing Connections Add-Ons Tips and Tricks
ICONUK 2015 - Installing Connections Add-Ons Tips and TricksICONUK 2015 - Installing Connections Add-Ons Tips and Tricks
ICONUK 2015 - Installing Connections Add-Ons Tips and TricksVictor Toal
 
IBM Connect 2014 - AD205: Creating State-of-the-Art Web Applications with Dom...
IBM Connect 2014 - AD205: Creating State-of-the-Art Web Applications with Dom...IBM Connect 2014 - AD205: Creating State-of-the-Art Web Applications with Dom...
IBM Connect 2014 - AD205: Creating State-of-the-Art Web Applications with Dom...Dave Delay
 
PACLUG sametime presentation
PACLUG sametime presentationPACLUG sametime presentation
PACLUG sametime presentationamhiggins
 
IBM Connect 2017: Your Data In the Major Leagues: A Practical Guide to REST S...
IBM Connect 2017: Your Data In the Major Leagues: A Practical Guide to REST S...IBM Connect 2017: Your Data In the Major Leagues: A Practical Guide to REST S...
IBM Connect 2017: Your Data In the Major Leagues: A Practical Guide to REST S...Serdar Basegmez
 
1049: Best and Worst Practices for Deploying IBM Connections - IBM Connect 2016
1049: Best and Worst Practices for Deploying IBM Connections - IBM Connect 20161049: Best and Worst Practices for Deploying IBM Connections - IBM Connect 2016
1049: Best and Worst Practices for Deploying IBM Connections - IBM Connect 2016panagenda
 
Flex360 Milan 2008 - Flex & Webservices
Flex360 Milan 2008 - Flex & WebservicesFlex360 Milan 2008 - Flex & Webservices
Flex360 Milan 2008 - Flex & Webservicesivascucristian
 
AAI-2075 Evolving an IBM WebSphere Topology to Manage a Changing Workloa
AAI-2075 Evolving an IBM WebSphere Topology to Manage a Changing WorkloaAAI-2075 Evolving an IBM WebSphere Topology to Manage a Changing Workloa
AAI-2075 Evolving an IBM WebSphere Topology to Manage a Changing WorkloaWASdev Community
 
Effective admin and development in iib
Effective admin and development in iibEffective admin and development in iib
Effective admin and development in iibm16k
 
[WSO2 Integration Summit Nairobi 2019] Role of Integration in an API Driven W...
[WSO2 Integration Summit Nairobi 2019] Role of Integration in an API Driven W...[WSO2 Integration Summit Nairobi 2019] Role of Integration in an API Driven W...
[WSO2 Integration Summit Nairobi 2019] Role of Integration in an API Driven W...WSO2
 
A Hitchhiker's Guide to troubleshooting IBM Connections
A Hitchhiker's Guide to troubleshooting IBM ConnectionsA Hitchhiker's Guide to troubleshooting IBM Connections
A Hitchhiker's Guide to troubleshooting IBM ConnectionsICON UK EVENTS Limited
 
Migrating Java EE applications to IBM Bluemix Platform-as-a-Service
Migrating Java EE applications to IBM Bluemix Platform-as-a-ServiceMigrating Java EE applications to IBM Bluemix Platform-as-a-Service
Migrating Java EE applications to IBM Bluemix Platform-as-a-ServiceDavid Currie
 
Updating current Network Design It18 roshan basnet
Updating current Network Design It18 roshan basnetUpdating current Network Design It18 roshan basnet
Updating current Network Design It18 roshan basnetrosu555
 
Migrating Java EE applications to IBM Bluemix platform as-a-service (CloudFou...
Migrating Java EE applications to IBM Bluemix platform as-a-service (CloudFou...Migrating Java EE applications to IBM Bluemix platform as-a-service (CloudFou...
Migrating Java EE applications to IBM Bluemix platform as-a-service (CloudFou...Jack-Junjie Cai
 
Uklug 2014 connections dev faq
Uklug 2014  connections dev faqUklug 2014  connections dev faq
Uklug 2014 connections dev faqMark Myers
 
IBM Connect2014 JMP106
IBM Connect2014 JMP106IBM Connect2014 JMP106
IBM Connect2014 JMP106Thomas Evans
 
An XPager's Guide to Process Server-Side Jobs on Domino
An XPager's Guide to Process Server-Side Jobs on DominoAn XPager's Guide to Process Server-Side Jobs on Domino
An XPager's Guide to Process Server-Side Jobs on DominoFrank van der Linden
 
ICONUK 2013 - An XPager's Guide to Process Server-Side Jobs on IBM® Domino®
ICONUK 2013 - An XPager's Guide to Process Server-Side Jobs on IBM® Domino®ICONUK 2013 - An XPager's Guide to Process Server-Side Jobs on IBM® Domino®
ICONUK 2013 - An XPager's Guide to Process Server-Side Jobs on IBM® Domino®Serdar Basegmez
 

Ähnlich wie The lazy administrator, how to make your life easier by using tdi to automate your work (20)

Show104 buried treasure
Show104 buried treasureShow104 buried treasure
Show104 buried treasure
 
SHOW104 - Buried treasure: Finding the Hidden Gold in Lotus Notes Data
SHOW104 - Buried treasure: Finding the Hidden Gold in Lotus Notes DataSHOW104 - Buried treasure: Finding the Hidden Gold in Lotus Notes Data
SHOW104 - Buried treasure: Finding the Hidden Gold in Lotus Notes Data
 
Lotus Domino 8.5
Lotus Domino 8.5Lotus Domino 8.5
Lotus Domino 8.5
 
ICONUK 2015 - Installing Connections Add-Ons Tips and Tricks
ICONUK 2015 - Installing Connections Add-Ons Tips and TricksICONUK 2015 - Installing Connections Add-Ons Tips and Tricks
ICONUK 2015 - Installing Connections Add-Ons Tips and Tricks
 
IBM Connect 2014 - AD205: Creating State-of-the-Art Web Applications with Dom...
IBM Connect 2014 - AD205: Creating State-of-the-Art Web Applications with Dom...IBM Connect 2014 - AD205: Creating State-of-the-Art Web Applications with Dom...
IBM Connect 2014 - AD205: Creating State-of-the-Art Web Applications with Dom...
 
PACLUG sametime presentation
PACLUG sametime presentationPACLUG sametime presentation
PACLUG sametime presentation
 
IBM Connect 2017: Your Data In the Major Leagues: A Practical Guide to REST S...
IBM Connect 2017: Your Data In the Major Leagues: A Practical Guide to REST S...IBM Connect 2017: Your Data In the Major Leagues: A Practical Guide to REST S...
IBM Connect 2017: Your Data In the Major Leagues: A Practical Guide to REST S...
 
1049: Best and Worst Practices for Deploying IBM Connections - IBM Connect 2016
1049: Best and Worst Practices for Deploying IBM Connections - IBM Connect 20161049: Best and Worst Practices for Deploying IBM Connections - IBM Connect 2016
1049: Best and Worst Practices for Deploying IBM Connections - IBM Connect 2016
 
Flex360 Milan 2008 - Flex & Webservices
Flex360 Milan 2008 - Flex & WebservicesFlex360 Milan 2008 - Flex & Webservices
Flex360 Milan 2008 - Flex & Webservices
 
AAI-2075 Evolving an IBM WebSphere Topology to Manage a Changing Workloa
AAI-2075 Evolving an IBM WebSphere Topology to Manage a Changing WorkloaAAI-2075 Evolving an IBM WebSphere Topology to Manage a Changing Workloa
AAI-2075 Evolving an IBM WebSphere Topology to Manage a Changing Workloa
 
Effective admin and development in iib
Effective admin and development in iibEffective admin and development in iib
Effective admin and development in iib
 
[WSO2 Integration Summit Nairobi 2019] Role of Integration in an API Driven W...
[WSO2 Integration Summit Nairobi 2019] Role of Integration in an API Driven W...[WSO2 Integration Summit Nairobi 2019] Role of Integration in an API Driven W...
[WSO2 Integration Summit Nairobi 2019] Role of Integration in an API Driven W...
 
A Hitchhiker's Guide to troubleshooting IBM Connections
A Hitchhiker's Guide to troubleshooting IBM ConnectionsA Hitchhiker's Guide to troubleshooting IBM Connections
A Hitchhiker's Guide to troubleshooting IBM Connections
 
Migrating Java EE applications to IBM Bluemix Platform-as-a-Service
Migrating Java EE applications to IBM Bluemix Platform-as-a-ServiceMigrating Java EE applications to IBM Bluemix Platform-as-a-Service
Migrating Java EE applications to IBM Bluemix Platform-as-a-Service
 
Updating current Network Design It18 roshan basnet
Updating current Network Design It18 roshan basnetUpdating current Network Design It18 roshan basnet
Updating current Network Design It18 roshan basnet
 
Migrating Java EE applications to IBM Bluemix platform as-a-service (CloudFou...
Migrating Java EE applications to IBM Bluemix platform as-a-service (CloudFou...Migrating Java EE applications to IBM Bluemix platform as-a-service (CloudFou...
Migrating Java EE applications to IBM Bluemix platform as-a-service (CloudFou...
 
Uklug 2014 connections dev faq
Uklug 2014  connections dev faqUklug 2014  connections dev faq
Uklug 2014 connections dev faq
 
IBM Connect2014 JMP106
IBM Connect2014 JMP106IBM Connect2014 JMP106
IBM Connect2014 JMP106
 
An XPager's Guide to Process Server-Side Jobs on Domino
An XPager's Guide to Process Server-Side Jobs on DominoAn XPager's Guide to Process Server-Side Jobs on Domino
An XPager's Guide to Process Server-Side Jobs on Domino
 
ICONUK 2013 - An XPager's Guide to Process Server-Side Jobs on IBM® Domino®
ICONUK 2013 - An XPager's Guide to Process Server-Side Jobs on IBM® Domino®ICONUK 2013 - An XPager's Guide to Process Server-Side Jobs on IBM® Domino®
ICONUK 2013 - An XPager's Guide to Process Server-Side Jobs on IBM® Domino®
 

Mehr von Klaus Bild

Pink Monitoring oder wie Prometheus Licht ins Dunkel der Container bringt 
Pink Monitoring oder wie Prometheus Licht ins Dunkel der Container bringt Pink Monitoring oder wie Prometheus Licht ins Dunkel der Container bringt 
Pink Monitoring oder wie Prometheus Licht ins Dunkel der Container bringt Klaus Bild
 
IBM Connections - Was kommt nach Version 4.0
IBM Connections - Was kommt nach Version 4.0IBM Connections - Was kommt nach Version 4.0
IBM Connections - Was kommt nach Version 4.0Klaus Bild
 
Social Business Software - IBM Connections 4
Social Business Software - IBM Connections 4Social Business Software - IBM Connections 4
Social Business Software - IBM Connections 4Klaus Bild
 
Social Intranet für KMU - IBM Connect Switzerland
Social Intranet für KMU - IBM Connect SwitzerlandSocial Intranet für KMU - IBM Connect Switzerland
Social Intranet für KMU - IBM Connect SwitzerlandKlaus Bild
 
Upgrading Connections 3 to 4 - SOCCNX
Upgrading Connections 3 to 4 - SOCCNXUpgrading Connections 3 to 4 - SOCCNX
Upgrading Connections 3 to 4 - SOCCNXKlaus Bild
 
Landschaft der IBM Applikationen für mobile Geräte
Landschaft der IBM Applikationen für mobile GeräteLandschaft der IBM Applikationen für mobile Geräte
Landschaft der IBM Applikationen für mobile GeräteKlaus Bild
 
The future of social software in the enterprise lotus connections 3
The future of social software in the enterprise lotus connections 3The future of social software in the enterprise lotus connections 3
The future of social software in the enterprise lotus connections 3Klaus Bild
 
IBM Lotus Quickr 8.5 - Benutzer Workshop
IBM Lotus Quickr 8.5 - Benutzer WorkshopIBM Lotus Quickr 8.5 - Benutzer Workshop
IBM Lotus Quickr 8.5 - Benutzer WorkshopKlaus Bild
 

Mehr von Klaus Bild (8)

Pink Monitoring oder wie Prometheus Licht ins Dunkel der Container bringt 
Pink Monitoring oder wie Prometheus Licht ins Dunkel der Container bringt Pink Monitoring oder wie Prometheus Licht ins Dunkel der Container bringt 
Pink Monitoring oder wie Prometheus Licht ins Dunkel der Container bringt 
 
IBM Connections - Was kommt nach Version 4.0
IBM Connections - Was kommt nach Version 4.0IBM Connections - Was kommt nach Version 4.0
IBM Connections - Was kommt nach Version 4.0
 
Social Business Software - IBM Connections 4
Social Business Software - IBM Connections 4Social Business Software - IBM Connections 4
Social Business Software - IBM Connections 4
 
Social Intranet für KMU - IBM Connect Switzerland
Social Intranet für KMU - IBM Connect SwitzerlandSocial Intranet für KMU - IBM Connect Switzerland
Social Intranet für KMU - IBM Connect Switzerland
 
Upgrading Connections 3 to 4 - SOCCNX
Upgrading Connections 3 to 4 - SOCCNXUpgrading Connections 3 to 4 - SOCCNX
Upgrading Connections 3 to 4 - SOCCNX
 
Landschaft der IBM Applikationen für mobile Geräte
Landschaft der IBM Applikationen für mobile GeräteLandschaft der IBM Applikationen für mobile Geräte
Landschaft der IBM Applikationen für mobile Geräte
 
The future of social software in the enterprise lotus connections 3
The future of social software in the enterprise lotus connections 3The future of social software in the enterprise lotus connections 3
The future of social software in the enterprise lotus connections 3
 
IBM Lotus Quickr 8.5 - Benutzer Workshop
IBM Lotus Quickr 8.5 - Benutzer WorkshopIBM Lotus Quickr 8.5 - Benutzer Workshop
IBM Lotus Quickr 8.5 - Benutzer Workshop
 

Kürzlich hochgeladen

Call Girl Number in Khar Mumbai📲 9892124323 💞 Full Night Enjoy
Call Girl Number in Khar Mumbai📲 9892124323 💞 Full Night EnjoyCall Girl Number in Khar Mumbai📲 9892124323 💞 Full Night Enjoy
Call Girl Number in Khar Mumbai📲 9892124323 💞 Full Night EnjoyPooja Nehwal
 
CTAC 2024 Valencia - Sven Zoelle - Most Crucial Invest to Digitalisation_slid...
CTAC 2024 Valencia - Sven Zoelle - Most Crucial Invest to Digitalisation_slid...CTAC 2024 Valencia - Sven Zoelle - Most Crucial Invest to Digitalisation_slid...
CTAC 2024 Valencia - Sven Zoelle - Most Crucial Invest to Digitalisation_slid...henrik385807
 
Mathematics of Finance Presentation.pptx
Mathematics of Finance Presentation.pptxMathematics of Finance Presentation.pptx
Mathematics of Finance Presentation.pptxMoumonDas2
 
ANCHORING SCRIPT FOR A CULTURAL EVENT.docx
ANCHORING SCRIPT FOR A CULTURAL EVENT.docxANCHORING SCRIPT FOR A CULTURAL EVENT.docx
ANCHORING SCRIPT FOR A CULTURAL EVENT.docxNikitaBankoti2
 
Mohammad_Alnahdi_Oral_Presentation_Assignment.pptx
Mohammad_Alnahdi_Oral_Presentation_Assignment.pptxMohammad_Alnahdi_Oral_Presentation_Assignment.pptx
Mohammad_Alnahdi_Oral_Presentation_Assignment.pptxmohammadalnahdi22
 
VVIP Call Girls Nalasopara : 9892124323, Call Girls in Nalasopara Services
VVIP Call Girls Nalasopara : 9892124323, Call Girls in Nalasopara ServicesVVIP Call Girls Nalasopara : 9892124323, Call Girls in Nalasopara Services
VVIP Call Girls Nalasopara : 9892124323, Call Girls in Nalasopara ServicesPooja Nehwal
 
Navi Mumbai Call Girls Service Pooja 9892124323 Real Russian Girls Looking Mo...
Navi Mumbai Call Girls Service Pooja 9892124323 Real Russian Girls Looking Mo...Navi Mumbai Call Girls Service Pooja 9892124323 Real Russian Girls Looking Mo...
Navi Mumbai Call Girls Service Pooja 9892124323 Real Russian Girls Looking Mo...Pooja Nehwal
 
Presentation on Engagement in Book Clubs
Presentation on Engagement in Book ClubsPresentation on Engagement in Book Clubs
Presentation on Engagement in Book Clubssamaasim06
 
BDSM⚡Call Girls in Sector 93 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 93 Noida Escorts >༒8448380779 Escort ServiceBDSM⚡Call Girls in Sector 93 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 93 Noida Escorts >༒8448380779 Escort ServiceDelhi Call girls
 
George Lever - eCommerce Day Chile 2024
George Lever -  eCommerce Day Chile 2024George Lever -  eCommerce Day Chile 2024
George Lever - eCommerce Day Chile 2024eCommerce Institute
 
Open Source Strategy in Logistics 2015_Henrik Hankedvz-d-nl-log-conference.pdf
Open Source Strategy in Logistics 2015_Henrik Hankedvz-d-nl-log-conference.pdfOpen Source Strategy in Logistics 2015_Henrik Hankedvz-d-nl-log-conference.pdf
Open Source Strategy in Logistics 2015_Henrik Hankedvz-d-nl-log-conference.pdfhenrik385807
 
WhatsApp 📞 9892124323 ✅Call Girls In Juhu ( Mumbai )
WhatsApp 📞 9892124323 ✅Call Girls In Juhu ( Mumbai )WhatsApp 📞 9892124323 ✅Call Girls In Juhu ( Mumbai )
WhatsApp 📞 9892124323 ✅Call Girls In Juhu ( Mumbai )Pooja Nehwal
 
Microsoft Copilot AI for Everyone - created by AI
Microsoft Copilot AI for Everyone - created by AIMicrosoft Copilot AI for Everyone - created by AI
Microsoft Copilot AI for Everyone - created by AITatiana Gurgel
 
Thirunelveli call girls Tamil escorts 7877702510
Thirunelveli call girls Tamil escorts 7877702510Thirunelveli call girls Tamil escorts 7877702510
Thirunelveli call girls Tamil escorts 7877702510Vipesco
 
Governance and Nation-Building in Nigeria: Some Reflections on Options for Po...
Governance and Nation-Building in Nigeria: Some Reflections on Options for Po...Governance and Nation-Building in Nigeria: Some Reflections on Options for Po...
Governance and Nation-Building in Nigeria: Some Reflections on Options for Po...Kayode Fayemi
 
Night 7k Call Girls Noida Sector 128 Call Me: 8448380779
Night 7k Call Girls Noida Sector 128 Call Me: 8448380779Night 7k Call Girls Noida Sector 128 Call Me: 8448380779
Night 7k Call Girls Noida Sector 128 Call Me: 8448380779Delhi Call girls
 
Exploring protein-protein interactions by Weak Affinity Chromatography (WAC) ...
Exploring protein-protein interactions by Weak Affinity Chromatography (WAC) ...Exploring protein-protein interactions by Weak Affinity Chromatography (WAC) ...
Exploring protein-protein interactions by Weak Affinity Chromatography (WAC) ...Salam Al-Karadaghi
 
Call Girls in Sarojini Nagar Market Delhi 💯 Call Us 🔝8264348440🔝
Call Girls in Sarojini Nagar Market Delhi 💯 Call Us 🔝8264348440🔝Call Girls in Sarojini Nagar Market Delhi 💯 Call Us 🔝8264348440🔝
Call Girls in Sarojini Nagar Market Delhi 💯 Call Us 🔝8264348440🔝soniya singh
 
Re-membering the Bard: Revisiting The Compleat Wrks of Wllm Shkspr (Abridged)...
Re-membering the Bard: Revisiting The Compleat Wrks of Wllm Shkspr (Abridged)...Re-membering the Bard: Revisiting The Compleat Wrks of Wllm Shkspr (Abridged)...
Re-membering the Bard: Revisiting The Compleat Wrks of Wllm Shkspr (Abridged)...Hasting Chen
 
No Advance 8868886958 Chandigarh Call Girls , Indian Call Girls For Full Nigh...
No Advance 8868886958 Chandigarh Call Girls , Indian Call Girls For Full Nigh...No Advance 8868886958 Chandigarh Call Girls , Indian Call Girls For Full Nigh...
No Advance 8868886958 Chandigarh Call Girls , Indian Call Girls For Full Nigh...Sheetaleventcompany
 

Kürzlich hochgeladen (20)

Call Girl Number in Khar Mumbai📲 9892124323 💞 Full Night Enjoy
Call Girl Number in Khar Mumbai📲 9892124323 💞 Full Night EnjoyCall Girl Number in Khar Mumbai📲 9892124323 💞 Full Night Enjoy
Call Girl Number in Khar Mumbai📲 9892124323 💞 Full Night Enjoy
 
CTAC 2024 Valencia - Sven Zoelle - Most Crucial Invest to Digitalisation_slid...
CTAC 2024 Valencia - Sven Zoelle - Most Crucial Invest to Digitalisation_slid...CTAC 2024 Valencia - Sven Zoelle - Most Crucial Invest to Digitalisation_slid...
CTAC 2024 Valencia - Sven Zoelle - Most Crucial Invest to Digitalisation_slid...
 
Mathematics of Finance Presentation.pptx
Mathematics of Finance Presentation.pptxMathematics of Finance Presentation.pptx
Mathematics of Finance Presentation.pptx
 
ANCHORING SCRIPT FOR A CULTURAL EVENT.docx
ANCHORING SCRIPT FOR A CULTURAL EVENT.docxANCHORING SCRIPT FOR A CULTURAL EVENT.docx
ANCHORING SCRIPT FOR A CULTURAL EVENT.docx
 
Mohammad_Alnahdi_Oral_Presentation_Assignment.pptx
Mohammad_Alnahdi_Oral_Presentation_Assignment.pptxMohammad_Alnahdi_Oral_Presentation_Assignment.pptx
Mohammad_Alnahdi_Oral_Presentation_Assignment.pptx
 
VVIP Call Girls Nalasopara : 9892124323, Call Girls in Nalasopara Services
VVIP Call Girls Nalasopara : 9892124323, Call Girls in Nalasopara ServicesVVIP Call Girls Nalasopara : 9892124323, Call Girls in Nalasopara Services
VVIP Call Girls Nalasopara : 9892124323, Call Girls in Nalasopara Services
 
Navi Mumbai Call Girls Service Pooja 9892124323 Real Russian Girls Looking Mo...
Navi Mumbai Call Girls Service Pooja 9892124323 Real Russian Girls Looking Mo...Navi Mumbai Call Girls Service Pooja 9892124323 Real Russian Girls Looking Mo...
Navi Mumbai Call Girls Service Pooja 9892124323 Real Russian Girls Looking Mo...
 
Presentation on Engagement in Book Clubs
Presentation on Engagement in Book ClubsPresentation on Engagement in Book Clubs
Presentation on Engagement in Book Clubs
 
BDSM⚡Call Girls in Sector 93 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 93 Noida Escorts >༒8448380779 Escort ServiceBDSM⚡Call Girls in Sector 93 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 93 Noida Escorts >༒8448380779 Escort Service
 
George Lever - eCommerce Day Chile 2024
George Lever -  eCommerce Day Chile 2024George Lever -  eCommerce Day Chile 2024
George Lever - eCommerce Day Chile 2024
 
Open Source Strategy in Logistics 2015_Henrik Hankedvz-d-nl-log-conference.pdf
Open Source Strategy in Logistics 2015_Henrik Hankedvz-d-nl-log-conference.pdfOpen Source Strategy in Logistics 2015_Henrik Hankedvz-d-nl-log-conference.pdf
Open Source Strategy in Logistics 2015_Henrik Hankedvz-d-nl-log-conference.pdf
 
WhatsApp 📞 9892124323 ✅Call Girls In Juhu ( Mumbai )
WhatsApp 📞 9892124323 ✅Call Girls In Juhu ( Mumbai )WhatsApp 📞 9892124323 ✅Call Girls In Juhu ( Mumbai )
WhatsApp 📞 9892124323 ✅Call Girls In Juhu ( Mumbai )
 
Microsoft Copilot AI for Everyone - created by AI
Microsoft Copilot AI for Everyone - created by AIMicrosoft Copilot AI for Everyone - created by AI
Microsoft Copilot AI for Everyone - created by AI
 
Thirunelveli call girls Tamil escorts 7877702510
Thirunelveli call girls Tamil escorts 7877702510Thirunelveli call girls Tamil escorts 7877702510
Thirunelveli call girls Tamil escorts 7877702510
 
Governance and Nation-Building in Nigeria: Some Reflections on Options for Po...
Governance and Nation-Building in Nigeria: Some Reflections on Options for Po...Governance and Nation-Building in Nigeria: Some Reflections on Options for Po...
Governance and Nation-Building in Nigeria: Some Reflections on Options for Po...
 
Night 7k Call Girls Noida Sector 128 Call Me: 8448380779
Night 7k Call Girls Noida Sector 128 Call Me: 8448380779Night 7k Call Girls Noida Sector 128 Call Me: 8448380779
Night 7k Call Girls Noida Sector 128 Call Me: 8448380779
 
Exploring protein-protein interactions by Weak Affinity Chromatography (WAC) ...
Exploring protein-protein interactions by Weak Affinity Chromatography (WAC) ...Exploring protein-protein interactions by Weak Affinity Chromatography (WAC) ...
Exploring protein-protein interactions by Weak Affinity Chromatography (WAC) ...
 
Call Girls in Sarojini Nagar Market Delhi 💯 Call Us 🔝8264348440🔝
Call Girls in Sarojini Nagar Market Delhi 💯 Call Us 🔝8264348440🔝Call Girls in Sarojini Nagar Market Delhi 💯 Call Us 🔝8264348440🔝
Call Girls in Sarojini Nagar Market Delhi 💯 Call Us 🔝8264348440🔝
 
Re-membering the Bard: Revisiting The Compleat Wrks of Wllm Shkspr (Abridged)...
Re-membering the Bard: Revisiting The Compleat Wrks of Wllm Shkspr (Abridged)...Re-membering the Bard: Revisiting The Compleat Wrks of Wllm Shkspr (Abridged)...
Re-membering the Bard: Revisiting The Compleat Wrks of Wllm Shkspr (Abridged)...
 
No Advance 8868886958 Chandigarh Call Girls , Indian Call Girls For Full Nigh...
No Advance 8868886958 Chandigarh Call Girls , Indian Call Girls For Full Nigh...No Advance 8868886958 Chandigarh Call Girls , Indian Call Girls For Full Nigh...
No Advance 8868886958 Chandigarh Call Girls , Indian Call Girls For Full Nigh...
 

The lazy administrator, how to make your life easier by using tdi to automate your work

  • 1. 14 The lazy administrator, how to make your life easier by using TDI to automate your work Klaus Bild, Wannes Rams UKLUG 2012 – Cardiff, Wales
  • 2. UKLUG 2012 – Cardiff, Wales About us… Klaus Bild Senior System Architect kbild.ch twitter.com/kbild linkedin.com/in/kbild Wannes Rams Senior Consultant wannes.rams.be twitter.com/wannesrams linkedin.com/in/wannesrams
  • 3. UKLUG 2012 – Cardiff, Wales Agenda • Introduction to TDI (a.k.a SDI) • What is TDI • How to use it with Domino • How to use it with Connections • Examples, examples, examples • Create a Wiki page with users of your Domino address book • Maintain Community membership through a Domino application • Export users last logon date per application
  • 4. UKLUG 2012 – Cardiff, Wales Goal Giving you a basic understanding how you can use Tivoli Directory Integrator to reuse data which resides in Connections or Domino.
  • 5. What is Tivoli Directory Integrator (TDI 7.1.1) aka Security Directory Integrator (SDI 7.2) Input (Feed) Assembly Line (AL) Output UKLUG 2012 – Cardiff, Wales Functions Flow Components Scripts Attribute Maps
  • 6. What is Tivoli Directory Integrator (TDI) aka Security Directory Integrator (SDI) UKLUG 2012 – Cardiff, Wales Modes: • AddOnly (A) • CallReply (C) • Delete (D) • Delta (Δ) • Interator (I) • Lookup (L) • Update (U) • Server (S)
  • 7. What is Tivoli Directory Integrator (TDI) aka Security Directory Integrator (SDI) UKLUG 2012 – Cardiff, Wales Available Connectors (7.1.1, more than 60): • Active Directory Change Detection Connector • AssemblyLine Connector • Axis Easy Web Service Server Connector • Axis2 Web Service Server Connector • CCMDB Connector • Command line Connector • Database Connector • Deployed Assets Connector • Direct TCP /URL scripting • custom • Domino AdminP Connector • Domino Change Detection Connector • Domino Users Connector • DSMLv2 SOAP Connector • DSMLv2 SOAP Server Connector • EIF Connector • File Connector • File Management Connector • Form Entry Connector • FTP Client Connector • Generic Log Adapter Connector • Old HTTP Client Connector • HTTP Client Connector • Old HTTP Server Connector • HTTP Server Connector • IBM MQ Connector • IBM Directory Server Changelog Connector • IdML CI and Relationship Connector • IT Registry CI and Relationship Connector • ITIM Agent Connector • TIM DSMLv2 Connector • JDBC Connector • JMS Connector • JMS Password Store Connector • JMX Connector • JNDI Connector • LDAP Connector • LDAP Group Members Connector • LDAP Server Connector • Log Connector • Lotus Notes Connector • Mailbox Connector • Memory Queue Connector • Memory Stream Connector • Properties Connector • RAC Connector • RDBMS Change Detection Connector • SAP ABAP Application Server Business Object Repository Connector • SAP ABAP Application Server User Registry Connector • Script Connector • Server Notifications Connector • Simple Tpae IF Connector • SNMP Connector • SNMP Server Connector • Sun Directory Change Detection Connector • System Queue Connector • System Store Connector • TADDM Change Detection Connector • TADDM Connector • TCP Connector • TCP Server Connector • Tivoli Access Manager (TAM) Connector • Timer Connector • Tpae IF Change Detection Connector • Tpae IF Connector • URL Connector • Web Service Receiver Server Connector • Windows Users and Groups Connector • z/OS LDAP Changelog Connector
  • 8. UKLUG 2012 – Cardiff, Wales How to use TDI with Domino Available Connectors for Notes/Domino: • Domino Change Detection Connector (Mode: I): Enables TDI to detect when changes have occurred to a nsf database maintained on a Domino server and reports changed Domino documents. • Domino Users Connector (Mode: ADILU): Provides access to Lotus Domino user accounts and the means for managing them. • Lotus Notes Connector (Mode: ADILU): Works directly with any type of Notes Documents in any .nsf database. • Domino AdminP Connector (Mode: AI): The Domino AdminP Connector is a special version of the Lotus Notes Connector, the database parameter is always set to admin4.nsf. It has the capability to sign fields while adding a document and you can create AdminP request. Or use non Domino specific: LDAP Connector (ADILUΔ) / HTTP Client Connector (AILC)
  • 9. Local Client Session Local Server Session IIOP session Yes No Yes Domino Users Connector Yes Yes Yes Lotus Notes Connector Yes Yes Yes No Yes Yes UKLUG 2012 – Cardiff, Wales How to use TDI with Domino Supported session types by Connector Supported Sessions > Connectors V Domino Change Detection Connector Domino AdminP Connector -> IIOP session gives you the highest flexibility
  • 10. UKLUG 2012 – Cardiff, Wales How to use TDI with Domino If you are using IOOP sessions, perform the following: • Ensure the Notes.jar file does not exist in the TDI_install_dir/jars folder and any of its subfolders. • Copy Domino_data/domino/java/NCSO.jar to TDI_install_dir/jars/3rdparty/IBM or to the folder specified by the com.ibm.di.loader.userjars property in global.properties (or solution.properties).
  • 11. How to use TDI with Connections Pre-packaged scripts with IBM Connections: “Official” way to go if you want to change which users are imported or want to change/add/get profile data. Included scripts: collect_dns, delete_or_inactivate_employees, dump_photos_to_files, dump_pronounce_to_files, fill_country/department/emp_type/organization/workloc, load_photos_from_files, load_pronounce_from_files, mark_managers, populate_from_dn_file, sync_all_dns Needs setup, has to be imported into TDI solution directory and will add two additional connectors (Profile/Photo) as well. IBM Connections API Gives you access to almost every function that you can access and use through the IBM Connections user interface. You can use standard TDI connectors (i.e. HTTP Client connector). Be aware that the API documentation is not very good (to say it nicely). UKLUG 2012 – Cardiff, Wales
  • 12. How to use TDI with Connections IBM Social Business Toolkit: TDI is java based and therefore you can use the IBM SBT SDK to create your own script connectors. You have to import some parts of the SDK into your TDI environment. You definitely should have a developer background. -> http://de.slideshare.net/AndreasArtner/activity-stream-how-to-feed-the-beast Direct Database access: Connections stores almost everything inside the RDBMS but there is no public DB schema info from IBM. This is not a supported way to change data inside Connections (although some Partner solutions directly manipulate data in the database and their solutions are IBM supported). But you can use it to get data from Connections. UKLUG 2012 – Cardiff, Wales
  • 13. Create a Wiki page with users of your Domino address book - Example UKLUG 2012 – Cardiff, Wales
  • 14. Create a Wiki page with users of your Domino address book - Example UKLUG 2012 – Cardiff, Wales
  • 15. Create a Wiki page with users of your Domino address book – How to The workflow is as follows: 1. Get all Domino users in names.nsf 2. Create the Wiki page Atom document 3. Send the Wiki page Atom document to the Wikis API UKLUG 2012 – Cardiff, Wales
  • 16. UKLUG 2012 – Cardiff, Wales Wiki page – How to 1. Get all Domino users in names.nsf: Just use Domino Users Connector in iterator mode, easy. Best practice: Always use property files for your parameters, it will save you a lot of time if you want to use the AL with different servers, environments!
  • 17. Wiki page – How to 2. Create the Wiki page Atom document (AL create_Wiki_Entry_Atom): UKLUG 2012 – Cardiff, Wales • Find out how the Atom document has to be build (http://www-10.lotus.com/ldd/appdevwiki.nsf/dx/Wiki_page_content_ic50) or try the SBT playground https://greenhouse.lotus.com/sbt/SBTPlayground.nsf/ Explorer.xsp#api=Social_Wikis_API_Working_with_wiki_pages • Should be easy but… Example on SBT playground (does not work) • Works if you change the content line to <content type="text/html"><![CDATA[<p>This is James's wiki page.</p>]]>
  • 18. UKLUG 2012 – Cardiff, Wales Wiki page – How to 2. AL create_Wiki_Entry_Atom: • Define the HTML code for the page • Use the Prolog for the first part • Use the iterator to generate the list • Use the Epilog for the closing
  • 19. UKLUG 2012 – Cardiff, Wales Wiki page – How to 2. AL create_Wiki_Entry_Atom: • This is the final code, all on ONE line: <?xml version="1.0" encoding="UTF-8"?><entry xmlns="http://www.w3.org/2005/Atom"><content type="text/html"><![CDATA[<div><p dir="ltr"><strong style="color: rgb(67, 106, 173);font-size:large;">All data is from the Domino directory - Example for ICON UK </strong> <img src="/images/graphics-star-wars- 300566.gif" width="151" height="100"/></p><table border="1" cellpadding="5" cellspacing="0" dir="ltr" style="border-collapse: collapse; width: 800px;" width="246"><tbody><tr height="14"><td><strong>Name</strong></td><td><strong>Shortname</strong></td><td><strong>Title</strong></ td><td><strong>Company</strong></td><td><strong>Number</strong></td><td><strong>Photo (Connections photo!)</strong></td></tr><tr><td><span class="vcard"><a class="fn url" href="">Christian Guedemann</a><span class="email" style="display: none;">Christian.Guedemann@snt.com</span></ span></td><td><span class="vcard"><a class="fn url" href="">CGU</a><span class="email" style="display: none;">Christian.Guedemann@snt.com</ span></span></td><td>Senior System Architect</td><td>WebGate Consulting AG</td><td><a href="sip://+41008008008">+41008008008</a></ td><td><div style="width: 150px;height: 150px;border-radius: 75px;-webkit-border-radius: 75px;-moz-border-radius: 75px;background: url(/profiles/ photo.do?email=Christian.Guedemann@snt.com) no-repeat;"></div></td></tr><tr><td><span class="vcard"><a class="fn url" href="">Klaus Bild</ a><span class="email" style="display: none;">Klaus.Bild@snt.com</span></span></td><td><span class="vcard"><a class="fn url" href="">KBI</ a><span class="email" style="display: none;">Klaus.Bild@snt.com</span></span></td><td>Senior System Architect</td><td>WebGate Consulting AG</ td><td><a href="sip://+41004004004">+41004004004</a></td><td><div style="width: 150px;height: 150px;border-radius: 75px;-webkit-border-radius: 75px;-moz-border-radius: 75px;background: url(/profiles/photo.do?email=Klaus.Bild@snt.com) no-repeat;"></div></td></tr><tr><td><span class="vcard"><a class="fn url" href="">Christoph Stoettner</a><span class="email" style="display: none;">CHristoph.Stoettner@snt.com</span></ span></td><td><span class="vcard"><a class="fn url" href="">CST</a><span class="email" style="display: none;">CHristoph.Stoettner@snt.com</ span></span></td><td>Senior IT Consultant</td><td>Fritz and Macziol GmbH</td><td><a href="sip://+41003003003">+41003003003</a></ td><td><div style="width: 150px;height: 150px;border-radius: 75px;-webkit-border-radius: 75px;-moz-border-radius: 75px;background: url(/profiles/ photo.do?email=CHristoph.Stoettner@snt.com) no-repeat;"></div></td></tr><tr><td><span class="vcard"><a class="fn url" href="">Sharon Bellamy</ a><span class="email" style="display: none;">Sharon.Bellamy@snt.com</span></span></td><td><span class="vcard"><a class="fn url" href="">SBE</ a><span class="email" style="display: none;">Sharon.Bellamy@snt.com</span></span></td><td>IT Consultant</td><td>Cube Soft Consulting</ td><td><a href="sip://+41003003003">+41003003003</a></td><td><div style="width: 150px;height: 150px;border-radius: 75px;-webkit-border-radius: 75px;-moz-border-radius: 75px;background: url(/profiles/photo.do?email=Sharon.Bellamy@snt.com) no-repeat;"></div></td></tr><tr><td><span class="vcard"><a class="fn url" href="">Wannes Rams</a><span class="email" style="display: none;">Wannes.Rams@snt.com</span></span></ td><td><span class="vcard"><a class="fn url" href="">WRA</a><span class="email" style="display: none;">Wannes.Rams@snt.com</span></span></ td><td>Social Business Consultant</td><td>GFI</td><td><a href="sip://+41003003003">+41003003003</a></td><td><div style="width: 150px;height: 150px;border-radius: 75px;-webkit-border-radius: 75px;-moz-border-radius: 75px;background: url(/profiles/photo.do?email=Wannes.Rams@snt.com) no-repeat;"></ div></td></tr></tbody></table></div> ]]></content><category scheme="tag:ibm.com,2006:td/type" term="page" label="page" /></entry>
  • 20. Wiki page – How to 3. Send the Wiki page Atom document to the Wikis API (HTTP client UKLUG 2012 – Cardiff, Wales connector): • This is good documented (no joke) http://www-10.lotus.com/ldd/appdevwiki.nsf/dx/Updating_a_wiki_page_ic50
  • 21. UKLUG 2012 – Cardiff, Wales Wiki page – How to This user needs editor rights on the Wiki
  • 22. Wiki page – SSL requests • Most Connections environments force traffic over SSL • If you get following error if you call the Connections API through SSL you have to import the Connections server certificate into TDI_install_dir/jserverapi/testadmin.jks (pw: administrator) UKLUG 2012 – Cardiff, Wales
  • 23. UKLUG 2012 – Cardiff, Wales Wiki page – How to • Final step is to create an AL with combines the create_Wiki_Entry_Atom AL and the HTTP client connector
  • 24. Community membership through a Domino application - Example UKLUG 2012 – Cardiff, Wales
  • 25. Community membership - Example UKLUG 2012 – Cardiff, Wales
  • 26. Community membership – How to The workflow is as follows: 1. Iterate through all Community entries in the Notes DB 2. Create Community if it is a new Community • Check if it is a new community • Create Community Atom entry • Call/Reply request to the Communities API • Get the Uuid of the new Community & write it back to the Notes DB 3. Add missing members to every Community • Iterate through all members found in the Community entry (from the Notes DB) and look if user is not a member in the Community member feed • Create member Atom entry • Send the member Atom entry to the Communities API 4. Add missing Owners (same steps as for member adding) UKLUG 2012 – Cardiff, Wales
  • 27. Community membership – How to 1. Iterate through all Community entries in the Notes DB: Just use Lotus Notes Connector in iterator mode, again this is easy. You don’t need a running HTTP task on Domino if you use the DIIOP IOR string as Server IP Address! UKLUG 2012 – Cardiff, Wales
  • 28. Community membership – How to 2. Create Community if it is a new Community UKLUG 2012 – Cardiff, Wales • Check if it is a new community
  • 29. Community membership – How to 2. Create Community if it is a new Community UKLUG 2012 – Cardiff, Wales • Create Community Atom entry var atom_community_entry = '<?xml version="1.0" encoding="UTF-8"?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:app="http://www.w3.org/2007/app" xmlns:snx="http://www.ibm.com/xmlns/prod/sn"><title type="text">' + work.Community_Name + '</title><content type="html">' + work.Description + '</ content><category term="community" scheme="http://www.ibm.com/xmlns/prod/ sn/type"></category><snx:communityType>' + work.Access + '</ snx:communityType></entry>';
  • 30. Community membership – How to 2. Create Community if it is a new Community UKLUG 2012 – Cardiff, Wales • Call/Reply request to the Communities API This user needs the admin security role for the Communities app! (WAS Admin Console)
  • 31. Community membership – How to 2. Create Community if it is a new Community • Get the Uuid of the new Community & write it back to the Notes DB UKLUG 2012 – Cardiff, Wales
  • 32. Community membership – How to 3. Add missing members to every Community • Get the Community member feed (received with HTTP client connector) This will create a request to following URL: …/communities/service/atom/community/members? communityUuid=$uuid&role=member UKLUG 2012 – Cardiff, Wales
  • 33. Community membership – How to 3. Add missing members to every Community • Iterate through all members found in the Community entry (from the Notes DB) and look if user is not a member in the Community member feed UKLUG 2012 – Cardiff, Wales
  • 34. Community membership – How to 3. Add missing members to every Community • Create member Atom entry through script: var atom_member_entry = '<?xml version="1.0" encoding="UTF-8"?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:app="http://www.w3.org/2007/app" xmlns:snx="http://www.ibm.com/xmlns/prod/sn"><contributor>¨<email>' + work.InternetAddress + '</email><snx:role>member</snx:role></ contributor><snx:role component="http://www.ibm.com/xmlns/prod/sn/ communities">member</snx:role></entry>'; UKLUG 2012 – Cardiff, Wales
  • 35. Community membership – How to 3. Add missing members UKLUG 2012 – Cardiff, Wales to every Community • Send the member Atom entry to the Communities API (HTTP client connector) URL on next page This user needs the admin security role for the Communities app! (WAS Admin Console)
  • 36. Community membership – How to 3. Add missing members to every Community • Send the member Atom entry to the Communities API (HTTP client connector) This will create a request to following URL: …/communities/service/atom/community/members? communityUuid=$uuid UKLUG 2012 – Cardiff, Wales
  • 37. Community membership – How to 4. Add missing Owners (same steps as for members) var atom_owner_entry = '<?xml version="1.0" encoding="UTF-8"?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:app="http://www.w3.org/2007/app" xmlns:snx="http://www.ibm.com/xmlns/prod/sn"><contributor>¨<email>' + work.InternetAddress_Owner + '</email><snx:role>owner</snx:role></contributor><snx:role component="http:// www.ibm.com/xmlns/prod/sn/communities">owner</snx:role></entry>'; UKLUG 2012 – Cardiff, Wales
  • 38. Community membership – How to • Final assembly line UKLUG 2012 – Cardiff, Wales
  • 39. Export users last logon date per application - Example UKLUG 2012 – Cardiff, Wales
  • 40. Export users last logon date per application - Example UKLUG 2012 – Cardiff, Wales
  • 41. Export users last logon date – How to • We will export the last logon date for all users • For all applications • Export to Domino • Export to CSV • This runs scheduled weekly as a reporting to our deployment team UKLUG 2012 – Cardiff, Wales
  • 42. Export users last logon date – How to The workflow is as follows: 1. Iterate through all entries in the PeopleDB and fetch uid and full name 2. Connect to application table that contains profile 3. Fetch user key 4. Connect to Application table that contains last logon date 5. Repeat for all applications 6. Write to Domino 7. Write to csv UKLUG 2012 – Cardiff, Wales
  • 43. Export users last logon date – How to • Create a new assemble line and add a Database Connector. Make it an iterator and connect it to your Profiles database Employee table UKLUG 2012 – Cardiff, Wales
  • 44. Export users last logon date – How to • I will show you for 1 database and then give you the mapping table for the other databases • Connect to the Files database, USER_TO_LOGIN table UKLUG 2012 – Cardiff, Wales
  • 45. Export users last logon date – How to • Use the uid_lower as your key to find the relevant user key UKLUG 2012 – Cardiff, Wales
  • 46. Export users last logon date – How to UKLUG 2012 – Cardiff, Wales
  • 47. Export users last logon date – How to • Now connect to the Files database USER table to get the last logon date of this user using the USER_ID fetched in the last step as a link UKLUG 2012 – Cardiff, Wales
  • 48. Export users last logon date – How to • Repeat these steps for all applications, except Blogs. The Blogs database table ROLLERUSER contains uid and last logon date. On top of that it is the only table that uses the uid as is and not converted to lowercase.(thank god for consistency) UKLUG 2012 – Cardiff, Wales
  • 49. Export users last logon date – How to • This is the table for all the databases UKLUG 2012 – Cardiff, Wales Application Uid lookup Table Table Name Uid Column User Key Column Blogs Not needed Not needed Not needed Bookmarks PERSONLOGIN LOGINNAME PERSON_ID Files USER_TO_LOGIN LOGIN_ID LOGIN_ID Forum DF_MEMBERLOGIN LOGINNAME_LOWER MEMBERID Homepage LOGINNAME LOGINNAME PERSON_ID Activities OA_MEMBERLOGIN LLOGINNAME MEMBERID Profiles EMPLOYEE PROF_UID_LOWER PROF_KEY Communities MEMBERLOGIN LOWER_LOGIN MEMBER_UUID Wikis USER_TO_LOGIN LOGIN_ID USER_ID
  • 50. Export users last logon date – How to • This is the table for all the databases UKLUG 2012 – Cardiff, Wales Application Last Logon table Table Name Uid Last Logon Blogs ROLLERUSER USERNAME LASTLOGIN Bookmarks PERSON PERSON_ID LASTLOGIN Files USER ID LAST_VISIT Forum MEMBERPROFILE MEMBERID LASTLOGIN Homepage PERSON PERSON_ID LAST_UPDATE Activities OA_MEMBERPROFILE MEMBERID LASTLOGIN Profiles PROFILE_LAST_LOGIN PROF_KEY LAST_LOGIN Communities MEMBERPROFILE MEMBER_UUID LASTLOGIN Wikis USER ID LAST_VISIT
  • 51. Export users last logon date – How to • Create a Domino Database with a form called “User” and following fields: • Activities_LASTLOGIN, Name, Blogs_LASTLOGIN, Communities_LASTLOGIN, Dogear_LASTLOGIN, Files_LASTVISIT, Forum_LASTVISIT, Homepage_LASTUPDATE, Profiles_LASTLOGIN, Uid, Wikis_LASTVISIT UKLUG 2012 – Cardiff, Wales • And a view to show these
  • 52. Export users last logon date – How to • Add a LotusNotes connector to the assembly line and connect it to UKLUG 2012 – Cardiff, Wales your database using diiop. • Set the mode to “AddOnly”
  • 53. Export users last logon date – How to • Create the following output map • The reason for not having the value as is in the left column is because the value you get from db2 is in java.sql.date format, we need to make sure we get the string UKLUG 2012 – Cardiff, Wales
  • 54. Export users last logon date – How to • To dump to a csv file add a File System Connector and select csv as UKLUG 2012 – Cardiff, Wales parser. Add the header fields to the Field Names and enable the write header • Set “;” as your seperator
  • 55. Export users last logon date – How to Now we need to set the file location and file name. We want to make this dynamic so we can schedule the script. File location will be defined in the property file. Use the following javascript to define the filename and location var srcPath=system.getTDIProperty("Cnx", "export_path") var stDateStamp=system.formatDate((new Date()),"yyyyMMdd"); var outFile=srcPath + system.getTDIProperty("Cnx", "export_filename") + stDateStamp + ".csv"; return outFile UKLUG 2012 – Cardiff, Wales
  • 56. Export users last logon date – How to • For the csv file we can output in the original format, no need to UKLUG 2012 – Cardiff, Wales transform to String as the parser will do this for us.
  • 57. UKLUG 2012 – Cardiff, Wales Questions?
  • 58. http://slideshare.com/palmke UKLUG 2012 – Cardiff, Wales Thank You! http://linkedin.com/in/wannesrams http://twitter.com/wannesrams http://wannes.rams.be http://www.webgate.biz http://slideshare.com/kbild http://linkedin.com/in/kbild http://twitter.com/kbild http://kbild.ch