Title: Repository specific notes
In order to access Alfresco aspects, you have to set up the Alfresco OpenCMIS Extension.
While connecting via AtomPub is straight forward, connecting via Web Services is a bit tricky. (See also Microsofts CMIS documentation for details.)
The service document URL is http://<host>/_vti_bin/cmis/rest/<SPList>?getrepositoryinfo.
http://<host>/_vti_bin/cmissoapwsdl.aspx?wsdl.file://... URLs to the downloaded WSDL for all OpenCMIS WSDL session parameters.If NTLM is enabled on SharePoint, you have to activate the OpenCMIS NTLM authentication provider.
parameters.put(SessionParameter.AUTHENTICATION_PROVIDER_CLASS, CmisBindingFactory.NTLM_AUTHENTICATION_PROVIDER);
(The NTLM authentication provider uses java.net.Authenticator under the hood. If this interferes with your environment, you are on your own. Sorry!)