<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: CMIS API and interoperability in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/cmis-api-and-interoperability/m-p/229544#M182674</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;When you say CMIS, do you refer to CMIS in general or Alfresco's implementation of CMIS? As I understand CMIS only specifies the format and procedure for exchanging data between CM systems. How to connect to a specific repository is out of scope concerning CMIS.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm using .NET, but by your example code I'd say you'll need to either replace the connectToEcm method with one that connects to FileNet (instead of Alfresco) or update the ConnectionFactory to return a FileNet connection. In .NET this would be done using a variant of the Abstract Factory Pattern, I would expect similar solutions to be used in Java.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm new to CMIS, so I may have misunderstood your question, if not the above design pattern should solve the problem.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Nov 2009 07:29:19 GMT</pubDate>
    <dc:creator>dennisnk</dc:creator>
    <dc:date>2009-11-12T07:29:19Z</dc:date>
    <item>
      <title>CMIS API and interoperability</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/cmis-api-and-interoperability/m-p/229542#M182672</link>
      <description>Hello, I have a big doubt on CMIS and the software developed for its implementation. Probably, I do not understand because I'm still a freshman in the ECM world. To make&amp;nbsp; my point clear, I'm going to provide to you an example. Hypothesis: I'm using the alfresco chemistry API&amp;nbsp; (org.alfresco.chemistry</description>
      <pubDate>Wed, 04 Nov 2009 14:51:29 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/cmis-api-and-interoperability/m-p/229542#M182672</guid>
      <dc:creator>puntino</dc:creator>
      <dc:date>2009-11-04T14:51:29Z</dc:date>
    </item>
    <item>
      <title>Re: CMIS API and interoperability</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/cmis-api-and-interoperability/m-p/229543#M182673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ive been playing with this to see if we should go with this instead of FileNet. Actually we are looking to move away from FileNet.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I know some of the Alfresco US sales team. We were very close to going with Alfresco but politics slowed down this plan.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;It could still happen but I see it happening 2 years from now. But since this community is dead here, I cant get a head start.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The problem is that the support community is dead. here.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Either that or everyone is still learning and cant help each other.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I think Alfresco group needs a community service reward program.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Microsoft calls you a MVP. They need a group like this to encourage supporting each other.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Most of the problems are either configuration problems or bugs in the code. I suspect primarily configuration problems due to our naivity.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Im doing .NET but maybe this code from their example may point you in the right direction:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.repo.cmis.ws.CmisRepositoryCapabilitiesType;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.repo.cmis.ws.CmisRepositoryEntryType;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.repo.cmis.ws.CmisRepositoryInfoType;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.repo.cmis.ws.CmisTypeContainer;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.repo.cmis.ws.CmisTypeDefinitionType;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.repo.cmis.ws.CmisTypePolicyDefinitionType;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.repo.cmis.ws.CmisTypeRelationshipDefinitionType;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.repo.cmis.ws.EnumServiceException;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.repo.cmis.ws.GetRepositories;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.repo.cmis.ws.GetRepositoryInfo;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.repo.cmis.ws.GetRepositoryInfoResponse;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.repo.cmis.ws.GetTypeChildren;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.repo.cmis.ws.GetTypeChildrenResponse;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.repo.cmis.ws.GetTypeDefinition;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.repo.cmis.ws.GetTypeDescendants;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.repo.cmis.ws.RepositoryServicePortBindingStub;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; RepositoryServicePortBindingStub repositoryService = getServicesFactory().getRepositoryService(getProxyUrl() + getService().getPath());&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CmisRepositoryEntryType[] repositories = repositoryService.getRepositories(new GetRepositories());&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; String repositoryId = repositories[0].getRepositoryId();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GetRepositoryInfo getRepositoryInfo = new GetRepositoryInfo(repositoryId, null);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; repositoryService.getRepositoryInfo(getRepositoryInfo);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; String typeId = repositoryService.getTypeDescendants(new GetTypeDescendants(repositoryId, null, BigInteger.valueOf(-1), true, null))[0].getType().getId();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; repositoryService.getTypeChildren(new GetTypeChildren(repositoryId, typeId, true, BigInteger.ZERO, BigInteger.ZERO, null)).getTypes().getTypes()[0].getId();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; repositoryService.getTypeDefinition(new GetTypeDefinition(repositoryId, typeId, null));&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Nov 2009 05:33:03 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/cmis-api-and-interoperability/m-p/229543#M182673</guid>
      <dc:creator>unknown-user</dc:creator>
      <dc:date>2009-11-12T05:33:03Z</dc:date>
    </item>
    <item>
      <title>Re: CMIS API and interoperability</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/cmis-api-and-interoperability/m-p/229544#M182674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;When you say CMIS, do you refer to CMIS in general or Alfresco's implementation of CMIS? As I understand CMIS only specifies the format and procedure for exchanging data between CM systems. How to connect to a specific repository is out of scope concerning CMIS.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm using .NET, but by your example code I'd say you'll need to either replace the connectToEcm method with one that connects to FileNet (instead of Alfresco) or update the ConnectionFactory to return a FileNet connection. In .NET this would be done using a variant of the Abstract Factory Pattern, I would expect similar solutions to be used in Java.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm new to CMIS, so I may have misunderstood your question, if not the above design pattern should solve the problem.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Nov 2009 07:29:19 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/cmis-api-and-interoperability/m-p/229544#M182674</guid>
      <dc:creator>dennisnk</dc:creator>
      <dc:date>2009-11-12T07:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: CMIS API and interoperability</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/cmis-api-and-interoperability/m-p/229545#M182675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Currently, Im getting an error saying the timestamp has expired.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Has anyone successfully used connected to Alfresco using Alfresco's CMIS wsdl?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;System.ServiceModel.FaultException was caught&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; Message="The message has expired (WSSecurityEngine: Invalid timestamp The security semantics of message have expired)"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; Source="mscorlib"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If anyone has any ideas let me know. My header is the following:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;lt;Security s:mustUnderstand="1" xmlns="&lt;/SPAN&gt;&lt;A href="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" rel="nofollow noopener noreferrer"&gt;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd&lt;/A&gt;&lt;SPAN&gt;"&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;wsu:Timestamp wsu:Id="Timestamp-718019295720" xmlns:wsu="&lt;/SPAN&gt;&lt;A href="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" rel="nofollow noopener noreferrer"&gt;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd&lt;/A&gt;&lt;SPAN&gt;"&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;wsu:Created&amp;gt;2009-11-14T19:56:41.929Z&amp;lt;/wsu:Created&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;wsu:Expires&amp;gt;2009-11-14T20:01:41.929Z&amp;lt;/wsu:Expires&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/wsu:Timestamp&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;UsernameToken wsu:Id="UsernameToken-718019295720" xmlns:wsu="&lt;/SPAN&gt;&lt;A href="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" rel="nofollow noopener noreferrer"&gt;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd&lt;/A&gt;&lt;SPAN&gt;"&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Username&amp;gt;admin&amp;lt;/Username&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Password Type="&lt;/SPAN&gt;&lt;A href="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText" rel="nofollow noopener noreferrer"&gt;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText&lt;/A&gt;&lt;SPAN&gt;"&amp;gt;admin&amp;lt;/Password&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Nonce&amp;gt;IGRKG/ABNywDNZ1/lxxarA==&amp;lt;/Nonce&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;wsu:Created&amp;gt;2009-11-14T19:56:41.929Z&amp;lt;/wsu:Created&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/UsernameToken&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;/Security&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;lt;/s:Header&amp;gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Nov 2009 01:54:19 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/cmis-api-and-interoperability/m-p/229545#M182675</guid>
      <dc:creator>unknown-user</dc:creator>
      <dc:date>2009-11-15T01:54:19Z</dc:date>
    </item>
    <item>
      <title>Re: CMIS API and interoperability</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/cmis-api-and-interoperability/m-p/229546#M182676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The timestamp error might be due to the client clock not being in sync with the server clock.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;See thread &lt;/SPAN&gt;&lt;A href="http://forums.alfresco.com/en/viewtopic.php?p=33522" rel="nofollow noopener noreferrer"&gt;http://forums.alfresco.com/en/viewtopic.php?p=33522&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope that helps.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Nov 2009 10:37:10 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/cmis-api-and-interoperability/m-p/229546#M182676</guid>
      <dc:creator>dennisnk</dc:creator>
      <dc:date>2009-11-15T10:37:10Z</dc:date>
    </item>
    <item>
      <title>Re: CMIS API and interoperability</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/cmis-api-and-interoperability/m-p/229547#M182677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes I saw that but I am running the client and server on the same machine.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Nov 2009 15:00:53 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/cmis-api-and-interoperability/m-p/229547#M182677</guid>
      <dc:creator>unknown-user</dc:creator>
      <dc:date>2009-11-15T15:00:53Z</dc:date>
    </item>
    <item>
      <title>Re: CMIS API and interoperability</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/cmis-api-and-interoperability/m-p/229548#M182678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks all you. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;What I was trying to say if it's available a common API that we can use for every CM systems. Maybe I didn't manage to spell out my doubt, formerly.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Moreover when I posted my question I barely knew CMIS.&amp;nbsp; Now that I've gained more information about&amp;nbsp; CMIS, I agree with Dennish. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;CMIS standardizes the way/ the procedures used to operate with a CM system, it does not point out&amp;nbsp; a specific CMIS implementation. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I was wondering if it exists a CMIS implementation in Java that I can use for every content manager CMIS compliant.&amp;nbsp; After some researches I thought &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;that a better approach is to move towards the Atom-REST APIs that, I suppose, they would cooperate with different CM systems. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; To sort out this problem, as Dennish said you might adopt an Abstract Factory model. It's an excellent solution, of course, that I've been implementing over and over. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The point is that I do not want&amp;nbsp; to write different connectors (one for each CM system) and&amp;nbsp; switch from one to another using Abstract factory &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;or other design patterns. I hoped that the solution was in the Atom-REST APIs.&amp;nbsp; With this API you should be able to use every CM systems regardless the specific one. I'm going to try them and report here if I was successful in my attempt.&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;@kwells7101&amp;nbsp; you are right, but this is the common problem related to "open-source" communities.&amp;nbsp; I do not think it's a good idea to voice our grievance here, &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;hopefully in the future we'll be better supported. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;HAND&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2009 08:56:15 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/cmis-api-and-interoperability/m-p/229548#M182678</guid>
      <dc:creator>puntino</dc:creator>
      <dc:date>2009-11-18T08:56:15Z</dc:date>
    </item>
    <item>
      <title>Re: CMIS API and interoperability</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/cmis-api-and-interoperability/m-p/229549#M182679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;@puntino I might have misunderstood your initial question. Are you implementing a CMIS client or a CMIS service?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you're implementing a service I don't see how one would change the underlying repository without having to change the connection class or method.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you're implementing a client you shouldn't need to change the connection class or method in order to change the remote repository to communicate with. If you're using the REST/Atom binding all you need to specify is the service URI and, if necessary, credentials.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please do get back on how you're progressing. I'm doing a CMIS implementation in .NET and am interested to which issues arise in Java.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2009 22:59:06 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/cmis-api-and-interoperability/m-p/229549#M182679</guid>
      <dc:creator>dennisnk</dc:creator>
      <dc:date>2009-11-18T22:59:06Z</dc:date>
    </item>
    <item>
      <title>Re: CMIS API and interoperability</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/cmis-api-and-interoperability/m-p/229550#M182680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Dear&amp;nbsp; dennisnk, &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;thank you again for your answer. As you said if we want to implement a CMIS service we're tighted to the underlying CM systems. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You do not need to excuse yourself,&amp;nbsp; I haven't explicitly told what I was doing ! &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I want to write a simple CMIS client and for the former reasons I'm moving towards REST Atom implementation. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I suppose you are developing a CMIS service, aren't you ? &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Anyway I want to share my experience with you and the others.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;keep in touch.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Nov 2009 08:08:47 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/cmis-api-and-interoperability/m-p/229550#M182680</guid>
      <dc:creator>puntino</dc:creator>
      <dc:date>2009-11-19T08:08:47Z</dc:date>
    </item>
  </channel>
</rss>

