<?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 CMIS connection issue in Alfresco Forum</title>
    <link>https://connect.hyland.com/t5/alfresco-forum/cmis-connection-issue/m-p/18083#M8030</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;our application uses CMIS/Alfresco. i am not very familiar, but we have a server related to it. *not sure* if a power outage is related to the fact that we this error; but when we normally post information that is populated by our sql data[a table field populates a textarea/text editor] - instead we get the error above: "CMIS connection issue". that verbiage comes from a file that instantiates connection with CMIS, here is the related code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Check cmis service connect or not&lt;BR /&gt;try{&lt;BR /&gt;$client = new CMISService($repo_url, $repo_username, $repo_password);&lt;BR /&gt;}catch (Exception $ec) {&lt;BR /&gt;echo "CMIS connection issue";&lt;BR /&gt;echo "&amp;lt;br &amp;gt;\n" ;&lt;BR /&gt;echo $ec-&amp;gt;getMessage() ;&lt;BR /&gt;die;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the CMISService parms have not changed, and they appear to be proper values. i even tried "admin", and "root" as "repo_username" in addition to the defined username.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Ideas on what we can check?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Jun 2017 20:13:06 GMT</pubDate>
    <dc:creator>dcparham</dc:creator>
    <dc:date>2017-06-20T20:13:06Z</dc:date>
    <item>
      <title>CMIS connection issue</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/cmis-connection-issue/m-p/18083#M8030</link>
      <description>our application uses CMIS/Alfresco. i am not very familiar, but we have a server related to it. *not sure* if a power outage is related to the fact that we this error; but when we normally post information that is populated by our sql data[a table field populates a textarea/text editor] - instead we</description>
      <pubDate>Tue, 20 Jun 2017 20:13:06 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/cmis-connection-issue/m-p/18083#M8030</guid>
      <dc:creator>dcparham</dc:creator>
      <dc:date>2017-06-20T20:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: CMIS connection issue</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/cmis-connection-issue/m-p/18084#M8031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe it could be useful. It's an example of cmis connection from .NET, using DotCMIS&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://netic360.blogspot.com.es/2017/04/cmis-conexion-con-alfresco.html" title="https://netic360.blogspot.com.es/2017/04/cmis-conexion-con-alfresco.html" rel="nofollow noopener noreferrer"&gt;netic360: :: CMIS. Conexión con Alfresco&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4e2800; background-color: #eeeeee;"&gt;/* * Conexión con Alfresco */&lt;/SPAN&gt;&lt;BR style="color: #4e2800;" /&gt;&lt;SPAN style="color: #4e2800; background-color: #eeeeee;"&gt;private static ISession ConexionAlfresco(String ruta, String usuario, String clave)&lt;/SPAN&gt;&lt;BR style="color: #4e2800;" /&gt;&lt;SPAN style="color: #4e2800; background-color: #eeeeee;"&gt;{&lt;/SPAN&gt;&lt;BR style="color: #4e2800;" /&gt;&lt;SPAN style="color: #4e2800; background-color: #eeeeee;"&gt;if (System.Diagnostics.Debugger.IsAttached)&lt;/SPAN&gt;&lt;BR style="color: #4e2800;" /&gt;&lt;SPAN style="color: #4e2800; background-color: #eeeeee;"&gt;&amp;nbsp; Console.WriteLine("Estableciendo conexión con Alfresco...");&lt;/SPAN&gt;&lt;BR style="color: #4e2800;" /&gt;&lt;SPAN style="color: #4e2800; background-color: #eeeeee;"&gt;try {&lt;/SPAN&gt;&lt;BR style="color: #4e2800;" /&gt;&lt;SPAN style="color: #4e2800; background-color: #eeeeee;"&gt;&amp;nbsp;Dictionary&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;parameters = new Dictionary();&amp;nbsp;&lt;BR style="color: #4e2800;" /&gt;&amp;nbsp;parameters[DotCMIS.SessionParameter.BindingType] = BindingType.AtomPub; //Parámetros de &amp;nbsp;conexión&amp;nbsp;&lt;BR style="color: #4e2800;" /&gt;&amp;nbsp;parameters[DotCMIS.SessionParameter.AtomPubUrl] = ruta; &amp;nbsp;parameters[DotCMIS.SessionParameter.User] = usuario; &amp;nbsp;parameters[DotCMIS.SessionParameter.Password] = clave;&amp;nbsp;&lt;BR style="color: #4e2800;" /&gt;&amp;nbsp;SessionFactory factory = SessionFactory.NewInstance();&amp;nbsp;&lt;BR style="color: #4e2800;" /&gt;&amp;nbsp;IList&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;repos = factory.GetRepositories(parameters);&amp;nbsp;&lt;BR style="color: #4e2800;" /&gt;&amp;nbsp;ISession session = repos.ElementAt(0).CreateSession();&amp;nbsp;&lt;BR style="color: #4e2800;" /&gt;&amp;nbsp; return session;&amp;nbsp;&lt;BR style="color: #4e2800;" /&gt;&amp;nbsp;} catch (Exception ex) {&amp;nbsp;&lt;BR style="color: #4e2800;" /&gt;&amp;nbsp;Console.WriteLine("ERROR :: No se ha podido establecer la conexión con Alfresco");&amp;nbsp;&lt;BR style="color: #4e2800;" /&gt;&amp;nbsp;return null;&amp;nbsp;&lt;BR style="color: #4e2800;" /&gt;&amp;nbsp;}&amp;nbsp;&lt;BR style="color: #4e2800;" /&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I&amp;nbsp;guess the credentials are correct, anyway could you review the&amp;nbsp;"&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;repo_url"?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jun 2017 12:23:06 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/cmis-connection-issue/m-p/18084#M8031</guid>
      <dc:creator>calvo</dc:creator>
      <dc:date>2017-06-21T12:23:06Z</dc:date>
    </item>
    <item>
      <title>Re: CMIS connection issue</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/cmis-connection-issue/m-p/18085#M8032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your response! i heard something back from stackoverflow and i hope it answers at least part of your question about the repo_url:&lt;BR /&gt;&lt;BR /&gt; here’s the article: &lt;A href="https://stackoverflow.com/questions/44662733/cmis-connection-issue?noredirect=1#comment76332950_44662733" rel="nofollow noopener noreferrer"&gt;https://stackoverflow.com/questions/44662733/cmis-connection-issue?noredirect=1#comment76332950_44662733&lt;/A&gt;&lt;/P&gt;&lt;P&gt;As per their suggestion to test the repo_url, I downloaded and ran CMIS Workbench, there’s a place to enter the repo_url, id/pw, but got only this response and including Log file msgs: &lt;BR /&gt; &lt;BR /&gt; "The CMIS Workbench could connect to the server but the provided URL is not a CMIS endpoint URL. Check your URL and proxy settings." LOG: Apache Tomcat/7.0.54 - Error report; also, The requested resource is not available.”&lt;BR /&gt; &lt;BR /&gt; also, I get more info during the CMIS failure now - 6 lines: &lt;BR /&gt; 1-CMIS connection issue&lt;/P&gt;&lt;P&gt;2-HTTP Status 404 - /alfresco/service/cmis&lt;/P&gt;&lt;P&gt;3-type Status report&lt;/P&gt;&lt;P&gt;4-message /alfresco/service/cmis&lt;/P&gt;&lt;P&gt;5-description The requested resource is not available&lt;/P&gt;&lt;P&gt;6-Apache Tomcat/7.0.54.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jun 2017 21:40:47 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/cmis-connection-issue/m-p/18085#M8032</guid>
      <dc:creator>dcparham</dc:creator>
      <dc:date>2017-06-21T21:40:47Z</dc:date>
    </item>
  </channel>
</rss>

