I'm having concern connecting to Sharepoint 2013 via CMIS using Apache Chemistry library.
I am receiving Unauthorized error, but the credentials (U/P) I used are correct.
I used it to login to the Sharepoint Online so it should be working on my code.
Hope someone could help me solving this. Thanks!
See my code below I am using to create a session to Sharepoint:
public Session fillParams() {//define some values for the connection string
String rest_base = "http://<server>/sites/_api/web/";
String repository_id = "c013ab76-4821-489f-9a1c-1d43bfce1c32";
String atompub_url = rest_base + "/" + repository_id + "";
String username ="notTobeShown";
String password = "notTobeShown";
SessionFactory factory = SessionFactoryImpl.newInstance();
Map<String, String> parameter = new HashMap<String,String>();
parameter.put(SessionParameter.ATOMPUB_URL, rest_base);
parameter.put(SessionParameter.BINDING_TYPE, BindingType.ATOMPUB.value());
parameter.put(SessionParameter.AUTH_HTTP_BASIC, "true");
parameter.put(SessionParameter.USER, username);
parameter.put(SessionParameter.PASSWORD, password);
System.out.println("Pfft");
List<Repository> repositories = factory.getRepositories(parameter);
System.out.println("repositories: " + repositories.size());
return repositories.get(0).createSession();
}
For the complete exception stacktrace, please see below:
Exception in thread "main" org.apache.chemistry.opencmis.commons.exceptions.CmisUnauthorizedException: Unauthorized at org.apache.chemistry.opencmis.client.bindings.spi.atompub.AbstractAtomPubService.convertStatusCode(AbstractAtomPubService.java:466) at org.apache.chemistry.opencmis.client.bindings.spi.atompub.AbstractAtomPubService.read(AbstractAtomPubService.java:619) at org.apache.chemistry.opencmis.client.bindings.spi.atompub.AbstractAtomPubService.getRepositoriesInternal(AbstractAtomPubService.java:782) at org.apache.chemistry.opencmis.client.bindings.spi.atompub.RepositoryServiceImpl.getRepositoryInfos(RepositoryServiceImpl.java:65) at org.apache.chemistry.opencmis.client.bindings.impl.RepositoryServiceImpl.getRepositoryInfos(RepositoryServiceImpl.java:88) at org.apache.chemistry.opencmis.client.runtime.SessionFactoryImpl.getRepositories(SessionFactoryImpl.java:133) at org.apache.chemistry.opencmis.client.runtime.SessionFactoryImpl.getRepositories(SessionFactoryImpl.java:111) at sample.CMISConnect.fillParams(CMISConnect.java:35) at sample.CMISConnect.main(CMISConnect.java:42)