Appendix B. Domino URL Reference
By Steve Kern
IN THIS APPENDIX
- Domino URL Identifiers
- Alphabetical List of Domino URLs
Domino URLs can be embedded in documents as HTML and enable access to various Domino features. Domino URLs follow a fairly straightforward syntax, as in the following example:
http://Host/DominoObject?Action&Arguments
Host can be an IP address or a DNS entry. DominoObject s consist of documents, views, databases, agents , framesets, and so forth. Action s are taken against DominoObject s, and Argument s are passed to the Action . Action s are prefixed with the question mark ( ? ) and all Argument s are prefixed with the ampersand ( & ). For example, the following code opens the database myhome.nsf on the Domino server www.myserver.com and requires the user to log in:
http://www.myserver.com/myhome.nsf?OpenDatabase&Login
Because spaces are not permitted in URLs, in general, you can replace them with the plus sign ( + ), as in the following URL that opens the Main Topics view:
http://www.myserver.com/myhome.nsf/Main+Topics?OpenView