You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@chemistry.apache.org by bu...@apache.org on 2011/03/25 12:05:58 UTC

svn commit: r787506 - in /websites/staging/chemistry/trunk/content/java/developing: dev-known-repo-issues.html dev-session-parameters.html

Author: buildbot
Date: Fri Mar 25 11:05:58 2011
New Revision: 787506

Log:
Staging update by buildbot

Modified:
    websites/staging/chemistry/trunk/content/java/developing/dev-known-repo-issues.html
    websites/staging/chemistry/trunk/content/java/developing/dev-session-parameters.html

Modified: websites/staging/chemistry/trunk/content/java/developing/dev-known-repo-issues.html
==============================================================================
--- websites/staging/chemistry/trunk/content/java/developing/dev-known-repo-issues.html (original)
+++ websites/staging/chemistry/trunk/content/java/developing/dev-known-repo-issues.html Fri Mar 25 11:05:58 2011
@@ -188,24 +188,23 @@ Apache Chemistry - Known repository issu
 of existing CMIS repositories.</p>
 <p>TODO</p>
 <h2 id="sharepoint_2010">SharePoint 2010</h2>
-<p>While connecting via AtomPub is straight forward, connecting via Web Services is a bit tricky.</p>
+<p>While connecting via AtomPub is straight forward, connecting via Web Services is a bit tricky.
+(See also Microsofts <a href="http://msdn.microsoft.com/en-us/library/ff934619.aspx">CMIS documentation</a> for details.)</p>
 <h3 id="atompub">AtomPub</h3>
-<p>The service document URL is <code>http://&lt;host&gt;/_vti_bin/cmis/rest/&lt;SPList&gt;?getrepositoryinfo</code>.
-Since this sends the password as plain text, HTTPS is strongly recommended.</p>
+<p>The service document URL is <code>http://&lt;host&gt;/_vti_bin/cmis/rest/&lt;SPList&gt;?getrepositoryinfo</code>.</p>
 <h3 id="web_services">Web Services</h3>
 <ol>
 <li>Download the WSDL with a web browser and store it on your local disk. The WSDL URL is <code>http://&lt;host&gt;/_vti_bin/cmissoapwsdl.aspx?wsdl</code>.</li>
 <li>Provide <code>file://</code>... URLs to the downloaded WSDL for all OpenCMIS WSDL session parameters.</li>
-<li>Activate the OpenCMIS NTLM authentication provider.</li>
 </ol>
-&nbsp;
-
+<h3 id="authentication">Authentication</h3>
+<p>If NTLM is enabled on SharePoint, you have to activate the OpenCMIS NTLM authentication provider.</p>
 <div class="codehilite"><pre><span class="n">parameters</span><span class="o">.</span><span class="na">put</span><span class="o">(</span><span class="n">SessionParameter</span><span class="o">.</span><span class="na">AUTHENTICATION_PROVIDER_CLASS</span><span class="o">,</span> <span class="n">CmisBindingFactory</span><span class="o">.</span><span class="na">NTLM_AUTHENTICATION_PROVIDER</span><span class="o">);</span>
 </pre></div>
 
 
 <p>(The NTLM authentication provider uses <a href="http://download-llnw.oracle.com/javase/6/docs/api/java/net/Authenticator.html">java.net.Authenticator</a>
- under the hood. If this interferes with your environment, you are on your own. Sorry!)</p></div>
+under the hood. If this interferes with your environment, you are on your own. Sorry!)</p></div>
              <!-- Content -->
            </td>
           </tr>

Modified: websites/staging/chemistry/trunk/content/java/developing/dev-session-parameters.html
==============================================================================
--- websites/staging/chemistry/trunk/content/java/developing/dev-session-parameters.html (original)
+++ websites/staging/chemistry/trunk/content/java/developing/dev-session-parameters.html Fri Mar 25 11:05:58 2011
@@ -382,6 +382,22 @@ Apache Chemistry - OpenCMIS Session Para
 <td>false</td>
 </tr>
 <tr>
+<td>org.apache.chemistry.opencmis.binding.connecttimeout</td>
+<td>CONNECT_TIMEOUT</td>
+<td>HTTP connect timeout</td>
+<td>time in milliseconds</td>
+<td>no</td>
+<td><em>JVM default</em></td>
+</tr>
+<tr>
+<td>org.apache.chemistry.opencmis.binding.readtimeout</td>
+<td>READ_TIMEOUT</td>
+<td>HTTP read timeout</td>
+<td>time in milliseconds</td>
+<td>no</td>
+<td><em>JVM default</em></td>
+</tr>
+<tr>
 <td>org.apache.chemistry.opencmis.cache.classname</td>
 <td>CACHE_CLASS</td>
 <td>Cache implementation</td>