<?xml version="1.0" encoding="UTF-8" ?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-US"><title type="html">Aspose.Words</title><subtitle type="html">This blog contains news about Aspose.Words for .NET, Java and Reporting Services direct from the development team.</subtitle><id>http://www.aspose.com/community/blogs/aspose.words/atom.aspx</id><link rel="alternate" type="text/html" href="http://www.aspose.com/community/blogs/aspose.words/default.aspx" /><link rel="self" type="application/atom+xml" href="http://www.aspose.com/community/blogs/aspose.words/atom.aspx" /><generator uri="http://communityserver.org" version="2.0.60217.2664">Community Server</generator><updated>2008-03-05T14:29:00Z</updated><entry><title>How to get content of a node or bookmark as HTML, WordML, RTF?</title><link rel="alternate" type="text/html" href="http://www.aspose.com/community/blogs/aspose.words/archive/2008/07/04/how-to-get-content-of-a-node-or-bookmark-as-html-wordml-rtf.aspx" /><id>http://www.aspose.com/community/blogs/aspose.words/archive/2008/07/04/how-to-get-content-of-a-node-or-bookmark-as-html-wordml-rtf.aspx</id><published>2008-07-03T23:47:00Z</published><updated>2008-07-03T23:47:00Z</updated><content type="html">&lt;P&gt;&lt;STRONG&gt;How to get content of a node or bookmark as HTML, WordML, RTF?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Many customers of Aspose.Words ask this question, but so far there was no simple one-line-of-code way of doing that in Aspose.Words.&lt;/P&gt;
&lt;P&gt;The general solution we recommended so far was to "extract" the document fragment you are interested in into a separate Document object and then use Document.Save to save it in the desired format. Extracting the fragment might be done either by deleting all content from the document except the fragment you are interested in, or by copying the fragment into an empty Document instance. Because the Document is a tree of nodes, extracting a fragment is not always straightforward and requires a bit of coding with traversing nodes.&lt;/P&gt;
&lt;P&gt;We would like to change that and make it easy for you. The reason we have not yet done this is "complex consequences" that are not immediately apparent to the users who ask for this feature, but are very apparent to us when we try to think of implementing this feature.&lt;/P&gt;
&lt;P&gt;This post is to let you,&amp;nbsp;the user who asks for this feature see the "consequences" of this feature and&amp;nbsp;seek your feedback. Once we decide how to proceed, we will quickly implement extracting HTML, WordML, RTF and any other format from nodes, bookmarks and any other document fragments.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Where Should the Images Go?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;You want to obtain contents of a node or&amp;nbsp;bookmark as an HTML string. All you want to do is:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size=2&gt;string htmlString = doc.Range.Bookmarks["MyBookmark"].ToHtml();&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;It is often forgotten that the fragment could contain images. When a complete document is saved to HTML, the images are written as separate files and the output HTML file references them. &lt;/P&gt;
&lt;P&gt;However, what to do with images when extracting only a fragment of a document as HTML? Should we just ignore the images in this case?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;What's an RTF Fragment?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;It is easy to say "I want RTF of that paragraph", but the problem is that any RTF fragment (or WordML or OOXML for that matter) is only valid within the context of a particular document.&lt;/P&gt;
&lt;P&gt;There are several document-wide structures that every fragment will often refer to. For example, an RTF fragment will use \f0 etc keywords to refer to entries in the font table. That is if you don't carry an RTF font table along with that RTF paragraph then the "references" to fonts will be dangling and you will never find out what font is used by text of the RTF fragment.&lt;/P&gt;
&lt;P&gt;This situation is not limited to fonts and RTF, it is much more widespread. Other document-wide structures that are often referenced&amp;nbsp;are styles and list (numbering) and this affects not only RTF, but WordML and OOXML.&lt;/P&gt;
&lt;P&gt;In&amp;nbsp;WordML there is&amp;nbsp;a thing called "context free chunk" that could be used to solve the problem.&amp;nbsp; A context free chunk is basically a "mini document" that includes all the document-wide-structures that are referenced by that particular document fragment. Brian Jones gives a bit of info about context free chunks here &lt;A href="http://blogs.msdn.com/brian_jones/archive/2005/07/20/441167.aspx"&gt;http://blogs.msdn.com/brian_jones/archive/2005/07/20/441167.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;What do you think if we make&amp;nbsp;Node.ToWordML() to return XML in the context free chunk format? I am not so sure about RTF and OOXML though. For RTF we will probably have to return a complete "mini document". For OOXML... no ideas so far.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Jagged Fragments&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;A bookmark in a Word document can start in a paragraph outside of a table, but end inside a table. The document is a tree of nodes and the situation looks something like this:&lt;/P&gt;
&lt;P&gt;&amp;lt;p&amp;gt;&amp;lt;bmkStart name="MyBookmark/&amp;gt;&amp;lt;/p&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;lt;table&amp;gt;&lt;BR&gt;&amp;lt;tr&amp;gt;&lt;BR&gt;&amp;lt;tc&amp;gt;&amp;lt;p&amp;gt;&amp;lt;bmkEnd name="MyBookmark"/&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;/tc&amp;gt;&lt;BR&gt;&amp;lt;/tr&amp;gt;&lt;BR&gt;&amp;lt;/table&amp;gt;&lt;/P&gt;
&lt;P&gt;If you want to get content of MyBookmark as HTML or WordML you are looking at several "jagged" nodes. That is start of table, row and cell elements are inside the bookmark, but they end outside of it. How do you want that exported?&lt;/P&gt;
&lt;P&gt;A possible solution is to "snap" up or down until the jagged fragment is closed. It could be possible to snap so the whole table is included in the bookmark or excluded. What do you think?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=134268" width="1" height="1"&gt;</content><author><name>romank</name><uri>http://www.aspose.com/community/members/romank.aspx</uri></author></entry><entry><title>Eating one's own dog food again!</title><link rel="alternate" type="text/html" href="http://www.aspose.com/community/blogs/aspose.words/archive/2008/06/22/eating-one-s-own-dog-food-again.aspx" /><id>http://www.aspose.com/community/blogs/aspose.words/archive/2008/06/22/eating-one-s-own-dog-food-again.aspx</id><published>2008-06-21T09:44:00Z</published><updated>2008-06-21T09:44:00Z</updated><content type="html">&lt;P&gt;Aspose.Words for .NET is the dog food again and we are eating it in our new product &lt;A href="http://www.aspose.com/categories/file-format-components/aspose.recognition-for-.net/default.aspx"&gt;Aspose.Recognition for .NET&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Aspose.Recognition is a fresh new product from Aspose&amp;nbsp;and it is touted to later grow into a powerful "fixed-layout" to "flow-layout" document converter.&amp;nbsp;At the moment it is only a 1.0 BETA and can convert PDF to all output formats supported by Aspose.Words for .NET such as DOC, OOXML, RTF, ODT and HTML. Future features planned are OCR document recognition and output to more&amp;nbsp;document formats.&lt;/P&gt;
&lt;P&gt;When you download and use Aspose.Recognition, no other software is necessary.&amp;nbsp; Downloading Aspose.Words separately is&amp;nbsp;not needed because in this version Aspose.Recognition embeds a document generation engine of Aspose.Words (although this might later change if more Office output formats are supported with help of other Aspose components).&lt;/P&gt;
&lt;P&gt;Other places where Aspose.Words is used at Aspose:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="http://www.aspose.com/categories/visual-components/aspose.editor-for-.net/default.aspx"&gt;Aspose.Editor for .NET &lt;/A&gt;to open and save documents.&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.aspose.com/categories/ssrs-rendering-extensions/aspose.words-for-reporting-services/default.aspx"&gt;Aspose.Words for Reporting Services &lt;/A&gt;to generate reports.&lt;/LI&gt;
&lt;LI&gt;Aspose.Words for JasperReports (coming soon).&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://www.aspose.com/documentation/default.aspx"&gt;Generation of Aspose&amp;nbsp;Documentation pages&lt;/A&gt;.&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;If you need PDF to word processing documents conversion in your project, give Aspose.Recognition a try and share your experience with us in the support forums. Your feedback is greatly appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=132406" width="1" height="1"&gt;</content><author><name>romank</name><uri>http://www.aspose.com/community/members/romank.aspx</uri></author></entry><entry><title>Aspose.Words Documentation Updated with Java Examples</title><link rel="alternate" type="text/html" href="http://www.aspose.com/community/blogs/aspose.words/archive/2008/06/10/aspose-words-documentation-updated-with-java-examples.aspx" /><id>http://www.aspose.com/community/blogs/aspose.words/archive/2008/06/10/aspose-words-documentation-updated-with-java-examples.aspx</id><published>2008-06-09T12:04:00Z</published><updated>2008-06-09T12:04:00Z</updated><content type="html">&lt;P&gt;I am happy to announce that &lt;A href="http://www.aspose.com/documentation/file-format-components/aspose.words-for-.net-and-java/index.html"&gt;Aspose.Words Documentation&lt;/A&gt; was updated. It now&amp;nbsp;includes all code examples in three languages: C#, VB.NET and Java!&lt;/P&gt;
&lt;P&gt;The&amp;nbsp;Getting Started and Programmer's Guide sections were updated. They contain over 100 code examples. See &lt;A href="http://www.aspose.com/documentation/file-format-components/aspose.words-for-.net-and-java/the-mergeimagefield-event.html"&gt;http://www.aspose.com/documentation/file-format-components/aspose.words-for-.net-and-java/the-mergeimagefield-event.html&lt;/A&gt;&amp;nbsp;for an example.&lt;/P&gt;
&lt;P&gt;The Aspose.Words API Reference had all examples in C#, VB.NET and Java already.&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=130528" width="1" height="1"&gt;</content><author><name>romank</name><uri>http://www.aspose.com/community/members/romank.aspx</uri></author></entry><entry><title>Aspose.Words.Java.2.4.2 Released</title><link rel="alternate" type="text/html" href="http://www.aspose.com/community/blogs/aspose.words/archive/2008/05/26/aspose-words-java-2-4-2.aspx" /><id>http://www.aspose.com/community/blogs/aspose.words/archive/2008/05/26/aspose-words-java-2-4-2.aspx</id><published>2008-05-26T14:56:00Z</published><updated>2008-05-26T14:56:00Z</updated><content type="html">&lt;DIV class=FileFileDescriptionArea&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;FONT face=Calibri&gt;Only one fix included by urgent request:&lt;/FONT&gt;&lt;/P&gt;
&lt;TABLE class=MsoNormalTable style="BORDER-COLLAPSE: collapse; mso-yfti-tbllook: 1184; mso-padding-alt: 0cm 0cm 0cm 0cm" cellSpacing=0 cellPadding=0 border=0&gt;
&lt;TBODY&gt;
&lt;TR style="HEIGHT: 12.75pt; mso-yfti-irow: 0; mso-yfti-firstrow: yes"&gt;
&lt;TD style="PADDING-RIGHT: 0cm; PADDING-LEFT: 0cm; BORDER-LEFT-COLOR: #ece9d8; BORDER-BOTTOM-COLOR: #ece9d8; PADDING-BOTTOM: 0cm; WIDTH: 42pt; BORDER-TOP-COLOR: #ece9d8; PADDING-TOP: 0cm; HEIGHT: 12.75pt; BACKGROUND-COLOR: transparent; BORDER-RIGHT-COLOR: #ece9d8" width=70&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'; mso-bidi-font-size: 11.0pt; mso-fareast-font-family: 'Times New Roman'"&gt;Issue ID&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="PADDING-RIGHT: 0cm; PADDING-LEFT: 0cm; BORDER-LEFT-COLOR: #ece9d8; BORDER-BOTTOM-COLOR: #ece9d8; PADDING-BOTTOM: 0cm; WIDTH: 60pt; BORDER-TOP-COLOR: #ece9d8; PADDING-TOP: 0cm; HEIGHT: 12.75pt; BACKGROUND-COLOR: transparent; BORDER-RIGHT-COLOR: #ece9d8" width=100&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'; mso-bidi-font-size: 11.0pt; mso-fareast-font-family: 'Times New Roman'"&gt;Component&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="PADDING-RIGHT: 0cm; PADDING-LEFT: 0cm; BORDER-LEFT-COLOR: #ece9d8; BORDER-BOTTOM-COLOR: #ece9d8; PADDING-BOTTOM: 0cm; WIDTH: 390pt; BORDER-TOP-COLOR: #ece9d8; PADDING-TOP: 0cm; HEIGHT: 12.75pt; BACKGROUND-COLOR: transparent; BORDER-RIGHT-COLOR: #ece9d8" width=650&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'; mso-bidi-font-size: 11.0pt; mso-fareast-font-family: 'Times New Roman'"&gt;Summary&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT: 12.75pt; mso-yfti-irow: 1; mso-yfti-lastrow: yes"&gt;
&lt;TD style="PADDING-RIGHT: 0cm; PADDING-LEFT: 0cm; BORDER-LEFT-COLOR: #ece9d8; BORDER-BOTTOM-COLOR: #ece9d8; PADDING-BOTTOM: 0cm; WIDTH: 42pt; BORDER-TOP-COLOR: #ece9d8; PADDING-TOP: 0cm; HEIGHT: 12.75pt; BACKGROUND-COLOR: transparent; BORDER-RIGHT-COLOR: #ece9d8" width=70&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;FONT face=Calibri&gt;4925&lt;B&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'; mso-bidi-font-size: 11.0pt; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="PADDING-RIGHT: 0cm; PADDING-LEFT: 0cm; BORDER-LEFT-COLOR: #ece9d8; BORDER-BOTTOM-COLOR: #ece9d8; PADDING-BOTTOM: 0cm; WIDTH: 60pt; BORDER-TOP-COLOR: #ece9d8; PADDING-TOP: 0cm; HEIGHT: 12.75pt; BACKGROUND-COLOR: transparent; BORDER-RIGHT-COLOR: #ece9d8" width=100&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;FONT face=Calibri&gt;Doc&lt;B&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'; mso-bidi-font-size: 11.0pt; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="PADDING-RIGHT: 0cm; PADDING-LEFT: 0cm; BORDER-LEFT-COLOR: #ece9d8; BORDER-BOTTOM-COLOR: #ece9d8; PADDING-BOTTOM: 0cm; WIDTH: 390pt; BORDER-TOP-COLOR: #ece9d8; PADDING-TOP: 0cm; HEIGHT: 12.75pt; BACKGROUND-COLOR: transparent; BORDER-RIGHT-COLOR: #ece9d8" width=650&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;FONT face=Calibri&gt;“Unrecognized format of the form field” Exception occurs during opening document.&lt;B&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'; mso-bidi-font-size: 11.0pt; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;
&lt;P&gt;To download:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.aspose.com/community/files/51/file-format-components/aspose.words/entry128647.aspx"&gt;http://www.aspose.com/community/files/51/file-format-components/aspose.words/entry128647.aspx&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=128648" width="1" height="1"&gt;</content><author><name>Konstantin</name><uri>http://www.aspose.com/community/members/Konstantin.aspx</uri></author></entry><entry><title>Aspose.Words for .NET 5.2.0 Released</title><link rel="alternate" type="text/html" href="http://www.aspose.com/community/blogs/aspose.words/archive/2008/05/15/aspose-words-for-net-5-2-0-released.aspx" /><id>http://www.aspose.com/community/blogs/aspose.words/archive/2008/05/15/aspose-words-for-net-5-2-0-released.aspx</id><published>2008-05-15T06:02:00Z</published><updated>2008-05-15T06:02:00Z</updated><content type="html">&lt;P&gt;I am happy to announce&amp;nbsp;release of Aspose.Words for .NET 5.2.0 that is now available for &lt;A href="http://www.aspose.com/community/files/51/file-format-components/aspose.words/entry127076.aspx"&gt;download&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;New Feature: Save as MHTML&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;We have added a new useful feature: save as MHTML. MHTML is a "web archive" or "single file web page" format.&amp;nbsp;An HTML document and all external resources (images and stylesheets) are stored within a single file. MHTML could be a good option if you need to convert documents to HTML. When saving documents as HTML, Aspose.Words saves images into separate files and it could be cumbersome to deal with them.&lt;/P&gt;
&lt;P&gt;Saving into a single MHTML file allows, for example, to easily email the document. We will soon upload a sample that does just that: uses Aspose.Words + Aspose.Network to mail merge into Word documents and email as HTML.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;New Feature: Save as OpenDocument Text (ODT)&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Finally, we are proud to announce the availability of the long awaited OpenDocument support. It is hard to convert Word documents into OpenDocument, but we've done it.&lt;/P&gt;
&lt;P&gt;This release also includes big number of fixes in many areas. As always, it is a good idea to stay up to date with the latest version of Aspose.Words.&lt;/P&gt;
&lt;P&gt;You can see and try new functionality in the &lt;A href="http://www.aspose.com/demos/aspose.words/default.aspx"&gt;online demo&lt;/A&gt;.&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=127087" width="1" height="1"&gt;</content><author><name>romank</name><uri>http://www.aspose.com/community/members/romank.aspx</uri></author></entry><entry><title>Aspose.Words - the engine of choice for online word processors?</title><link rel="alternate" type="text/html" href="http://www.aspose.com/community/blogs/aspose.words/archive/2008/05/02/aspose-words-the-engine-of-choice-for-online-word-processors.aspx" /><id>http://www.aspose.com/community/blogs/aspose.words/archive/2008/05/02/aspose-words-the-engine-of-choice-for-online-word-processors.aspx</id><published>2008-05-01T22:09:00Z</published><updated>2008-05-01T22:09:00Z</updated><content type="html">&lt;P&gt;There is a number of great products already out there built by great companies and great people&amp;nbsp;that incorporate Aspose.Words for their document processing needs. But I find it especially rewarding when Aspose.Words is used to build a word processing application, especially an online word processor!&lt;/P&gt;
&lt;P&gt;We've mentioned earlier and &lt;A href="http://www.colettas.org/?p=222"&gt;got mentioned&lt;/A&gt; that the &lt;A href="https://buzzword.acrobat.com/"&gt;Buzzword&lt;/A&gt; team chose &lt;STRONG&gt;Aspose.Words for .NET&lt;/STRONG&gt; to use as an engine&amp;nbsp;for loading and saving documents in various formats. We keep working hard to make sure they are happy with Aspose.Words. Our upcoming release will include OpenDocument format (ODF) export that we've promised to Buzzword.&lt;/P&gt;
&lt;P&gt;This trend seems to continue and we were happy to learn that &lt;A href="http://writer.zoho.com/jsp/home.jsp?serviceurl=%2Findex.do"&gt;Zoho Writer &lt;/A&gt;&amp;nbsp;uses &lt;STRONG&gt;Aspose.Words for Java&lt;/STRONG&gt; for loading and saving to some of the document formats they support.&lt;/P&gt;
&lt;P&gt;Thank you all for your continuous interest and trust in Aspose.Words.&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=125062" width="1" height="1"&gt;</content><author><name>romank</name><uri>http://www.aspose.com/community/members/romank.aspx</uri></author></entry><entry><title>Aspose.Words for Reporting Services 2.2.0.0 Released</title><link rel="alternate" type="text/html" href="http://www.aspose.com/community/blogs/aspose.words/archive/2008/04/28/aspose-words-for-reporting-services-2-2-0-0-released.aspx" /><id>http://www.aspose.com/community/blogs/aspose.words/archive/2008/04/28/aspose-words-for-reporting-services-2-2-0-0-released.aspx</id><published>2008-04-28T08:14:00Z</published><updated>2008-04-28T08:14:00Z</updated><content type="html">&lt;P&gt;Please welcome another release of our popular product - Aspose.Words for Reporting Services 2.2.0.0. We've decided to skip a bunch of maintenance releases such as&amp;nbsp;2.1.X.X mainly because of a couple of new export formats&amp;nbsp;implemented -&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Hypertext markup language (HTML) 
&lt;LI&gt;Plain text (TXT)&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;We could have added these formats much earlier (since the product is built on the top of Aspose.Words which supports both), but we were not quite sure the users really needed them. But we've recently figured out&amp;nbsp;they did! Moreover, we've made some improvements to the&amp;nbsp;TXT export format, so that&amp;nbsp;tables now preserve their layout when exported to plain text.&lt;/P&gt;
&lt;P&gt;You can also notice a number of other improvements and fixes that are listed on&amp;nbsp;the download page of the product:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.aspose.com/community/files/52/ssrs-rendering-extensions/aspose.words.reporting.services/default.aspx"&gt;http://www.aspose.com/community/files/52/ssrs-rendering-extensions/aspose.words.reporting.services/default.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;As ever, we keep working hard on the product as it becomes widely used indeed and more and more customers visit our &lt;A href="http://www.aspose.com/community/forums/aspose.words-for-.net-java-and-reporting-services/75/showforum.aspx"&gt;support forum&lt;/A&gt; to post their inquiries. Please don't hesitate to do so and we'll be as responsive as always!&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=124442" width="1" height="1"&gt;</content><author><name>DmitryV</name><uri>http://www.aspose.com/community/members/DmitryV.aspx</uri></author></entry><entry><title>Aspose Document Converters for SharePoint Server 2007</title><link rel="alternate" type="text/html" href="http://www.aspose.com/community/blogs/aspose.words/archive/2008/04/12/aspose-document-converters-for-sharepoint-server-2007.aspx" /><id>http://www.aspose.com/community/blogs/aspose.words/archive/2008/04/12/aspose-document-converters-for-sharepoint-server-2007.aspx</id><published>2008-04-11T12:56:00Z</published><updated>2008-04-11T12:56:00Z</updated><content type="html">&lt;P&gt;This is a brief update for an article I wrote about a year ago on how to&amp;nbsp;create&amp;nbsp; Microsoft Office SharePoint Server 2007&amp;nbsp;DOC to PDF (and other) document converters using Aspose components.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;A Bit of History&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;We have published the article initially at CodeProject in the SharePoint section. The article was actually quite popular and received lots of hits. However, after a few months it was deleted by CodeProject. The reason given for deletion was &lt;EM&gt;"the article promotes a commercial product"&lt;/EM&gt;. Haha, they must have been joking... What about all other thousands of articles on CodeProject that promote Visual Studio, SQL Server,&amp;nbsp;Office, Telerik&amp;nbsp;and heaps of other commercial products. As far as I am concerned the article was perfect - it was a programming project with free source code.&lt;/P&gt;
&lt;P&gt;Interestingly, the article is actually still accessible at CodeProject here &lt;A href="http://www.codeproject.com/KB/sharepoint/DOC2PDF_in_MOSS.aspx"&gt;http://www.codeproject.com/KB/sharepoint/DOC2PDF_in_MOSS.aspx&lt;/A&gt;&amp;nbsp;and it ranks quite high in Google.&lt;/P&gt;
&lt;P&gt;Of course the article is still available in the&amp;nbsp;&lt;A href="http://www.aspose.com/documentation/file-format-components/aspose.words-for-.net-and-java/add-doc-to-pdf-and-other-conversions-to-microsoft-office-sharepoint-server-2007-with-aspose-components.html"&gt;Aspose.Words Documentation&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;What's New&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Aspose.Words now supports Office Open XML (OOXML)&amp;nbsp;load and save as well as OpenDocument (ODT) save. This means that you can actually add quite a lot of conversions to SharePoint. In fact, from any Aspose.Words load format to any save format:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;DOC2RTF 
&lt;LI&gt;DOC2WordML 
&lt;LI&gt;DOC2DOCX 
&lt;LI&gt;DOC2PDF 
&lt;LI&gt;DOC2HTML 
&lt;LI&gt;DOC2TXT 
&lt;LI&gt;DOC2ODT&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;RTF2DOC 
&lt;LI&gt;RTF2WordML 
&lt;LI&gt;RTF2DOCX 
&lt;LI&gt;RTF2PDF 
&lt;LI&gt;RTF2HTML 
&lt;LI&gt;RTF2ODT 
&lt;LI&gt;RTF2TXT&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;DOCX2DOC 
&lt;LI&gt;DOCX2WordML 
&lt;LI&gt;DOCX2RTF 
&lt;LI&gt;DOCX2PDF 
&lt;LI&gt;DOCX2HTML 
&lt;LI&gt;DOCX2ODT 
&lt;LI&gt;DOCX2TXT&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;WordML2DOC 
&lt;LI&gt;WordML2DOCX 
&lt;LI&gt;WordML2RTF 
&lt;LI&gt;WordML2PDF 
&lt;LI&gt;WordML2HTML 
&lt;LI&gt;WordML2ODT 
&lt;LI&gt;WordML2TXT&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;If you need one of those converters in MOSS it must be a good time to try now. Don't forget Aspose has other file format components for spreadsheets and presentations so you could use them for even more conversions.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;If You Have Problems&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;There were many people who followed the steps in the article and it worked. Some encountered problems and reported to us in the Aspose Support Forums.&lt;/P&gt;
&lt;P&gt;So far we've taken a stance of blaiming SharePoint's overly complex procedure for adding and configuring&amp;nbsp;document converters (you can see that from the article) and essentially refusing to provide technical support for SharePoint.&lt;/P&gt;
&lt;P&gt;We are now considering what can be done to improve the situation. You could help by leaving a comment here or in the forums about the issue. Do you want a document converter for MOSS to be a ready installable product so you don't have to tweak config files? What conversions do you actually need? And so on.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=121816" width="1" height="1"&gt;</content><author><name>romank</name><uri>http://www.aspose.com/community/members/romank.aspx</uri></author></entry><entry><title>OOXML: Don't Repeat Yourself 30 Times!</title><link rel="alternate" type="text/html" href="http://www.aspose.com/community/blogs/aspose.words/archive/2008/04/05/ooxml-don-t-repeat-yourself-30-times.aspx" /><id>http://www.aspose.com/community/blogs/aspose.words/archive/2008/04/05/ooxml-don-t-repeat-yourself-30-times.aspx</id><published>2008-04-04T16:06:00Z</published><updated>2008-04-04T16:06:00Z</updated><content type="html">&lt;P&gt;It struck me from the first day I saw the OOXML specification how "strange" it is. You know borders in MS Word. I mean those text, paragraph and table borders.&amp;nbsp;Complete specfication for a border takes 6 pages in OOXML. I'd say it is a bit too much for such a simple thing as a border, but that's okay, I guess the more detailed the spec&amp;nbsp;the better.&lt;/P&gt;
&lt;P&gt;The problem is that this 6 pages border specification is repeated in the OOXML document 30 times. Yes, for every left, right, bottom and top border and every type of object you get&amp;nbsp;those 6 pages again and again.&lt;/P&gt;
&lt;P&gt;As you know any decent programming book will tell you "don't repeat yourself" and "duplication is bad".&lt;/P&gt;
&lt;P&gt;To me it looks like defining a simple base data type such as integer and repeating its full specification in every place in the documentation it gets used. I am completely lost at why this is the way things done in OOXML and borders is not the only thing that is duplicated.&lt;/P&gt;
&lt;P&gt;By removing such basic duplication the OOXML spec could have been made a lot shorter. Just removing borders duplication could have made it almost 200 pages shorter.&lt;/P&gt;
&lt;P&gt;It will be very interesting to see how OOXML spec turns out when it is final and&amp;nbsp;published by ISO. I cannot find any info on this and my gut feel is that the duplication will remain and that will make it a very sad standard.&lt;/P&gt;
&lt;P&gt;Here is more on DRY &lt;A href="http://en.wikipedia.org/wiki/Don't_repeat_yourself"&gt;http://en.wikipedia.org/wiki/Don't_repeat_yourself&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;On the bright side, the more complex the standard - the better for component vendors such as Aspose!&lt;/P&gt;
&lt;P&gt;You've got to be kidding trying to work with&amp;nbsp;OOXML documents without a decent class library such as Aspose.Words. It took us a year to support OOXML to a reasonable level of conformance (with all MS Word formats experience we had before) and we are still working on it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=120824" width="1" height="1"&gt;</content><author><name>romank</name><uri>http://www.aspose.com/community/members/romank.aspx</uri></author></entry><entry><title>DOC, RTF and OOXML export from Microsoft Report Viewer control?</title><link rel="alternate" type="text/html" href="http://www.aspose.com/community/blogs/aspose.words/archive/2008/03/29/doc-rtf-and-ooxml-export-from-microsoft-report-viewer-control.aspx" /><id>http://www.aspose.com/community/blogs/aspose.words/archive/2008/03/29/doc-rtf-and-ooxml-export-from-microsoft-report-viewer-control.aspx</id><published>2008-03-28T09:26:00Z</published><updated>2008-03-28T09:26:00Z</updated><content type="html">&lt;P&gt;Found an interesting article &lt;A href="http://www.codeproject.com/KB/reporting-services/report-viewer-hack.aspx"&gt;http://www.codeproject.com/KB/reporting-services/report-viewer-hack.aspx&lt;/A&gt;. This guy is clearly a big fan of Aspose.Words for Reporting Services.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=119571" width="1" height="1"&gt;</content><author><name>romank</name><uri>http://www.aspose.com/community/members/romank.aspx</uri></author></entry><entry><title>Aspose.Words for .NET on Windows Server 2008</title><link rel="alternate" type="text/html" href="http://www.aspose.com/community/blogs/aspose.words/archive/2008/03/29/aspose-words-for-net-on-windows-server-2008.aspx" /><id>http://www.aspose.com/community/blogs/aspose.words/archive/2008/03/29/aspose-words-for-net-on-windows-server-2008.aspx</id><published>2008-03-28T09:20:00Z</published><updated>2008-03-28T09:20:00Z</updated><content type="html">&lt;P&gt;Yes, it works.&lt;/P&gt;
&lt;P&gt;We've tested Aspose.Words for .NET 5.1.0 installs and works fine on Windows Server 2008 Enterprise x64.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=119570" width="1" height="1"&gt;</content><author><name>romank</name><uri>http://www.aspose.com/community/members/romank.aspx</uri></author></entry><entry><title>Aspose.Words 5.1.0 Released</title><link rel="alternate" type="text/html" href="http://www.aspose.com/community/blogs/aspose.words/archive/2008/03/28/aspose-words-5-1-0-released.aspx" /><id>http://www.aspose.com/community/blogs/aspose.words/archive/2008/03/28/aspose-words-5-1-0-released.aspx</id><published>2008-03-27T11:45:00Z</published><updated>2008-03-27T11:45:00Z</updated><content type="html">&lt;P&gt;There is Aspsoe.Words 5.1.0 available in downloads &lt;A href="http://www.aspose.com/community/files/51/file-format-components/aspose.words/entry119442.aspx"&gt;http://www.aspose.com/community/files/51/file-format-components/aspose.words/entry119442.aspx&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Here I just wanted to elaborate more on what we've done:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Improvements to DrawingML Import (in OOXML)&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;When we started implementation of Office Open XML export and import features in Aspose.Words about a year ago, Microsoft Word 2007 was storing images and shapes in the VML format inside a DOCX document. All information we could find at that time was saying that DrawingML although part of the Office Open XML specification is only used by Power Point in Office 2007. Apparently we were mistaken.&lt;/P&gt;
&lt;P&gt;Now after a year of hard work we have a good level of support (as you can see from our conformance spreadsheet) for OOXML import and export since Aspose.Words 5.0.0. But sometime during this year Microsoft Word 2007 "started" to store images and shapes in the DrawingML format and that took us by surprise.&amp;nbsp;We completely missed out on DrawingML and hence many customers reported images missing in their documents after DOCX open/save in Aspose.Words.&lt;/P&gt;
&lt;P&gt;When you save a document in Word 2007 you can control whether VML or DrawingML is used by checking the "Maintain compatibility with Word 97-2003" in the Save As dialog box. If a document was saved with this option turned off, all images in the document will be stored as DrawingML.&lt;/P&gt;
&lt;P&gt;Straight after 5.0 release we started urgently working on DrawingML support. This 5.1 release is a first iteration. Import of inline images stored as DrawingML is now supported. &lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Improvements to ODT (OpenDocument) Export&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;This is another iteration of features in ODT export. Export of formatting for images, paragraphs, text, sections and tables has been improved in many places. We still continue to actively work on ODT.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Exporting CSS to a Stylesheet&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;A useful new option that was requested by many customer allows to export CSS to a stylesheet (embedded or external file) when exporting a document to HTML.&lt;/P&gt;&lt;CODE&gt;
&lt;P&gt;Document doc = new Document("MyFile.doc");&lt;/P&gt;
&lt;P&gt;doc.SaveOptions.HtmlExportCssStyleSheetType = CssStyleSheetType.External;&lt;/P&gt;
&lt;P&gt;doc.SaveOptions.HtmlExportCssStyleSheetFileName = "myfile_styles.css";&lt;/P&gt;
&lt;P&gt;doc.Save("MyFile.html");&lt;/P&gt;
&lt;P&gt;&lt;/CODE&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Resolved Problems on 64bit Windows &lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;We've been plagued by&amp;nbsp;occasional customer reports about Aspose.Words failures on Windows Server 2003 64-bit over a period of several months.&lt;/P&gt;
&lt;P&gt;The problem was traced down to a setting in the obfuscation tool we use. Some Aspose.Words builds would run on 64-bit successfully, but some will fail, mostly when you attempt to open a document with a memory access exception. The difficulty was that some builds will work and some not.&lt;/P&gt;
&lt;P&gt;We hope that we have finally resolved this issue now.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=119461" width="1" height="1"&gt;</content><author><name>romank</name><uri>http://www.aspose.com/community/members/romank.aspx</uri></author></entry><entry><title>Aspose.Words with Visual Studio 2008, .NET 3.0 and .NET 3.5</title><link rel="alternate" type="text/html" href="http://www.aspose.com/community/blogs/aspose.words/archive/2008/03/25/aspose-words-with-visual-studio-2008-net-3-0-and-net-3-5.aspx" /><id>http://www.aspose.com/community/blogs/aspose.words/archive/2008/03/25/aspose-words-with-visual-studio-2008-net-3-0-and-net-3-5.aspx</id><published>2008-03-25T05:00:00Z</published><updated>2008-03-25T05:00:00Z</updated><content type="html">&lt;P&gt;&lt;STRONG&gt;Yes, it works.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;We will continue to ship two assemblies: bin\net1.1\Aspose.Words.dll and bin\net2.0\Aspose.Words.dll built for .NET 1.1 and .NET 2.0 respectively.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;bin\net2.0\Aspose.Words.dll is&amp;nbsp;to be used with:&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Visual Studio 2005&lt;/LI&gt;
&lt;LI&gt;Visual Studio 2008&lt;/LI&gt;
&lt;LI&gt;.NET Framework 2.0 (with or without SP1)&lt;/LI&gt;
&lt;LI&gt;.NET Framework 3.0 (with or without SP1)&lt;/LI&gt;
&lt;LI&gt;.NET Framework 3.5&lt;/LI&gt;
&lt;LI&gt;x86 or x64 application&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;bin\net2.0\Aspose.Words.dll will continue to target .NET Framework 2.0 because it does not use any .NET 3.0 or 3.5 features. A good MSDN article &lt;A href="http://msdn2.microsoft.com/en-nz/library/bb822049(en-us).aspx"&gt;.NET Framework 3.5 Archiecture&lt;/A&gt; has more info about this.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;bin\net1.1\Aspose.Words.dll is to be used with:&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Visual Studio 2003&lt;/LI&gt;
&lt;LI&gt;Visual Studio 2002&lt;/LI&gt;
&lt;LI&gt;.NET Framework 1.1 (with or without SP)&lt;/LI&gt;
&lt;LI&gt;.NET Framework 1.0 (you need to create a configuration file as shown in the Aspose.Words documentation)&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=118978" width="1" height="1"&gt;</content><author><name>romank</name><uri>http://www.aspose.com/community/members/romank.aspx</uri></author></entry><entry><title>Aspose.Words for Reporting Services 2.1.0.0 Released</title><link rel="alternate" type="text/html" href="http://www.aspose.com/community/blogs/aspose.words/archive/2008/03/12/aspose-words-for-reporting-services-2-1-0-0-released.aspx" /><id>http://www.aspose.com/community/blogs/aspose.words/archive/2008/03/12/aspose-words-for-reporting-services-2-1-0-0-released.aspx</id><published>2008-03-12T16:10:00Z</published><updated>2008-03-12T16:10:00Z</updated><content type="html">&lt;P&gt;It's been around a year since we released the first version of Aspose.Words for Reporting Services, and now 2.1 is coming. A rendering extension is not a standalone program, it's rather somewhat like a plug-in, and the goals of a plug-in&amp;nbsp;are to&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;be as easy to install, configure and maintain as possible 
&lt;LI&gt;do its job as good&amp;nbsp;as possible.&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;We truly hope we've achieved these goals. However, we keep working hard&amp;nbsp;on the product in order to make it even closer to perfection. There&amp;nbsp;are always lots of things to investigate and implement, especially in the area of format conversion.&lt;/P&gt;
&lt;P&gt;The new release is available to download at &lt;A href="http://www.aspose.com/community/files/52/ssrs-rendering-extensions/aspose.words.reporting.services/default.aspx"&gt;http://www.aspose.com/community/files/52/ssrs-rendering-extensions/aspose.words.reporting.services/default.aspx&lt;/A&gt;&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=117376" width="1" height="1"&gt;</content><author><name>DmitryV</name><uri>http://www.aspose.com/community/members/DmitryV.aspx</uri></author></entry><entry><title>Aspose.Words with AJAX Demo</title><link rel="alternate" type="text/html" href="http://www.aspose.com/community/blogs/aspose.words/archive/2008/03/05/aspose-words-with-ajax-demo.aspx" /><id>http://www.aspose.com/community/blogs/aspose.words/archive/2008/03/05/aspose-words-with-ajax-demo.aspx</id><published>2008-03-05T00:29:00Z</published><updated>2008-03-05T00:29:00Z</updated><content type="html">&lt;P&gt;Here is a&amp;nbsp;great little demo that shows how to invoke Aspose.Words from an ASP.NET application AJAX style. For more info &lt;A href="http://www.aspose.com/community/files/51/aspose.words/entry116156.aspx"&gt;http://www.aspose.com/community/files/51/aspose.words/entry116156.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Aspose.Words for .NET by itself is just a .NET class library for document conversions, report generation and document programmatic access and as such does not have (and does not need) any built-in web or other fancy stuff. Therefore it is very easy to use from any .NET application be it an AJAX, ASP.NET, Windows Forms etc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=116159" width="1" height="1"&gt;</content><author><name>romank</name><uri>http://www.aspose.com/community/members/romank.aspx</uri></author></entry></feed>