Reply
Logi Nu
jbblack
Posts: 4
Registered: ‎11-03-2006
0

io2 software not connecting to Lotus Notes correctly

I've got a new io2 pen and downloaded / installed the latest software (v4.1.852.1). I'm having trouble with the iotags and Lotus Notes.

The software is recognising the tags correctly and trying to launch stuff in Lotus Notes to upload emails, tasks etc. But on every occasion I get Lotus Notes error message:

'Server error: File does not exist: d06mq070/06/M/ABC GQ098671.NSF

My mail file is GQ098671.NSF and the server is called d06mq070/06/M/ABC. However io2 seems to have determined from somewhere that the way to find my mail file is to concatenate the server name and the mailfile name with a space between them. This is not correct as the mailfile lives on a subdirectory on the server.

I can't find anywhere in the io2 software to configure this.....ideally I'd like to have io2 point to the LOCAL copy of my mailfile, otherwise I'll only be able to add stuff when connected to the network. In any event it doesn't work at all at the moment.

Can anyone help me fix this? thanks.
FS
Logi Nu
FS
Posts: 1
Registered: ‎11-22-2006
0

Re: io2 software not connecting to Lotus Notes correctly

Hello,

I have exactly the same problem. Could somebdy please help ...

Thanx
Logi Nu
zinoff
Posts: 4
Registered: ‎10-06-2006
0

Re: io2 software not connecting to Lotus Notes correctly

Check your LN connection document... maybe there's a space in there. That's where most add on application take the location of your mail file from.
 
If that fails, it could be that it is taking the location of the mail file from the NAB, in which case you may be out of luck (depending on your organization).
 
Cheers,
/R
Logi Nu
jbblack
Posts: 4
Registered: ‎11-03-2006
0

Re: io2 software not connecting to Lotus Notes correctly

I have tried different connection documents which point to different versions of the mail file (local and server copy). I have tried re-installing the io2 software with different connection documents active. Nothing seems to make any difference. It always tries to locate my mail file wth the string [server name][space][mailfile name] and always fails because the correct path to my mailfile doesn't have a space and does have a folder name in it. I did just check my connection document again....I can find no spaces at all in the server name or mailfile name.

I don't know where io2 is picking up the information from but it seems immune to change. I have also tried REGEDIT on the off-chance that it was storing the mail file path there and I could hack it - nothing. I searched all the IO2 files I could find for my file name to see if there was anything else I could hack....no.

I do have this open as a bug with Logitech customer support. After several to-and-fros ('this is a NOTES error' (no it isn't) 'are you sure you are connected' (yes I am) 'please uninstall and do a clean reinstall'(done, no difference)) I have made no progress but we are still corresponding. Logitech have confirmed that there is definitely no user configuration option and it only should work when connected. This is frustrating when other products I use to synch with Notes (e.g. commontime mnotes for my Windows Mobile device) actually give you a place to configure where your local maile file is. (why on earth would anyone want to synch directly with the server in any event?)

What is most frustrating is that I'm sure that developer who originally wrote this code could fix it in minutes, and probably give us the option of pointing to the local copy as well. The only problem is that an invalid path is being passed to NOTES. If only we could get to him/her........

Anyway, I'll keep up the correspendence with Logitech and post any resolution here.
Logi Nu
avettet
Posts: 1
Registered: ‎03-01-2007
0

Re: io2 software not connecting to Lotus Notes correctly

Since a couple of days I'm using io2 an try to connect to Lotus Notes - Result: Exactly the same problem as described above...
The io2 software tries to connect to my mailfile on the notes server (while I've a replicated copy on the locale machine) which is creating a "Server Error: File does not exist ...." message from LN. After having recognized the correspondence above I'm not very confident to get this problem fixed.
Are there any news in the meantime?
Logi Nu
jbblack
Posts: 4
Registered: ‎11-03-2006
0

Re: io2 software not connecting to Lotus Notes correctly

Well having pursued this problem for several weeks with Logitech support, I have found the source of the problem. Logitech themselves were unable to reproduce the problem and eventually told me that they could do no more for me- suggesting that I go back and ask for a refund if I wasn't satisfied! This led me to do some research within my own organisation and some further tests. The problem has nothing to do with connection documents. It is because Logitech io2 software does not use the Domino recommended method of finding out the local mail file.

Here is the email I have just sent to Logitech io2 support

-----------------------------------------------------------------------------
Dear Logitech IO support

I was of course disappointed that you gave up trying to fix my problem.
However I have investigated it further myself, and with the help of some
Lotus Notes specialists I have managed to make the iotags work. Also I
would like to suggest that there IS a bug in your code and indicate how you
should fix it.

First, I was able to prove that your io2 software is in fact reading the
'notes.ini' file to determine the location of my mail file. The values I
saw in notes.ini were as follows:-

MailServer=CN=D06ML070/OU=06/OU=M/O=IBM
MailType=1
MailFile=GB098671.NSF

With some playing around (e.g. changing upper case to lower and back again)
I managed to prove beyond any doubt that the io2 software was reading
notes.ini each time to determine where the mailfile was.

Then I updated notes.ini to point directly to my mail file, identifying it
in the correct folder on the server.

MailServer=CN=D06ML070/OU=06/OU=M/O=IBM
MailType=1
MailFile=mail04/GB098671.NSF

.....and now the software works......albeit slowly, because it's going to
the server copy of my mail file every time.

However after some discussion with Lotus Notes specialists in my
organisation I have been advised that:-
1. I should not modify my notes.ini file in this way - it's a system file
that should not be touched by me
2. There are risks in this approach, since it will lead to situations where
I cannot be sure whether I am using a local or a remote copy of my mail
datbase. I had already discovered this, when loading in from iotags using
io2 software, Notes is opening up new windows and it is impossible to tell
whether they are views on my local or server mailfile.
3. Reading NOTES.INI is NOT the recommended method accessing the mail file.
According to the Domino Designer Help guide, this is how external programs
should go about getting a handle on the current user's mail DB:

>Private Sub OpenMail_Click()
>Dim s As New NotesSession
>s.Initialize
>Dim dir As NotesDbDirectory
>Dim db As NotesDatabase
>Set dir = s.GetDbDirectory("")
>Set db = dir.OpenMailDatabase
>MsgBox db.Title & " on " & db.Server, , db.FilePath
>End Sub

I am told this method will respect the use of a local replica.

This would explain why other programmes work satisfactorily (e.g. mnotes)
and find the local replica - they are using the approved method of locating
the mailfile.

I am of course very happy that my io2 pen works. However, I am disappointed
that I had to diagnose this problem myself and also identify the fix. The
one thing I would really appreciate is if you would please PROVIDE A FIX.
Now I can see it working, it is simply wrong to go to the server copy of the
mailfile every time; it will create massive confusion for NOTES users.
Please can we have the io2 software updated so that it uses the recommended
method of accessing the mail DB and therefore works with local replicas when
the user is set up that way.

Thanks once more for your attention to this.

------------------------------------------------------------------------------------

Obviously it would help to have more than one person asking for this fix, so please if you have the same problem contact Logitech support. They will know itas incident number 061103-001415 on the io2 support queue.