<?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 Document viewer in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/document-viewer/m-p/238615#M191745</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I want to view any uploaded document as pdf when anchor link is clicked. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;For this problem I need to transform the document (like .doc, .xls etc) to pdf before downloading it so that it can be viewed in browser. One solution to this problem is :&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Override DownloadContentServlet and apply transformation by using one of the transformer in alfresco.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now I want to know is there any other way to resolve this problem (like using action or actionListener).&amp;nbsp; :?:&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Aug 2009 08:47:18 GMT</pubDate>
    <dc:creator>harishk</dc:creator>
    <dc:date>2009-08-25T08:47:18Z</dc:date>
    <item>
      <title>Document viewer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/document-viewer/m-p/238615#M191745</link>
      <description>I want to view any uploaded document as pdf when anchor link is clicked. For this problem I need to transform the document (like .doc, .xls etc) to pdf before downloading it so that it can be viewed in browser. One solution to this problem is &lt;IMG id="smileysurprised" class="emoticon emoticon-smileysurprised" src="https://migration33.stage.lithium.com/i/smilies/16x16_smiley-surprised.png" alt="Smiley Surprised" title="Smiley Surprised" /&gt;verride DownloadContentServlet and apply transformation</description>
      <pubDate>Tue, 25 Aug 2009 08:47:18 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/document-viewer/m-p/238615#M191745</guid>
      <dc:creator>harishk</dc:creator>
      <dc:date>2009-08-25T08:47:18Z</dc:date>
    </item>
    <item>
      <title>Re: Document viewer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/document-viewer/m-p/238616#M191746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Check out the Thumbnail service implementation. If you look at thumbnail-service-context.xml, you'll see examples for doc -&amp;gt; png (various sizes) and doc -&amp;gt; flash. You can create one that is doc -&amp;gt; pdf. You can use the thumbnail webscript (thumbnail.get.*) to get your custom thumbnail. Or just use the webscript as your download link. Modify the UI to include this link.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2009 06:55:12 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/document-viewer/m-p/238616#M191746</guid>
      <dc:creator>zaizi</dc:creator>
      <dc:date>2009-08-26T06:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: Document viewer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/document-viewer/m-p/238617#M191747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for your suggestion, but I am still facing problem.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I changed UI link to point to "&lt;/SPAN&gt;&lt;A href="http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore/9c3862c9-f85b-4380-b47b-688352a00ec4/content/thumbnails/previewpdf?c=force" rel="nofollow noopener noreferrer"&gt;http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore/9c3862c9-f85b-4380-b47b-688352a00ec4/content/thumbnails/previewpdf?c=force&lt;/A&gt;&lt;SPAN&gt;".&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But it is giving 500 server error. When I did debugging, I found that reader object is null because of contentProperty. I don't know what property it is referring to and how to set it as I am newbe to alfresco.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I want a pdf version of the content(document) should be opened when I click on above link. :?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2009 12:26:54 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/document-viewer/m-p/238617#M191747</guid>
      <dc:creator>harishk</dc:creator>
      <dc:date>2009-08-27T12:26:54Z</dc:date>
    </item>
    <item>
      <title>Re: Document viewer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/document-viewer/m-p/238618#M191748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Problem is resolved as I used "path" instead of "node" in "&lt;/SPAN&gt;&lt;A href="http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore/9c3862c9-f85b-4380-b47b-688352a00ec4/content/thumbnails/previewpdf?c=force" rel="nofollow noopener noreferrer"&gt;http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore/9c3862c9-f85b-4380-b47b-688352a00ec4/content/thumbnails/previewpdf?c=force&lt;/A&gt;&lt;SPAN&gt;" URL.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Correct URL is "&lt;/SPAN&gt;&lt;A href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9c3862c9-f85b-4380-b47b-688352a00ec4/content/thumbnails/previewpdf?c=force" rel="nofollow noopener noreferrer"&gt;http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9c3862c9-f85b-4380-b47b-688352a00ec4/content/thumbnails/previewpdf?c=force&lt;/A&gt;&lt;SPAN&gt;".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your help. &lt;img id="smileyvery-happy" class="emoticon emoticon-smileyvery-happy" src="https://connect.hyland.com/i/smilies/16x16_smiley-very-happy.png" alt="Smiley Very Happy" title="Smiley Very Happy" /&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Aug 2009 05:57:21 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/document-viewer/m-p/238618#M191748</guid>
      <dc:creator>harishk</dc:creator>
      <dc:date>2009-08-28T05:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: Document viewer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/document-viewer/m-p/238619#M191749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi team,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;here the client requirement is they want to edit the document or pdf in alfresco with out using googledocs because the users systems they don't have the internet connection to edit the Document.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So they want view a document in browser with out net connection in the system. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;so can u please help me out how can i edit the document or pdf programmatically or is there any way to do the same.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 May 2014 15:04:00 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/document-viewer/m-p/238619#M191749</guid>
      <dc:creator>gangadharjwala</dc:creator>
      <dc:date>2014-05-20T15:04:00Z</dc:date>
    </item>
  </channel>
</rss>

