Java unter Notes – eine Einstellung machts etwas angenehmer

3. April 2012 Posted by gasteiger

Hallo,

in den Vorgaben des Notes Clients gibt es eine Einstellung, welche den Umgang mit Java etwas angenehmer gestaltet:


IBM Connections Plugin

22. März 2012 Posted by gasteiger

Yesterday i found a good Demo from Luis Benitez.
He shows the capabilities of the IBM Connections Plugin for Microsoft Windows.


Problem with Webservice Consumer

22. Februar 2012 Posted by gasteiger

Hallo Lotus-Community,

my problem is as follows:
I have a Webservice-Provider (Java) on a windows-based computer and a Webservice-Consumer (LotusScript) on our domino server.
When i use the webservice-consumer locally and the proxy-settings (with username and password) in my location document are there, then the consumer can be used without problems.
So over the proxy the webservice is working.
But if i want tho use the webservice-consumer without the proxy or in a agent that runs on the server, it doesn`t work.

The machine with the webservice-provider is reachable in the network without a proxy and i also get the WSDL without a proxy in the browser.

I have installed a webservice test program (soapUI) and that also works with the webservice.
We have also testet the webservice with another server in our network. No problems.
Only if i want to consume the webservice on the domino server it doesn`t work. I always get a timeout-failure.

So my question:
Is there any setting on the domino server that i have to enable.
Iam thankful for all tips.

Martin


Question on Sametime Video Conferencing

12. Oktober 2011 Posted by gasteiger

Hello Sametime-Experts,

we want to use Sametime for „Video Conferencing“ in our company.
But, is it possible to start a conference with a person outside the company ?
Is there a chance to get a type of „guest account“ for this person ?
Or can i only start a conference with licensed users ?

Thank you for answering
Martin


Domino Designer für Mac OS

7. Oktober 2011 Posted by gasteiger

Mit Erscheinung von Notes 8.5.3 musste ich mich ein weiteres mal darüber ärgern, dass es immer noch keinen Domino Designer für den Mac gibt.

Deshalb, bitte bei IdeaJam voten:

Domino Designer available for Linux and MAC Os

Danke


Arbeitssets im Domino Designer übernehmen

25. Juli 2011 Posted by gasteiger

Vor kurzem stand ich vor dem Problem, die Arbeitessets im Domino Designer auf einen neuen Rechner zu kopieren.
Anbei eine kurze Zusammenfassung der erforderlichen Schritte:

1. Inhalt nachfolgender Verzeichnisse übernehmen:

Notes\Data\workspace\.metadata\.plugins\com.ibm.designer.domino.ide.resources
Notes\Data\workspace\.metadata\.plugins\org.eclipse.core.resources\.projects
Notes\Data\workspace\.metadata\.plugins\org.eclipse.core.resources\.root
Notes\Data\workspace\.metadata\.plugins\org.eclipse.core.resources\.safetable

[gemäß dem Blogeintrag: http://www.lotusguru.com/lotusguru/LGBlog.nsf/d6plinks/20100310-83ESQC]

2. Datei workingsets.xml übernehmen. Diese Datei befindet sich in nachfolgendem Verzeichnis:

Notes\Data\workspace\.metadata\.plugins\org.eclipse.ui.workbench

[gemäß dem Blogeintrag: http://www.eknori.de/2010-07-13/how-to-transfer-working-sets-in-domino-designer-to-a-different-machine/]

Öffnen klassischer Notes-Dokumente aus einer XPage

2. Mai 2011 Posted by gasteiger

Anbei eine Möglichkeit zum öffnen eines beliebigen Notes-Dokumentes per Url aus einer XPage heraus.
Man erstellt einfach ein Steuerelement vom Typ Link und berechnet den Linktyp:
\"\"

Hier der Code zur Berechnung des Linktyps:

var strServer:String = \"\";
var strRepID:String = \"\";
var strUNID:String = \"\";

var ns:NotesSession = session;

// Zielanwendung holen
var ndb:NotesDatabase = session.getDatabase(database.getServer(),);

// Server für Url ermitteln
var nn:NotesName = ns.createName(ndb.getServer());
strServer = nn.getCommon();

// Rep-ID für Url ermittlen
strRepID = ndb.getReplicaID();

// UNID für Url ermitteln
var nv:NotesView = ndb.getView();
var nd:NotesDocument = nv.getDocumentByKey(key, true);

if (nd == null){
	strUNID = \"\"
}else{
	strUNID = nd.getUniversalID();
}

return(\"Notes://\" + strServer + \"/\" + strRepID + \"/0/\" + strUNID);

\"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"

Notes/Domino 8.5.2: Was ist neu?

24. März 2011 Posted by gasteiger

Links zu den IBM-Seiten:

  • Was gibt’s Neues in Lotus Notes 8.5, 8.5.1 und 8.5.2?
  • Neuerungen in Domino Designer 8.5.2
  • Neuerungen in IBM Lotus Domino Administrator und Server 8.5.2
  • Beschränkungen Notes/Domino 8.5.2

  • \"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"

    Volltextsuche im Client per Notes URL

    24. März 2011 Posted by gasteiger

    Andre Guirard hat in seinem Blog einen sehr interessanten Artikel zum Thema Volltextsuche veröffentlicht.
    Per LotusScript wird eine Notes URL erzeugt, welche eine Volltextsuche durchführt. Die Ergebnisse werden dem Benutzer daraufhin wie bei einer manuellen Volltextsuche ausgegeben.

    http://www-10.lotus.com/ldd/bpmpblog.nsf/dx/automate-full-text-search?opendocument&comments#anc1


    \"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"

    Tipp: Anwendung beim Start von Lotus öffnen

    23. März 2011 Posted by gasteiger

    Zum automatischen öffnen einer beliebigen Anwendung beim Start von Lotus gibt es nachfolgenden notes-ini Parameter:

     StartupDB=Replik-ID

    \"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"

    Tipp: Löschen von Dokumenten bei Dokumentensperre

    10. März 2011 Posted by gasteiger

    Ist in einer Anwendung das Sperren von Dokumenten aktiviert (Hardlocking), so erhält man beim Löschen von Dokumenten nachfolgende Fehlermeldung:

    „Das Sperren von Dokumenten ist aktiviert. Sie müssen das Dokument sperren, um es zu löschen.“

    Dieses Problem löst man am einfachsten, indem man im QueryDocumentDelete des Datenbankscripts das Dokument wie beschrieben sperrt:

    Dim ns as New NotesSession
    Dim ndb as NotesDatabase
    Dim collection as NotesDocumentCollection
    
    Set ndb = ns.CurrentDatabase
    Set collection = Source.Documents
    Set doc = collection.GetFirstDocument 
    
    While Not (doc Is Nothing)
    Call doc.Lock(session.Effectiveusername, False)
    Set doc = collection.GetNextDocument(doc)
    Wend

    Oder per Formel, falls sich noch keine anderer Script-Code im QueryDocumentDelete befindet:

    @DocLock([LOCK])

    \"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"

    XPages Forum ist online

    18. Februar 2011 Posted by gasteiger

    Die IBM hat ein neues Forum für XPages-Entwickler veröffentlicht.

    \"\"

    Features:

    • XPages design – An updated user interface using Domino 8.5 XPages design elements.
    • Sticky posts – Forum moderators can highlight posts by having them „stick“ to the top of the All Documents and Main Topic views.
    • Edit posts – The author of a post can edit his or her own posts.
    • Mark as Answered – The author of a main post can mark it as answered. It will be marked with a green check mark on the post and in the Answered column of the views. You can see a list of all answered topics in the Answered Topics view and subscribe to the All Answered Topics RSS feed.
    • Tag cloud and author cloud – Posts can now be tagged with results showing in the tag cloud. Author contributions are also shown in a cloud, highlighting the top contributors.
    • RSS feeds - RSS feed subscriptions are available for all new posts (including main topics and replies), new main topics only, answered topics, and individual topics.
    • Resource links – Central resource for commonly used links.
    • Unread marks – Unread posts and responses are distinguished in the browser.

    \"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"

    Fünfzehn Anwendungen von OpenNTF

    17. Februar 2011 Posted by gasteiger

    OpenNTF wird Tag für Tag besser !!

    Nahezu täglich werden neue Versionen zu den einzelnen Projekten eingestellt.

    Niklas Heidloff stellt in einem Video fünfzehn Anwendungen und Steuerelemente auf Basis von XPages vor.

    Alle vorgestellten XPages-Projekte können kostenlos von xpages.info/downloads, heruntergeladen werden

    \"\"
    \"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"

    LotusLive Symphony auf Greenhouse verfügbar

    15. Februar 2011 Posted by gasteiger

    Mit LotusLive Symphony können Dokumente und Tabellen webbasiert erstellt und bearbeitet werden. Es ist somit keine Installation einers Clients erforderlich.

    Leider ist es derzeit noch nicht möglich,  Präsentationen zu erstellen.

    \"\"
    \"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"

    Offizielles Fazit der IBM zur Lotusphere 2011

    15. Februar 2011 Posted by gasteiger

    Die Lotusphere stand ganz im Zeichen von Social Business.

    Das offizielle Statement der IBM ist hier zu finden.

    Interessant ist vorallem auch das Social Business Projekt connect.basf.


    \"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"