MySphere Posts

If you forget your WebSphere Application Server administrator’s password and/or your WebSphere Portal administrator’s password, and your administrative users are stored in the file registry, how can you reset the forgotten password in the file registry? You can use this TN and solve the problem.

Se você esquecer a senha no WebSphere Portal 6.1 o procedimento neste TN resolve o problema. Válido apenas para o Portal 6.1

Uncategorized

Uncategorized

The new version will be launched on 25/11/2009. See the details here

Uncategorized

This technote covers a new feature being made available in Notes/Domino 8.5.1 which takes further advantage of the Domino Attachment and Object Service (DAOS), first introduced in Domino 8.5.

Uncategorized

Users want to configure their Notes 8.0.x and 8.5x (standard configuration) client to automatically log on to a Lotus Sametime server using the Domino SSO (Single Sign On) feature. However, the option  “Automatically log-in” only becomes available when selecting “Remember password”.

The TN1321569  explain how to setup this configuration.

Uncategorized

Domino does not have a code to notify administrators when users are deleted from names.nsf i need to know who deleted the user.
 To solve this problem i wrote an agent to do the job.  
Just put the code on database script inside the QueryDocumentDelete.

Sub Querydocumentdelete(Source As Notesuidatabase, Continue As Variant)
        Dim docMemo As NotesDocument
        Dim docsDelete As NotesDocumentCollection
        Dim ses As New NotesSession
        Dim db As NotesDatabase
        Set db = ses.currentdatabase
        Set docMemo = New NotesDocument(db)
        Set docsDelete = Source.Documents ‘ Selected documents
        For x = 1 To docsDelete.count
                Set doc = docsDelete.GetNthDocument( x )
                If doc.form=”Person” Then
                docMemo.Form=”memo”
                docMemo.SendTo = “Administrator/Acmel”
                docMemo.subject = “Document delection”
                Set rtbody = New NotesRichTextItem (docMemo, “Body”)        
                Call rtbody.AppendText  (“Deleted by ” + ses.UserName + ” – “+ Cstr(doc.StartDateTime(0)) + ” – ” + doc.Subject(0) +” – User Name = ” + doc.FullName(0))
                Call docMemo.Send(False)
      End if
        Next
       
End Sub

Uncategorized

The use of indirect files is good for speed up maintenance tasks like compact or updall.
This link is a good article from Domino Wiki and explain how to make a indirect file

Uncategorized

The new version of the tool has improvements in performance and the time to gather information
Go to this link to see more information and download de new version.

Uncategorized

The TN contains pre-install information as well as specific steps and configuration changes for setting up the Domino 8 server and Sametime server for people awareness and instant messaging functionality in Domino Web Access (iNotes Web Access) 8.x.

See the full TN

Uncategorized

From developerworks

Linux® continues to innovate in the area of file systems. It supports the largest variety of file systems of any operating system. It also provides cutting-edge file system technology. Two new file systems that are making their way into Linux include the NiLFS(2) log-structured file system and the exofs object-based storage system. Discover the purpose behind these two new file systems and the advantages that they bring.

See the full article here

Uncategorized