Lotus Notes Adapter 6.0 | webMethods Lotus Notes Adapter Documentation | webMethods Lotus Notes Adapter Installation and User’s Documentation | Built-In Services Reference | Built-In Services Reference | wm.ln.db:getDocumentByURL
 
wm.ln.db:getDocumentByURL
This flow service finds a document in the Web Navigator database. You can use this method for either the Server Web Navigator or Personal Web Navigator databases. If you specify any of the optional parameters you must specify them all.
Input Parameters
database
Database The lotus.domino.Database object to get a document from.
url
String The desired uniform resource locator (URL), for example, http://www.webmethods.com. Specify the entire URL starting with http. You can enter a maximum string length of 15K.
reload
String True to reload the page from its Internet server. False to load the page from the Internet only if it is not already in the Web Navigator database.
reloadIfModified
String Optional. (Defaults to the specification for the second parameter, reload.) True to reload the page only if it has been modified on its Internet server. False to load the page from the Internet only if it is not already in the Web Navigator database.
urlList
String Optional. (Defaults to false.) Web pages can contain URL links to other Web pages. You can specify whether to save the URLs in a field called URLLinks in the Notes document. (The Web Navigator creates a new URLLinksn field each time the field size reaches 64K. For example, the first URLLinks field is URLLinks1, the second is URLLinks2, and so on.) Specify true if you want to save the URLs in the URLLinksn fields. Specify false if you do not want to save the URLs in the URLLinksn fields. If you save the URLs, you can use them in agents. For example, you can create an agent that opens Web pages in the Web Navigator database and then loads all the Web pages saved in each of the URLLinksn fields.
Important:
Saving URLs in the URLLinksn fields may affect performance.
charSet
String Optional. (Defaults to null.) Enter the MIME character set (for example, ISO-2022-JP for Japanese or ISO-8859-1 for United States) that you want the Web Navigator to use when processing the Web page.
webUser
String Optional. (Defaults to null.) Some Internet servers require you to obtain a username before you can access their pages. This parameter allows you to enter the username that you previously obtained from the Full-text server.
webPasswd
String Optional. (Defaults to null.) Some Full-text servers require you to obtain a password before you can access their pages. This parameter allows you to enter the password that you previously obtained from the Internet server.
ProxyUser
String Optional. (Defaults to null.) Some proxy servers require that you specify a username in order to connect through them. This parameter allows you to enter the username for the proxy server. See your administrator for the username required by the proxy.
proxyPasswd
String Optional. (Defaults to null.) Some proxy servers require that you specify a password in order to connect through them. This parameter allows you to enter the password for the proxy server. See your administrator for the password required by the proxy.
noWait
String Optional. (Defaults to false.) Specify true to return immediately and not wait for completion of the retrieval. If you specify true, getDocumentByURL does not return the Document object representing the URL document. This parameter is useful for offline storage purposes; in this case, you do not need the Document object and do not have to wait for completion of the operation.
Output Parameters
document
Document The Document that represents the URL document you specified.