<?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 Alfresco's WebDAV with CAS SSO in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/alfresco-s-webdav-with-cas-sso/m-p/220010#M173140</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi guys,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've configured alfresco + CAS already, so using only the "alfresco web interface" it's working fine. We use Alfresco's WebDAV a lot but after configuring CAS i can't use WebDAV anymore since in the apache2 configuration file i had to put these lines:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;JkMount /alfresco ajp13&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;JkMount /alfresco/* ajp13&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Therefore, when i try to access &lt;/SPAN&gt;&lt;A href="http://myserver/alfresco/webdav" rel="nofollow noopener noreferrer"&gt;http://myserver/alfresco/webdav&lt;/A&gt;&lt;SPAN&gt;, it's doing match with the second line and then it redirects my request to CAS and then throw me a 302 error that the object has been moved temporarily. I don't know what to do so that when i try to access &lt;/SPAN&gt;&lt;A href="http://myserver/alfresco/webdav" rel="nofollow noopener noreferrer"&gt;http://myserver/alfresco/webdav&lt;/A&gt;&lt;SPAN&gt; it doesn't redirect me to the initial CAS login page.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In fact, i wouldn't mind that users will have to login again to use WebDAV while it works.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Sep 2010 10:20:58 GMT</pubDate>
    <dc:creator>imdea</dc:creator>
    <dc:date>2010-09-13T10:20:58Z</dc:date>
    <item>
      <title>Alfresco's WebDAV with CAS SSO</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/alfresco-s-webdav-with-cas-sso/m-p/220010#M173140</link>
      <description>Hi guys,I've configured alfresco + CAS already, so using only the "alfresco web interface" it's working fine. We use Alfresco's WebDAV a lot but after configuring CAS i can't use WebDAV anymore since in the apache2 configuration file i had to put these lines:JkMount /alfresco ajp13JkMount /alfresco/</description>
      <pubDate>Mon, 13 Sep 2010 10:20:58 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/alfresco-s-webdav-with-cas-sso/m-p/220010#M173140</guid>
      <dc:creator>imdea</dc:creator>
      <dc:date>2010-09-13T10:20:58Z</dc:date>
    </item>
    <item>
      <title>Re: Alfresco's WebDAV with CAS SSO</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/alfresco-s-webdav-with-cas-sso/m-p/220011#M173141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm new with mod_auth_cas and mod_jk but I'm doing this right now and that's what I think about the subject. If I'm wrong please correct me:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The problem is not related to the JkMount points, they are doing their job right. This mounts just "connect" your apache httpd server with tomcat, they are not responsible for CAS authentication.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In some other configuration file, the one related to mod_auth_cas you have "Location" entry protecting whole "/alfresco" path. I change it to this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&lt;BR /&gt;&amp;lt;Location /alfresco/faces&amp;gt;&lt;BR /&gt;AuthType CAS&lt;BR /&gt;AuthName "CAS"&lt;BR /&gt;require valid-user&lt;BR /&gt;CASScope /alfresco&lt;BR /&gt;&amp;lt;/Location&amp;gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;This makes only "/alfresco/faces" be protected. I don't think this is a security risk because when no CAS credentials are supplied but Alfresco Explorer authentication is required Alfresco will jump to "/alfresco/faces/jsp/login.jsp" and, of course, then CAS will fire.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That way /alfresco/webdav (which uses HTTP authentication) will just use "normal" authentication, and the same applies for /alfresco/service or whatever. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Of course you'll need to chain additional authentication subsystems in order for this other services to authenticate. Tipycally you will chain the same methods that your CAS uses, for example if your CAS uses LDAP authentication, then you'll chain in alfresco the external authentication method (for CAS), as well as the LDAP subsystem (for other authentications).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope it helps.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Nov 2010 18:51:57 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/alfresco-s-webdav-with-cas-sso/m-p/220011#M173141</guid>
      <dc:creator>iblanco</dc:creator>
      <dc:date>2010-11-16T18:51:57Z</dc:date>
    </item>
  </channel>
</rss>

