summaryrefslogtreecommitdiff
path: root/swat2/esptest/samr.esp
diff options
context:
space:
mode:
Diffstat (limited to 'swat2/esptest/samr.esp')
-rw-r--r--swat2/esptest/samr.esp36
1 files changed, 36 insertions, 0 deletions
diff --git a/swat2/esptest/samr.esp b/swat2/esptest/samr.esp
new file mode 100644
index 00000000000..a60a02e7c85
--- /dev/null
+++ b/swat2/esptest/samr.esp
@@ -0,0 +1,36 @@
+<% page_header("columns", "ESP samr test", "esptest");
+
+ libinclude("base.js");
+ libinclude("samr.js");
+%>
+
+<h1>Samba4 samr rpc test</h1>
+
+<%
+var conn = samr_init();
+var binding = "ncalrpc:";
+status = conn.connect(binding);
+check_status_ok(status);
+
+handle = samrConnect(conn);
+
+domains = samrEnumDomains(conn, handle);
+
+for (i=0;i<domains.length;i++) {
+ write("<h2>Domain " + domains[i].name + "</h2>\n");
+ sid = samrLookupDomain(conn, handle, domains[i].name);
+ dom_handle = samrOpenDomain(conn, handle, sid);
+ users = samrEnumDomainUsers(conn, dom_handle);
+ samrFillUserInfo(conn, dom_handle, users, 3);
+ if (users.length == 0) {
+ write("no users in domain<br>\n");
+ } else {
+ multi_table(users, "name");
+ }
+ samrClose(conn, dom_handle);
+}
+
+%>
+
+
+<% page_footer(); %>