Java unter Notes – eine Einstellung machts etwas angenehmer
April 3, 2012 Hinterlasse einen Kommentar
Hallo,
in den Vorgaben des Notes Clients gibt es eine Einstellung, welche den Umgang mit Java etwas angenehmer gestaltet:
April 3, 2012 Hinterlasse einen Kommentar
Hallo,
in den Vorgaben des Notes Clients gibt es eine Einstellung, welche den Umgang mit Java etwas angenehmer gestaltet:
März 22, 2012 1 Kommentar
Yesterday i found a good Demo from Luis Benitez.
He shows the capabilities of the IBM Connections Plugin for Microsoft Windows.
Februar 22, 2012 5 Kommentare
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
Oktober 12, 2011 2 Kommentare
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
Oktober 7, 2011 Hinterlasse einen Kommentar
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:
Danke
Juli 25, 2011 Hinterlasse einen Kommentar
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/]
Mai 2, 2011 Hinterlasse einen Kommentar
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);
Update:
Zu diesem Thema gibt es auch einen wiki-Artikel: http://www-10.lotus.com/ldd/ddwiki.nsf/dx/xpages-compute-urls-in-viewpanel.htm