NotesURL (NotesDatabase - JavaScript™)
Read-only. The Domino® URL of a database when Notes® protocols are in effect.
Defined in
NotesDatabaseSyntax
getNotesURL() : string
Usage
If Notes® protocols are not available, this property returns an empty string. See HttpURL.See resolve in Session for additional information and examples.
Examples
This button gets the Notes® and HTTP URLs for the current database. The display varies depending on whether access is through Notes® (the HTTP URL is blank) or HTTP protocols.// Get URLs
var notesURL = database.getNotesURL();
var httpURL = database.getHttpURL();
// Assume local if http is blank and print info for notes
if (httpURL.length() == 0) {
requestScope.status = "NotesURL = " + notesURL + "\n" +
"HttpURL = None";
}
// If http exists print info for both assuming output to browser
else {
requestScope.status = "NotesURL = " + notesURL + "\n" +
"HttpURL = " + httpURL;
}