1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 package de.bea.domingo.samples;
24
25 import java.util.Iterator;
26
27 import de.bea.domingo.DDatabase;
28 import de.bea.domingo.DNotesException;
29 import de.bea.domingo.DNotesFactory;
30 import de.bea.domingo.DSession;
31 import de.bea.domingo.DView;
32 import de.bea.domingo.DViewEntry;
33
34 /***
35 * A simple example accessing the NAB on a server using Http/XML.
36 *
37 * @author <a href=mailto:kriede@users.sourceforge.net>Kurt Riede</a>
38 */
39 public final class HttpNAB {
40
41 /***
42 * Main method of sample.
43 *
44 * @param args arguments
45 * @throws DNotesException if the sample fails
46 */
47 public static void main(String[] args) throws DNotesException {
48
49
50 DNotesFactory factory = DNotesFactory.getInstance("de.bea.domingo.http.NotesHttpFactory");
51
52
53 DSession session = factory.getSession("http://plato.acme", "Administrator", "password");
54
55
56 DDatabase database = session.getDatabase("", "names.nsf");
57
58
59 DView view = database.getView("($Users)");
60 Iterator allEntries = view.getAllEntries();
61 System.out.println("Content of view ($Users)");
62 while (allEntries.hasNext()) {
63 DViewEntry entry = (DViewEntry) allEntries.next();
64 for (int i = 0; i < entry.getColumnValues().size(); i++) {
65 System.out.print(entry.getColumnValues().get(i) + ", ");
66 }
67 System.out.println();
68 }
69 }
70 }