|
|
@@ -0,0 +1,79 @@
|
|
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
|
+<!-- Reviewed: no -->
|
|
|
+<!-- EN-Revision: 16641 -->
|
|
|
+<sect1 id="zend.ldap.server">
|
|
|
+ <title>LDAPサーバから情報を取得</title>
|
|
|
+ <sect2 id="zend.ldap.server.rootdse">
|
|
|
+ <title>ルートDSE</title>
|
|
|
+
|
|
|
+ <para>
|
|
|
+
|
|
|
+ 与えられた<acronym>LDAP</acronym>サーバのためのルートDSEに含まれる属性についての
|
|
|
+ 詳細は以下の文書をご覧下さい。
|
|
|
+ </para>
|
|
|
+
|
|
|
+ <itemizedlist>
|
|
|
+ <listitem>
|
|
|
+ <para>
|
|
|
+ <ulink url="http://www.zytrax.com/books/ldap/ch3/#operational">OpenLDAP</ulink>
|
|
|
+ </para>
|
|
|
+ </listitem>
|
|
|
+ <listitem>
|
|
|
+ <para>
|
|
|
+ <ulink
|
|
|
+ url="http://msdn.microsoft.com/en-us/library/ms684291(VS.85).aspx">Microsoft
|
|
|
+ ActiveDirectory</ulink>
|
|
|
+ </para>
|
|
|
+ </listitem>
|
|
|
+ <listitem>
|
|
|
+ <para>
|
|
|
+ <ulink
|
|
|
+ url="http://www.novell.com/documentation/edir88/edir88/index.html?page=/documentation/edir88/edir88/data/ah59jqq.html">Novell
|
|
|
+ eDirectory</ulink>
|
|
|
+ </para>
|
|
|
+ </listitem>
|
|
|
+ </itemizedlist>
|
|
|
+
|
|
|
+ <example id="zend.ldap.server.rootdse.getting">
|
|
|
+ <title>ルートDSEを手に入れる</title>
|
|
|
+ <programlisting language="php"><![CDATA[
|
|
|
+$options = array(/* ... */);
|
|
|
+$ldap = new Zend_Ldap($options);
|
|
|
+$rootdse = $ldap->getRootDse();
|
|
|
+$serverType = $rootdse->getServerType();
|
|
|
+]]></programlisting>
|
|
|
+ </example>
|
|
|
+ </sect2>
|
|
|
+
|
|
|
+ <sect2 id="zend.ldap.server.schema">
|
|
|
+ <title>参照するスキーマ</title>
|
|
|
+
|
|
|
+ <example id="zend.ldap.server.schema.getting">
|
|
|
+ <title>サーバ・スキーマを手に入れる</title>
|
|
|
+ <programlisting language="php"><![CDATA[
|
|
|
+$options = array(/* ... */);
|
|
|
+$ldap = new Zend_Ldap($options);
|
|
|
+$schema = $ldap->getSchema();
|
|
|
+$classes = $schema->getObjectClasses();
|
|
|
+]]></programlisting>
|
|
|
+ </example>
|
|
|
+
|
|
|
+ <sect3 id="zend.ldap.server.schema.openldap">
|
|
|
+ <title>OpenLDAP</title>
|
|
|
+ <para/>
|
|
|
+ </sect3>
|
|
|
+
|
|
|
+ <sect3 id="zend.ldap.server.schema.activedirectory">
|
|
|
+ <title>ActiveDirectory</title>
|
|
|
+ <note>
|
|
|
+ <title>ActiveDirectoryサーバで参照するスキーマ</title>
|
|
|
+ <para>
|
|
|
+ 包括的探索ルーチンによって返される項目の数に関する
|
|
|
+ Microsoft ActiveDirectoryサーバに対する制限のために、
|
|
|
+ そして、ActiveDirectoryスキーマ・リポジトリの構造のために、
|
|
|
+ Microsoft ActiveDirectoryサーバでは、参照するスキーマは現在利用でき<emphasis>ません</emphasis>。
|
|
|
+ </para>
|
|
|
+ </note>
|
|
|
+ </sect3>
|
|
|
+ </sect2>
|
|
|
+</sect1>
|