I am trying to log into the public Alfresco server using the .dotCMIS api. The code I am using did work a year ago and I can log in using the CMIS workbench. I'm puzzled and hope someone can help me.
This is my code:
Dictionary<string, string> parameters =new Dictionary<string, string>(); parameters[SessionParameter.BindingType]= BindingType.AtomPub; parameters[SessionParameter.AtomPubUrl]="http://cmis.alfresco.com/cmisatom"; parameters[SessionParameter.User]="admin"; parameters[SessionParameter.Password]="admin"; SessionFactory factory = SessionFactory.NewInstance();var x = factory.GetRepositories(parameters);
—
Johannes Schacht
OpenText