mySphere Posts

Share

The text bellow is from TN 1391477

When running a Lotus Domino 32-Bit server on Microsoft Windows 64-Bit, you notice a high memory allocation.  This results in poor system performance and the server being low on physical memory. This is a result of a change Microsoft has made to their API SetSystemFilecache()…..

Quando instalar Domino 32 Bits em um servidor MS 64 Bits melhor dar uma olhada no TechNote para não ter surpresas de performance.

Uncategorized

Share

This White Paper explains how to write code in java for Domino Applications. It is beginner level. Java is getting more importance in our Domino world.
See the Withe Paper here

Este White Paper explica como escrever código Java em aplicações Domino. É de nível inicial e mostra um paralelo entre o Lotusscript e Java.
Achei a publicação importante devido ao fato de que já na versão 8.5.1 temos classes Front End para usar em Java.

Share

Lotus Domino 8.5.1 Administrator Help Errata

Some information in the Domino Administrator 8.5.1 Help is wrong see this TN

Share

The following notes.ini file variables are now obsolete in Notes/Domino 8.x:

Obsolete variables as of Notes/Domino 8.0:

ADMINUSEPROCESSES

BypassNewTotaling

CLUSTER_NAME_CACHE_SIZE

DEBUG_CONSOLETOSCRAP

DEBUG_DB2_QV_ENABLE_HTTP

DEBUG_DISABLE_JIT_SUPPORT

DEBUG_DISABLE_LARGE_FILE_SUPPORT

DEBUG_ENABLE_ODS42

DEBUG_LOGGER_BUF_FULL_MIN_WAIT

DEBUG_NAMELOOKUP_MISSES

DEBUG_NAMELOOKUP_NOHITS_NOERRORS

DEBUG_NLCGTRACE_TEARDOWN

DEBUG_NONQUINCY_DEBUGGER

DEBUG_SCR_ENABLED

DEBUG_SECURE_ALLOW_2048

DEBUGGING_NLMS

DEDICATED

DONT_CACHE_MONITOR_FORMULAS

DWSAddinMaxThreads

EVENT_SETUP_LEVEL_CLEAN_MESSAGES

FT_SUMM_DEFAULT_LANGUAGE

FT_SUMMARY_SIZE

HTTPDomWSForceFromValue

HTTPNoDomWSAppSpace

LSMODULE_TRACE

MACR6StatusBar

MAPI_602PSTFILE

MCC_DefaultLang

MEMORY_LOW_CUSHION

POLICY_USE_POLLASTMOD

PREEMPTIONTIMER

SEG_PER_FIXED_ALLOC

ServerRequiredFileHandles

SESSIONKEY_CHECK_FILE

SKIP_FIXUP

WINCON_GEOMETRY

Obsolete variables as of Notes/Domino 8.0.1:

ABSort

CALLWS_DUMPHEAP

DEBUG_CA_SERVER

DEBUG_CHECK_ABSTRACT_LENGTH

DEBUG_LS_MEMORY_DUMP

DEBUG_LS_MEMORY_DUMP_OUTFILE

DEBUG_SIMULATE_UNDO_LEAK

ENABLE_ON_DEMAND_COLLATIONS

EnableRTFMergedCells

WSINVOKE_DEBUG

 

Share

Fazer análise de performance de qualquer software é um grande desafio. Hoje estou trabalhando com um time investigando problemas com IHS.
Este link tem uma documentação que ajuda muito a coletar informações sobre performance do IHS que é a porta de entrada para o WebSphere

Share

Se alguém estiver tendo problemas com o Domino/Notes. O TN 1321009  pode ajudar a resolver o problema.

Share

Knowledge Collection: Upgrading to Lotus Notes/Domino 8.5.1

Pessoal estou tentando uma forma de escrever em inglês para ajudar a mim mesmo (escrever melhor) e também para ajudar quem acessa este blog fora do Brasil.
Não achei ainda uma forma de publicar em dois idiomas no mesmo blog detectando o idioma do browser. Por enquanto vou misturando as coisas.
Knowledge Collection é um documento da IBM que concentra alguns documentos importantes sobre um dado problema ou produto. No link abaixo tem uma coleção sobre Upgrade do Domino

The purpose of this collection is to provide links to a select group of documents and resources that educate readers on the items and issues to take into consideration when upgrading to Lotus Notes/Domino 8.5.1…. see this TN 1407206

Share

Ontem foi disponibilizada a última versão do Notes (8.5.1). Eu já estava utilizando a versão beta e hoje fiz o upgrade para versão gold.
A instalação foi sem problemas. Realmente vale a pena usar a nova versão pois ela faz com que as outras releases 8.x fiquem muito a desejar, especiamente na estabilidade e performance. Uma grande novidade é que o Domino Designer agora é free e já está disponível no developerworks.

Image:Domino e Notes 8.5.1

Share

A partir do dia 12 de Outubro estará disponível a versão 8.5.1 do Notes & Domino.
Já estou utilizando a versão 8.5.1 beta desde o seu lançamento e posso dizer que é melhor do que a 8.5.0 em muitos aspectos
principalmente performance e o Designer melhorou muito.

Uma notícia boa é que o Designer agora é Free.

Para acompanhar todas as notícias siga o blog do Ed Brill

Share

Neste blog mesmo já publiquei alguns agentes para resolver problemas de Administração.
A IBM colocou alguns neste endereço http://www-10.lotus.com/ldd/dominowiki.nsf/dx/10022009124512AMWEB7LC.htm
Sempre que ministro cursos de Administração Domino falo com os alunos que é sempre importante saber programar.

Share

The agent bellow will be used to make a txt file with the mail files for migration. We select a group of users and then export  the mail files path to a txt file.
The txt file will be used with load convert -f .

Just put the agent on the Names.nsf.

Sub
Initialize
       Dim ses As New NotesSession        
       Dim db As NotesDatabase
       Dim doc As NotesDocument
       Dim docPerson As NotesDocument
       Dim dc As NotesDocumentCollection
       Dim item As NotesItem
       Dim valores As Variant
       Dim vis As NotesView
       ‘variáveis para serem trocadas caso a caso
       nomedoarquivo$=“c:file.txt”
       Set db = ses.CurrentDatabase
       Set vis = db.GetView(“($Users)”)        
       ‘colocar o nome do grupo desejado
       searchFormula$ = {Form = “Group” & ListName=”“}
       Set dc = db.Search(searchFormula$, Nothing,0)
       Set doc = dc.GetFirstDocument()
       fileNum% = Freefile()
       fileName$ = nomedoarquivo$
       Open fileName$ For Output As fileNum%        
       ‘Navega na coleção de grupos
       While Not(doc Is Nothing)
               ‘seleciona membros do grupo
               valores = doc.GetItemValue(“Members”)
               For i = 0 To Ubound(valores)
                       nome$=doc.GetItemValue(“Members”)(i)
                       Set docPerson=vis.GetDocumentByKey(nome$)
                       correio$=docPerson.mailfile(0)
                       Print #fileNum%,correio$        
               Next
               Set doc = dc.GetNextDocument(doc)
       Wend
       Close fileNum%
End
Sub

Share

This article on IBM DeveloperWorks show us a simple aproach on How to get old hardware and recycle it and save money.