Examples: getDocumentByURL method

This agent prints the value of the Subject item for the HCL home page.

import lotus.domino.*;
public class JavaAgent extends AgentBase {
  public void NotesMain() {
    try {
      Session session = getSession();
      AgentContext agentContext = 
          session.getAgentContext();
      // (Your code goes here) 
      Database db = agentContext.getCurrentDatabase();
      Document doc = db.getDocumentByURL
      ("http://www.hcl.com", false);
      System.out.println(
           doc.getItemValueString("Subject"));
    } catch(Exception e) {
      e.printStackTrace();
    }
  }
}