<?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: Installation of Alfresco 1.4 on Sun JES2005Q4 Web Server in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/installation-of-alfresco-1-4-on-sun-jes2005q4-web-server/m-p/52240#M30661</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Very many thanks for this information - I'm sure others will also be grateful for your efforts!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Paul.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Nov 2006 11:45:48 GMT</pubDate>
    <dc:creator>paulhh</dc:creator>
    <dc:date>2006-11-13T11:45:48Z</dc:date>
    <item>
      <title>Installation of Alfresco 1.4 on Sun JES2005Q4 Web Server</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/installation-of-alfresco-1-4-on-sun-jes2005q4-web-server/m-p/52239#M30660</link>
      <description>I have culled all the various threads in this forum to get a working install of Alfresco on our Sun One Web Server 6.1.http://forums.alfresco.com/viewtopic.php?t=2985&amp;amp;highlight=sun+web+serverhttp://forums.alfresco.com/viewtopic.php?t=3008&amp;amp;highlight=Easiest Reference: search for posts by "tva</description>
      <pubDate>Wed, 08 Nov 2006 23:42:05 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/installation-of-alfresco-1-4-on-sun-jes2005q4-web-server/m-p/52239#M30660</guid>
      <dc:creator>ewise</dc:creator>
      <dc:date>2006-11-08T23:42:05Z</dc:date>
    </item>
    <item>
      <title>Re: Installation of Alfresco 1.4 on Sun JES2005Q4 Web Server</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/installation-of-alfresco-1-4-on-sun-jes2005q4-web-server/m-p/52240#M30661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Very many thanks for this information - I'm sure others will also be grateful for your efforts!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Paul.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Nov 2006 11:45:48 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/installation-of-alfresco-1-4-on-sun-jes2005q4-web-server/m-p/52240#M30661</guid>
      <dc:creator>paulhh</dc:creator>
      <dc:date>2006-11-13T11:45:48Z</dc:date>
    </item>
    <item>
      <title>Re: Installation of Alfresco 1.4 on Sun JES2005Q4 Web Server</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/installation-of-alfresco-1-4-on-sun-jes2005q4-web-server/m-p/52241#M30662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Well, I spoke too soon. There is an issue with Alfresco 1.4 requiring a Servlet 2.4 environment. I commented out the 2.4 call and replaced it with a 2.3 compatible call. I can now download files!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To make this run in 6.1 you need to change the following web-client.jar file as follows:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1 - make a backup copy of web-client.jar&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2 - get the source code (or disassemble) for BaseDownloadContentServlet.class in package org.alfresco.web.app.servlet&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3 - change the following code at line (or around) line 243&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // set mimetype for the content and the character encoding for the stream&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; res.setContentType(mimetype);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; String encoding= req.getContentType() +"; charset=UTF-8";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; res.setContentType(encoding);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; res.setCharacterEncoding(reader.getEncoding());&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;4 - recompile the changed class&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;5 - add the new class file to the web-client.jar (ensure you have replaced the proper file!)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;6 - restart the web server&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now you can download files without exception! This may or may not work in your environment, but it "works for me".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;E/.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 23:49:27 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/installation-of-alfresco-1-4-on-sun-jes2005q4-web-server/m-p/52241#M30662</guid>
      <dc:creator>ewise</dc:creator>
      <dc:date>2006-11-15T23:49:27Z</dc:date>
    </item>
  </channel>
</rss>

