Browsing articles tagged with " 3.0.1"
Apr 18, 2012
Klaus Bild

Add admin users to Connections security roles – the easy way

It happened again some weeks ago when I installed the Connections 3.0.1.1 fixpack, all the users I added to the security roles of the different apps were gone after the update :-(

But instead of adding them again manually through the Admin console I searched for a better solution and found an old blog entry from Marco Ensing:

http://www.ibmconnections.org/wordpress/index.php/2010/04/mapping-groups-to-a-role-in-lotus-connections/

This was the basis for this little jython script, which you can use to recreate your settings:

 ConfigureConnectionsRoles.py

Just download it & open it with a text editor. It’s rather self-explaining, add your users and change roles where needed.

Finally run the script via wsadmin tool:

wsadmin.bat -lang jython -port 8879 -username wasadmin -pw YOURPW -f ConfigureConnectionsRoles.py

Have fun!

 

Aug 10, 2011
Klaus Bild

IBM Connections iPhone App

Seit heute kann man die offizielle IBM Connections iPhone App im App Store runterladen:

http://itunes.apple.com/ch/app/ibm-connections/id450533489?l=en&mt=8

Damit die Applikation mit IBM Connections funktioniert braucht ihr Version 3.0.1 und das July Update (interim fix: 3.0.1.0-IC-Multi-Mobi-IFLO61851) für Connections, welches ihr auf FixCentral finden könnt: http://www-933.ibm.com/support/fixcentral/

Die Applikation bietet mehr oder weniger die Funktionalität, welche auch das mobile Webinterface von Connections bietet, hat aber einige kleine Ergänzungen:
- die Login Credentials werden gespeichert und man ist somit immer sofort eingeloggt
- Integration der Kamera Funktion, Fotos können direkt hochgeladen werden (Profilfoto, Dateien)

Hier einige Screenshots, welche euch einen Eindruck der Funktionalität vermitteln sollen:

 

Im Profil kann man direkt ein neues Profilfoto hochladen resp. ein neues Foto mit dem iPhone erstellen

Man kann Fotos auch direkt in die Dateien hochladen (mit tagging etc.)

 

Bilder kann man direkt betrachten oder auch aufs iPhone herunterladen.

Es gibt auch eine Applikation für Android & BlackBerry und das schöne dabei ist, dass alle das gleiche Interface nutzen. Die Funktionalität auf allen Geräten ist die gleiche und die Schulung und der Support von den Endbenutzer stellt somit keinen grossen Aufwand dar.

Jul 11, 2011
Klaus Bild

Customizing IBM Connections Profile Labels

Customizing IBM Connections 3.x labels is pretty easy, you just have to create a properties file, store your customized labels in it and place this file inside your <customization_dir>/strings directory:
http://www-10.lotus.com/ldd/lcwiki.nsf/dx/Customizing_product_strings_ic301
Customizing the profile labels on my installation unfortunately did not work although mentioned on wiki page (com.ibm.lconn.profiles.strings.ui_xx, com.ibm.lconn.profiles.strings.uilabels_xx).
So I had to find a workaround by using an external resource bundle and use it in my profiles. This needs more than one properties file but is still pretty easy. In this example I will reuse a given profile field (pagerNumber) and will add a customized label to it.

1. Create a properties file for each language you are using inside your strings directory -> I’m using com.belsoft.profiles.strings.uilabels_xx.properties

property file

2. Add the key-value pair for the string that you want to customize (for each language) and save the file

key pair

3. Add your external resource bundle to LotusConnections-config.xml by checking out the config and adding some lines:

cd D:\IBM\WebSphere\AppServer\profiles\Dmgr01\bin
wsadmin.bat -lang jython -port 8879
execfile(“connectionsConfig.py”)
LCConfigService.checkOutConfig(“D:/temp”,”BSAZ-ZHRU-VSV04Cell01″)
Command check out

Open LotusConnections-config.xml and add your widgetBundle inside the resource tag, you have to use your property file name as widgetbundle name:

<widgetBundle name=”com.belsoft.profiles.strings.uilabels” prefix=”belsoft”/>
201107111343.jpg

Check in your changes:

LCConfigService.checkInConfig(“D:/temp”,”BSAZ-ZHRU-VSV04Cell01″)
201107111351.jpg

4. Now we have to use the new labels inside the profiles:

execfile(“profilesAdmin.py”)
ProfilesConfigService.checkOutConfig(“D:/temp”,”BSAZ-ZHRU-VSV04Cell01″)

201107111404.jpg

Open profiles-config.xml and change the line for attribute pagerNumber (bundeleIdRef has to be the prefix of your added widgetBundle!):

<editableAttribute labelKey=”label.belsoft.privateMobileNumber” bundleIdRef=”belsoft” showLabel=”true” hideIfEmpty=”true”>pagerNumber</editableAttribute>
201107111402.jpg

Check in your changes:

ProfilesConfigService.checkInConfig(“D:/temp”,”BSAZ-ZHRU-VSV04Cell01″)
201107111407.jpg  

5. Last step is to update your versionStamp and sync all your nodes:

execfile(“connectionsConfig.py”)
LCConfigService.checkOutConfig(“D:/temp”,”BSAZ-ZHRU-VSV04Cell01″)
LCConfigService.updateConfig(“versionStamp”,”")
LCConfigService.checkInConfig(“D:/temp”,”BSAZ-ZHRU-VSV04Cell01″)
synchAllNodes()
exit
201107111424.jpg   

After a restart of your profiles server you should see the new label on your profiles page:

201107111412.jpg

Jul 5, 2011
Klaus Bild

Media Gallery Image Preview in IBM Connections 3.0.1 aktivieren

Wir nutzen bei uns intern seit dem Erscheinen der IBM Connections 3.0.1 Version diese auch. Die wichtigsten Neuerungen in dieser Version waren die Ideation Blogs sowie die Media Gallery, in welcher man Bilder und Videos ablegen und mit einer nützlichen Vorschaufunktion durchsuchen kann.
Nur leider hat diese Vorschaufunktion vom Beginn weg nicht funktioniert und wir haben auf eine Nutzung der Galleries somit ersteinmal verzichtet.
Im Connections Forum habe ich dann festgestellt, dass ich nicht der einzige mit dem Problem war und das es ein Problem mit den Zugriffsrechten auf die Files Komponente war. Nur auf eine Lösung mussten wir länger warten.
Sjaak Ursinus hat nun eine Lösung gefunden und diese netterweise auch im Forum mitgeteilt. Solltet ihr also jemals ein Problem mit der Vorschau haben, hier ist eure Lösung:

http://www-10.lotus.com/ldd/lcforum.nsf/d6091795dfaa5b1185256a7a0048a2d0/50de0a00b4b1c4f3852578bf0042270b?OpenDocument

UA-1559355-3