Blogs

  • Browse Blogs
  • My Blog
  • My Updates

Tags Help

  • View as cloud  | list

Similar Blogs

photo

Lotus Nut

58 Entries |  Chris Whisonant
Updated 
Ratings 3     Comments 90
photo

TexasSwede

51 Entries |  Karl-Henry Martinsso...
Updated 
No Ratings 0     Comments 51
photo

.Domino Frame...

78 Entries |  Peter Presnell
Updated 
No Ratings 0     Comments 74
photo

Big A** Mutan...

42 Entries |  Michael Smelser
Updated 
Ratings 1     Comments 41
photo

Domino Diva

22 Entries |  Kim Greene
Updated 
No Ratings 0     Comments 17

Dogear Bookmarks

Urs Meli

Blog Authors:  Urs Meli  

Lotus Connections 2 Activities not starting

Urs Meli  |    |  Tags:  lotus connections activities migration  |  Comments (3)

 Today I updated a lotus connections 1.0.2 pilot to lotus connections 2.0. There's a great guide on the connections wiki site which covered all the basic topics.

 

Everything went fine, but the activities wont start anymore. Activity Service not available is the only message I get.

The Websphere Console says that the activities ear is up and running....

Edit 29.8.08: 

Uninstalling the activities and re-installing solved the issue. It wors fine now.

 

Shoot yourself in the foot with vmware

Urs Meli  |    |  Tags:  vmware  |  Comments (0)
Today I found a way to shoot yourself in the foot with vmware server.

It is very simple, if you store your vmware images on USB drives like I do.
I tried to be smart. To copy some big files in the vm I mounted a second USB drive into the vm.

Everything worked fine.
When I went home I stopped the vm's and removed the drives.

Next time I startet the vm windows xp accidentially changed my drive letters.
Now the when the vm tried to start, it took over the USB drive which hosted the vm.

BOOOM.

The vm crashed with a very strange error message (I forgot to take a screenshot).
The USB was not accessible in windows anymore too.







LEI Revisited

Urs Meli  |    |  Tags:  lei enterprise solution lotus integrator  |  Comments (0)

 

A month ago I encountered a strange problem with a LEI Server.

 

Today we didn't find the problem, but found the solution.

 

After removing LEI from the server (and all *.nsf *.ntf) and reinstalling it, LEI seems to work.

Website Registration From Hell

Urs Meli  |    |  Tags:  website registration  |  Comments (0)

Can anybody remember every single username/password for every website?

I mean I'm registered in dozens of websites: ebay, facebook, xing, gmail, gmx, bleedyellow, jazz.net, openntf.

Some good sites like bleedyellow let me choose my mail address as a login name.

 

Other sites like jazz.net want me to find some fanzy login/screenname.

Grrrreat. My preferred name is always occupied by some other moron.

By now I have dozens of loginnames with different numbers etc.

When I visit a site after some time, I can't remember my loginname. I know my password, because I change it on a regular basis (once per year).

So I know, I created the account 2 years ago, so it must be that password, but what the hell is my loginname.

Sure I can click on recover password, or I forgot my loginname.. but that's annoying and it fills up my mailbox quite a lot....

 

 

Why can't I simply log in with my bloody emailaddress........ It would save me lots of frustration.

 

It's hard enough to remember the passwords!

Agent Performance Tuning - Stupid mistakes

Urs Meli  |    |  Tags:  lotusscript performance agents programming  |  Comments (0)

 

Today I tested my agent, which updated some calendar entries, which were replicated via LEI from a MSSQL database.

Lei replicated the data in a notesdatabase in under a minute. After the replication, LEI started my agent, which took more then 1900 seconds to process around 1000 entries.

 

The problem was, that the LEI replication job started every 30 minutes. The agent stopped with the error "document has been deleted".

Change the replication schedule would solve the problem. But more than 30 minutes for my agent? I can do better.

 

The agent used a lot of Notesdatabase.search() calls to prevent duplicated entries in the users calendar.

 

Refactoring the Notesdatabase.search() to Notesview.getAlldocumentsbyKey() and some minor improvements made a nice performance boost.

The result: from around 1900 Seconds to 160  to 190 seconds for the same amount of documents.

 

The use of the search() method has been chosen to avoid changing the mailtemplate (multilingual environment R7 migrating to  R8). And in

the test environment I only used too less data....

 

Now the agent checks wether a special view is available and creates it if needed.

 

The first solution is not necessary the best.....

Lotus Foundations Part 2 - Clientsetup

Urs Meli  |    |  Tags:  client foundation  |  Comments (0)

 

There's not a lot to say about the clientsetup.

After registring a user over the webconfiguration, adding a new workstation to the domain, logging in with the user, starting the batchfile from the user's homedrive. Some keystrokes and some mouseclicks and the notes client is up and running.

 

There has to be some bugs. It was all tooo easy :-)

 

more infos under http://lotusfoundations.blogspot.com/

Foundations - Part 1

Urs Meli  |    |  Tags:  foundations lotus  |  Comments (0)

 Today I got the Lotus Foundations 1 Server on my vmware server up and running.

The installation was very easy: connect the iso image to the server and boot.

 

All the configuration is done through a simple webinterface

 

The domino installation and configuration was fully automated.

After 3 hours (on my slow vm) I had a complete windows domain controller, domino, ftp, fileserver, dns server,.... up and running.

 

Next point will be the Notes Client installation. but it is too late now :-)

LEI Horror

Urs Meli  |    |  Tags:  lei crash restart domio  |  Comments (0)
Yesterday we fought a very strange problem in LEI 8.0.1.

We created a new replication activity from an MS SQL source to a Notes database. About 80'000 records.
 Every time we stop this activity, either by hand or by timeout,  the server will crash.

The server then reboots and crashes again with the same errormessage:




To start the server, we had to disable the LEI task in the notes.ini file, start the server, delete all the entries in LEILOG.nsf, enabel LEI in the notes.ini and restart the server again.

I found the following link today:
Lotus Support 6.0

Maybe the Notes.ini Setting EIUseOSMemory=1 will help.

We have to try this and look what happens.



Seems that the ini setting saved my day.

 

Messing with the content type

Urs Meli  |    |  Tags:  content-type webagent lotusscript  |  Comments (0)
Today, while I was editing a webagent my domino 8.0.1 testserver suddenly crashed.
Everytime I started the agent, my server would crash.

NSD showed just a FATAL error in nhttp with a "Access Violation" message.
I added lots of debug messages to the openlog database. These messages showed me, that the agent had finished successfull before the server crashed.

After investigating the agent a lttle more, adding some additional Print statements, I found the problem.
To have a clean HTML output I added the code: print "content-type:text/html" so my output had the right mime-type.
While refactoring the code I split it into several subroutines and made the mistake to add content type to a string.
My code looked like this

dim result as string

result = "content-type:text/html"
result = result & "<html><head>"
.... [lots of html code here]
print result

After changing the first result= back to print, the agent was working as expected and without crashing the server.

Seems that messing with the content type can crash a domino server.

If this is a bug in domino, than every one, which can create Lotusscript agents and run them through the browser, would be able to crash the server.


Tags, Tags, Tags.... What are tags?

Urs Meli  |    |  Tags:  tags funny  |  Comments (0)


Problems changeing the password on a citrix access...

Urs Meli  |    |  Tags:  citrix customization accessgateway appliance basepage changepassword  |  Comments (0)
Anyone tried to customize a  Citrix Access Gateway Appliance (CAGA)?
I did :-)

Everything went fine. I successfully changed the default UI to our corporate UI. I was able to login and get to my applications.
The only problem so far appeard, when the password expired.
Changeing the password was not possible anymore, at least with IE7. Firefox worked fine.


In the CAGA logfile I found the following lines:
(05/26/08 15:26:27):L10:LOGSVRE:3220:98311:server:aacd::aac.c:10424:SESSINFO:27::next page validation failed.:
(05/26/08 15:26:27):L10:LOGSVRE:3220:98311:server:aacd::aac.c:10425:SESSINFO:27::Expected page: Login.aspx?ff=full:
(05/26/08 15:26:27):L10:LOGSVRE:3220:98311:server:aacd::aac.c:10427:SESSINFO:27::Requested page: https://192.168.80.100:0/CitrixLogonPoint/Portal/themes/default/Images/redsquare.gif:
(05/26/08 15:26:27):L10:LOGSVRE:3220:98311:server:aacd::aac.c:1605:SESSINFO:27::Check Redirect URL [/CitrixLogonPoint/Portal/themes/default/Images/redsquare.gif] :
(05/26/08 15:26:37):L10:LOGSVRE:3220:98311:server:aacd::aac.c:10424:SESSINFO:27::next page validation failed.:
(05/26/08 15:26:37):L10:LOGSVRE:3220:98311:server:aacd::aac.c:10425:SESSINFO:27::Expected page: ChangePassword.aspx?ff=full:

Alright, the resource redsqare.gif was missing........
Removing the reference to redsquare.gif from the css file solved the problem.







Repair CA Process

Urs Meli  |    |  Tags:  ca administration  |  Comments (1)


When I tried to register a person today, I got the following error:



The "Modify Certifier..." didn't work either. After a little investigation I discovered that the ICL database was missing.

Rebuilding the ICL database by hand didn't solve the problem.
After some more investigation I found in the names.nsf the solution.
Under Configuration\Certificates are the certificates stored.


After switching "Process Enabled" to No and restarting the ca Process, I was finally able to rebuild the ICL database and bring the CA Process to life again.







Installing LEI 8.0.1

Urs Meli  |    |  Tags:  lei  |  Comments (0)
When I tried to install LEI 8.0.1 on our development server, i ran across some interesting errors.

Failed to get return value from CheckAndConvertIniPath
Failed to get return value from IsServerAvailable

Searching the LEI Forum didn't help much. Google discovered only 3 links.
Finally I discovered the following link in the Lotus Knowledgebase: http://www-1.ibm.com/support/docview.wss?uid=swg21255730

After reading this article I removed the entry for Teamstudio CIAO Server from the notes.ini.
Finally, LEI installed without errors.

After installing LEI, I'm able to easily push productive data into the test / development environment, without writing a line of code......








Skip to main content link. Accesskey S
IBM Lotus Connections Help Tools About

Tags

A tag is a keyword that is used to categorize an entry. To view the entries with a particular tag, click a tag name or enter a tag in the box.
The tag cloud indicates the frequency of tag use. Popular tags appear darkest. The slider control adjusts how many tags are displayed in the tag cloud.