Call for speakers is now open
Submission topics
Digital workplace
Enterprise email
Unified communications
Enterprise content management
Enterprise and team collaboration
Compliance
Individual productivity
More information on the event site
Submission topics
Digital workplace
Enterprise email
Unified communications
Enterprise content management
Enterprise and team collaboration
Compliance
Individual productivity
More information on the event site
I made this guide to install WEX Foundation 11.0.0.1 on a single machine using CentOS 6.7.
This toolkit includes two main areas of functionality:
A “Web Developer Dashboard” that provides a user interface for working with Script Portlets, Portal themes, and WCM design elements.
The theme support uses the Digital Experience File Sync tool under the covers.
The Script Portlet support uses the Script Portlet command line support which must be installed separately on your workstation.
A command line tool “dxwcmdesigns” for moving WCM design elements – Presentation Templates and Components – between your local file system and your Portal server.
This functionality is also available from the Dashboard.
An overview of this toolkit you can see here
Five years ago IBM announced the first class of Champions. I was on that list.
This year I am on the IBM Champions for Middleware list for the first time.
Congratulations to all IBM Champions.
The first fifty list :
Adam Brown Bill Malchisky Bruce Elgort Carlos Casas CC Liew Chris Miller Chris Toohey Daniel Recio David Leedy David Stephens |
Declan Lynch Eileen Fitzgerald Eric Mack Femke Goedhart Francie Tanner Gabriella Davis Giuseppe Grasso Handly Cameron John Head Julian Robichaux |
Kenio Carvalho Lidia Vikulova Lisa Duke Marie Scott Mark Leusink Mathew Newman Matt White Mikkel Heisterberg Mitch Cohen Mitsuru Kato |
Nathan T Freeman Paul Mooney Paul Withers Rob Bontekoe Rob Novak Sanjaya Kumar Saxena Serdar Basegmez Sharon Bellamy Simon Vaughn Sjaak Ursinus |
Steve Pitcher Stuart McIntyre Theo Heselmans Thomas Duff Tim Tripcony Ulrich Krause Warren Elsmore Yancy Lent Yoshihiro Matsuo Yoshio Maruyama |
“WebSphere Liberty is the next generation application server. Liberty and Eclipse make a great local development environment for developing Java EE applications. To develop Java EE applications to deploy to Liberty, you’re going to need a Liberty development environment. You’ll also need an integrated development environment (IDE) for editing your code. While any Java EE IDE will work, the Eclipse IDE is one of the best, if for no other reason than because IBM has developed plugins for Eclipse for developing Liberty applications and for working with Bluemix.”
Since 1997 i work with Notes/Domino. In that time i receive every quarter a set of CD’s with the Lotus KB on it.
Things have changed for the better, LNN was launched and i was able to replicate the LotusKB on daily basis, no more CD’s, no more delays.
I start to work with WebSphere, Portal and other IBM products in 2005 and the support is only from “google” and the software manuals were called Infocenters.
IBM changed again, in my opinion, not for the best, several manuals are only on wikis.
A few years ago IBM changed again to the Knowledge Center. I think it is a better version of the old Infocenter.
Today i was reading some iformation about Watson and a alert show a message “On May 29 the Knowledge Center will change for a new version….”
More information here -> https://www-304.ibm.com/connections/blogs/techcontent/date/201605?lang=en_us
Go to the new version (beta) -> https://www.ibm.com/support/knowledgecenter/beta
This can be done using an agent that is run by an ID that has access and delete rights to all the mail files on the server. The email will have the same Universal ID(UNID) in all of the mail files. This will allow you to get a handle on that particular email. The example code below gets a handle to the People view of the server’s name and address book. From the person document, it obtains the mail file for the user and then opens the mail file, locates the email and removes it.
The first step is to locate the UNID. This can be found by bringing up the document properties for the email you want to remove and looking at the beanie tab:
The UNID will be the 32 characters on the first 2 lines without the OF from the first line and the ON from the second line. Also, do not include the colon : on the 2 lines. So, the UNID for the above screen shot would be – EF883FE6FC7A14D185257F8E005D7D7D
The following code is an example that can be used to accomplish this. Please note that this code is provided as an example only. IBM support will not be able to modify or customize this agent. A version of this agent will need to be run on all mail servers in your environment. It can be set to run as a scheduled agent or via action menu selection. The target in both the scheduled version and action menu selection should be set to None
Sub Initialize
Dim s As New NotesSession
Dim perdoc As NotesDocument
Dim pview As NotesView
Dim mailDB As NotesDatabase
Dim db As NotesDatabase
Dim strServerName As String
Dim doc As NotesDocument
On Error Resume next
‘Set the strServerName variable to point to your server name
strServerName = “YourServer/YourDomain”
Set db = s.Getdatabase(strServerName, “Names.nsf”, False)
Set pview = db.GetView(“($People)”)
Set perdoc = pview.GetFirstdocument
While Not perdoc Is Nothing
Set maildb = s.Getdatabase(strServerName, perdoc.Getitemvalue(“mailFIle”)(0), False)
If Not maildb Is Nothing Then
Set doc = maildb.Getdocumentbyunid(“<Target document UNID goes here>”)
If Not doc Is Nothing Then
Call doc.Removepermanently(True)
End If
End If
Set perdoc = pview.Getnextdocument(perdoc)
Wend
End Sub
I found the information above on http://www-01.ibm.com/support/docview.wss?uid=swg21980866
The badge is using Mozilla OpenBadges technology to let people display verifiable acheivements.
After download all files i just want to rename the files to presentation titles. I search for a rename software but the problem was not about software. The problem was how to get the relationship with the file and the presentation name.
I open every pdf file and get the presentation title and create the relationship. After that a small java program rename all files on a folder.
The file bellow has the relationship
The java code bellow rename the files on the folder. Just put the reanamer.txt and Rename.jar on the same folder of the dowloaded files and run java -jar Rename.jar
import java.io.BufferedReader;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
public class Rename {
public static void main(String[] args) throws FileNotFoundException {
BufferedReader br = null;
String line = "";
String cvsSplitBy = ",";
String csvFile = "renamer.txt";
br = new BufferedReader(new FileReader(csvFile));
try {
while ((line = br.readLine()) != null) {
String[] oldName = line.split(cvsSplitBy);
System.out.println(oldName[0]);
System.out.println(oldName[1]);
File oldfile = new File (oldName[0]+".pdf");
File newfile = new File (oldName[1]+".pdf");
if (oldfile.renameTo(newfile)) {
System.out.println("Rename sucessfull");
}
}
} catch (IOException e) {
e.printStackTrace();
}
try {
br.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}