Lotus Notes / Domino Sonstiges > Help-Desk Applikation !!Help!!
Dispatch Error in LOG
Thomas Schulte:
Stop the Dispatcher.
Change the lib.agent.dispatch function fetchvalidusers
here:
--- Code: --- Set myitem = mydoc.GetFirstItem("FullName")
myfoundqualified = False
--- Ende Code ---
to this one (simply insert one line)
--- Code: --- Set myitem = mydoc.GetFirstItem("FullName")
myfoundqualified = False
print myitem.text
--- Ende Code ---
start the dispatcher manually.
The print should give you a hint where it hangs. It should be either the last document or the next one after that. With this info you can add a
--- Code: --- if myitem.text = "Lastprintedvalue" then Stop
--- Ende Code ---
run the dispatcher again and if should stop at the entry that is wrong. From there you can debug this with single steps and check the values of myitem.
alecrespi:
Hi!
I'm checking this problem only now!
I hope this "thread" is opened yet...
I saw in the DISPATCHER LOG that it tries to fetch EVERY name of EVERY Server AddressBook.
How can I do to let it check only the People Address Book, instead of checking ALL the MAIL and FAX AddressBook stored on the Server?
alecrespi:
for example I think I should change this value
--- Zitat --- mybooks = mysession.AddressBooks
--- Ende Zitat ---
in something like
--- Zitat ---NAMES.NSF
--- Ende Zitat ---
Can somebody help me, telling me how to do?
Thank you
Alessandro
EDITED:
I've tried this one and it seems to work.
ORIGINAL
--- Code: --- mybooks = mysession.AddressBooks
--- Ende Code ---
NEW
--- Code: --- mybooks = "names.nsf"
--- Ende Code ---
Can you confirm?
thank you
alecrespi:
Actually it searches only on names.nsf (this is right and extremely fastest than ever, because the other address book were so full of names!!!)
but the error keeps showing (on another line)
FETCHVALIDUSERS: 13 on line 28: Type mismatch
any new ideas?
Thomas Schulte:
--- Zitat von: alecrespi am 26.11.07 - 10:20:58 ---for example I think I should change this value
--- Zitat --- mybooks = mysession.AddressBooks
--- Ende Zitat ---
in something like
--- Zitat ---NAMES.NSF
--- Ende Zitat ---
Can somebody help me, telling me how to do?
Thank you
Alessandro
EDITED:
I've tried this one and it seems to work.
ORIGINAL
--- Code: --- mybooks = mysession.AddressBooks
--- Ende Code ---
NEW
--- Code: --- mybooks = "names.nsf"
--- Ende Code ---
Can you confirm?
thank you
--- Ende Zitat ---
What you have done should work but only as long as you are not renaming your names.nsf or settign it to another path.
The easiest way to get around this error should be to set this parameter "MailIfNewMailResponseCheckNames" to "NO" but the best would still be to stop the Dispatcher and start it in debug mode locally again, because you have a problem with one of the FullName items in your Names.
Navigation
[0] Themen-Index
[#] Nächste Seite
[*] Vorherige Sete
Zur normalen Ansicht wechseln