Personal names in Brazil and Domino Directory

  • 19 Sep, 2013

Here in Brazil we are known by first name. The Domino Directory only lists people using Last Name, First Name. I know is not a good idea to change Domino Directory but users are very confused to work with Last Name , First Name. So i change some views (column name) on the Domino Directory  and change the person name order  to First Name Last Name For reference you can read the article Personal names around the world(http://www.w3.org/International/questions/qa-personal-names) People DisplayPersonName := @Trim(@Implode(@Trim(@Subset(FirstName; 1) : MiddleInitial:@Subset(LastName; 1)); "   "));
DisplayName := @If(DisplayPersonName = ""; @Subset(FullName; 1); @Trim(DisplayPersonName:@Na

Personal names in Brazil and Domino DirectoryRead More

A week within the Matrix

  • 16 Sep, 2013

The past week has been very productive and exciting. I worked with two engineers from RedPill which are very famous in the community of ICS and IBM also Champions.
This week I was totally immersed in a process of modernization of Notes/Domino applications that really impressed everybody, as much as for the customer, which has one of the highest Notes/Domino installations in the world.
The numbers are impressive, both in number of users, servers and applications. In a week we have created  200+ Notes  applications that are now available for mobile devices. Take a look on what RedPill can do for modernizing Notes/Domino applications Thank you Nathan  Freeman and Peter Presnell for an a

A week within the MatrixRead More

Homepage Search: Profiles server fails while creating the initial index

  • 10 Sep, 2013

When trying to create the initial index for Global Search from the Homepage server, the index update fails with an error. To prevent further problems with indexing, perform a search in the Profiles database for any null entries in the table EMPINST.EMPLOYEE. select \ from EMPINST.EMPLOYEE
where EMPINST.EMPLOYEE.PROF\DISPLAY\NAME is null If any entries are returned they must be updated with an entry in the display name column for the Profiles feature to index successfully. To prevent this issue from occurring, change the value of PROF\DISPLAY\NAME=256 in the validate\dbrepos\fields.properties file, to contain the following: PROF\DISPLAY\NAME=(x != null) && (x.length() > 0) && (x.lengt

Homepage Search: Profiles server fails while creating the initial indexRead More

Recommendation to delete and recreate Notes Traveler account on BlackBerry 10 devices after upgrading Notes Traveler server to 9.0.0.1 or later

  • 05 Sep, 2013

Notes Traveler users using BlackBerry 10 devices must delete and recreate their BlackBerry 10 Notes Traveler account on the device when the Notes Traveler server is upgraded from 9.0.0.0 to 9.0.0.1 or later to ensure maximum compatibility. NOTE: This is required only if the device had previously been connected to a Notes Traveler 9.0.0.0 server.  No action is required if setting up a new 9.0.0.1 or later server or if connecting a new device to an existing 9.0.0.1 server. The BlackBerry 10 maintenance level 10.1.0.4651 introduced a severe issue when syncing with IBM Notes Traveler 9.0.0.0. Using this version of the BlackBerry 10 calendar synchronization client, any update that a BB10 user m

Recommendation to delete and recreate Notes Traveler account on BlackBerry 10 devices after upgrading Notes Traveler server to 9.0.0.1 or laterRead More

Knowledge Collection: IBM WebSphere Portal Performance

  • 03 Sep, 2013

How should I start tuning WebSphere portal Server for better performance ?(http://www-10.lotus.com/ldd/portalwiki.nsf/xpViewCategories.xsp?lookupName=WebSphere%20Portal%20and%20Lotus%20Web%20Content%20Management%20Performance%20Tuning%20Guides) This tuning guide provides details about the parameters that you can tune to improve portal performance. This guide serves as a very good starting point to start portal tuning process before production usage.
Performance tuning guide for WebSphere portal on IBM i(http://www-10.lotus.com/ldd/portalwiki.nsf/dx/performancecheatsheetwebsphereportalexpress6.1.5onibmiv6r1)
This document discusses additional performance tuning recommendations that is

Knowledge Collection: IBM WebSphere Portal PerformanceRead More

Just in case you don´t have a graphical interface on linux

  • 30 Aug, 2013

Transfer files between machines is easy using Filezilla Client. But if you don´t have a graphical interface you need to know some commands. You can use sftp or ftp
http://www.cyberciti.biz/faq/linux-unix-ftp-commands/(http://www.cyberciti.biz/faq/linux-unix-ftp-commands/)

Just in case you don´t have a graphical interface on linuxRead More

Configure fixed IP Centos

  • 30 Aug, 2013

I am configuring a Centos 6.3 box  and need to setup a fixed IP. Above the steps Configure eth0

vi /etc/sysconfig/network-scripts/ifcfg-eth0
 
DEVICE="eth0"
NMCONTROLLED="yes"
ONBOOT=yes
HWADDR¤:BA:DB:37:F1:04
TYPE=Ethernet
BOOTPROTO=static
NAME="System eth0"
UUID=5fb06bd0-0bb0-7ffb-45f1-d6edd65f3e03
IPADDR=192.168.1.44
NETMASK=255.255.255.0
 
 
Configure Default Gateway

vi /etc/sysconfig/network
 
NETWORKING=yes
HOSTNAME=centos6
GATEWAY=192.168.1.1
 
 
Restart Network Interface

 
/etc/init.d/network restart
 
Configure DNS Server

vi /etc/resolv.conf
 
nameserver 8.8.8.8       Replace with your nameserver ip
n

Configure fixed IP CentosRead More

How to check the version of Java in Notes

  • 29 Aug, 2013

There are three options:
OPTION 1: About IBM Lotus Notes
-- In Notes, select Help -> About IBM Lotus Notes
-- Click the "Configuration Details" button and look for the following line     java.runtime.version=pwi3260sr12ifx-20121108\01 (SR12) OPTION 2: Issue "java -version" command
-- In Command Prompt, navigate to jvmbin
-- Issue the command java -version
-- The output should appear as follows: java version "1.6.0"
Java(TM) SE Runtime Environment (build pwi3260sr12ifix-20121108\01(SR12+IV31417))
IBM J9 VM (build 2.4, JRE 1.6.0 IBM J9 2.4 Windows 7 x86-32 jvmwi3260sr12-20121024\126067 (JIT enabled, AOT enabled)
J9VM - 20121024\126067
JIT  - r9\2012

How to check the version of Java in NotesRead More

Testing network services using telnet

  • 28 Aug, 2013

Information bellow from TN1437778 Many internet protocols are ascii based and can be accessed through a simple telnet connection. You may want to use telnet to troubleshoot many of these products so that you can remove a lot of the complexity. HTTP connections
1.        Connect to the target server using telnet, specify the port for the web service.
telnet serverName port
2.        Once connected to the server type the following replacing the serverName with the website's internet address:
GET / HTTP/1.1
host: serverName
3.        Press the Enter key twice.
4.        The output of the command will be some headers and the html of the page.
HTTP/1.1 200 OK
Date: T

Testing network services using telnetRead More

Highlighting important information related to File Server Roaming in Notes and Domino 8.5

  • 21 Aug, 2013

1. What is File Server roaming?
2. How does File server roaming differ from Domino server roaming?
3. How does an administrator configure ("upgrade") a user to roam using a file server?
4. How does an administrator "downgrade" a user from file server roaming?
Each question is answered below: 1.  What is File Server roaming? File server roaming is the ability to house a roaming user's files on a standard file server instead of a Domino server.  This functionality has been requested by customers who have users who roam between multiple workstations but in a location without a  "local" Domino server. 2.  How does File server roaming differ from Domino server roaming? From

Highlighting important information related to File Server Roaming in Notes and Domino 8.5Read More