<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		
		<title>RealObjects PDFreactor Technical FAQs</title>
		<link>http://www.realobjects.com/</link>
		<description>RealObjects PDFreactor Technical FAQs</description>
		<language>en</language>
		<image>
			<title>RealObjects PDFreactor Technical FAQs</title>
			<url>http://www.realobjects.com/fileadmin/images/logo_company/realobjects_small.gif</url>
			<link>http://www.realobjects.com/</link>
			<width>130</width>
			<height>14</height>
			<description>RealObjects PDFreactor Technical FAQs</description>
		</image>
		<generator>TYPO3 - get.content.right</generator>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		
		
		
		<lastBuildDate>Wed, 20 Jul 2011 17:01:00 +0200</lastBuildDate>
		
		
		<item>
			<title>2.9 How can PDFreactor connect to a server using HTTPS?</title>
			<link>http://www.realobjects.com/support/pdfreactor/faqs/technical/faq/archive/2011/july/20/article/29-how-can-pdfreactor-connect-to-a-server-using-https/</link>
			<description>When converting documents, that are only accessible via HTTPS, it may be necessary to import the...</description>
			<content:encoded><![CDATA[<p>When converting documents, that are only accessible via HTTPS, it may be necessary to import the server certificates into Java. Please use the following steps (on Windows, on Linux equivalent):</p><ol style="list-style-type: lower-alpha"><li>Exporting the certificate<br />&nbsp;<ul style="list-style-type: disc"><li>If you haven't done so before, accept the certificate when loading a document from your server in your browser.</li></ul><p>In Internet Explorer:</p><ul style="list-style-type: disc"><li>Under &quot;Extras/Internet Options/Content/Certificates&quot;, select the certificate and click &quot;Export&quot;</li><li>In the export wizard, choose one of the &quot;X.509&quot; options (the X.509 DER format is recommended) and a file name of your choice.</li></ul><p>In Firefox:</p><ul style="list-style-type: disc"><li>The certificates can be found in &quot;Options/Options/Advanced/Encryption&quot;.</li><li>After clicking on &quot;View certificates&quot;, select the certificate in the list and click on &quot;Export&quot;.<br />&nbsp;</li></ul></li><li>Creating the Java keystore<br />&nbsp;<ul style="list-style-type: disc"><li>The required command line tool &quot;keytool&quot; can be found in the &quot;bin&quot; folder of your Java installation.</li><li>The call to this tool should look like this:<p>keytool -import -alias pdfcert -file c:pdfcert.cer -noprompt -keystore c:pdfcert.keystore -v -storepass 123456</p><p>Please adjust paths and file names according to your environment:</p><p>&quot;alias&quot; can be chosen freely</p><p>&quot;file&quot; is the certificate from step a.</p><p>&quot;keystore&quot; is the keystore file to be created &quot;storepass&quot; is the password of the keystore file (can be chosen freely, 6 characters minimum)</p></li></ul></li><li>Passing the keystore file as a parameter when starting the Java VM for PDFreactor:</li></ol><p style="margin-left: 60pt">Start the Java VM with the parameter &quot;-Djavax.net.ssl.trustStore=c:pdfcert.keystore&quot; (replace &quot;c:pdfcert.keystore&quot; with the path and name of your keystore file).</p><p>After following these steps, converting documents from this server using HTTPS should work correctly. If necessary this steps can be repeated for other servers.</p>]]></content:encoded>
			<category>Integration</category>
			
			
			<pubDate>Wed, 20 Jul 2011 17:01:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title>2.8 How do I set the license key in my PDFreactor application?</title>
			<link>http://www.realobjects.com/support/pdfreactor/faqs/technical/faq/archive/2009/july/21/article/28-how-do-i-set-the-license-key-in-my-pdfreactor-application/</link>
			<description>Using PDFreactor in a Java application, or using the webservice with one of the wrapper APIs the...</description>
			<content:encoded><![CDATA[<p>Using PDFreactor in a Java application, or using the webservice with one of the wrapper APIs the license key is set as a string through the API method setLicenseKey(). Just paste the content of &quot;licensekey.xml&quot; as the only parameter. The license key has to be set before rendering the document.</p><p><strong>Note: </strong>For better readability the license keys of these samples have been arranged over multiple lines. However this not neccessary for the code to function. Under normal circumstances the whole string would be in one line.</p><p><br clear="none"/></p><p><strong>Example for Integration in a Java application:</strong></p><p class="codeblock">PDFreactor pdfReactor = new PDFreactor();<br />pdfReactor.setLicenseKey(&quot;&lt;license&gt;&lt;licensee&gt;&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;+ &quot;&lt;name&gt;RealObjects GmbH&lt;/name&gt;&lt;/licensee&gt;&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;+ &quot;&lt;product&gt;PDFreactor&lt;/product&gt;&lt;majorversion&gt;4&lt;/majorversion&gt;&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;+ &quot;&lt;minorversion&gt;0&lt;/minorversion&gt;&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;+ &quot;&lt;licensetype&gt;Evaluation&lt;/licensetype&gt;&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;+ &quot;&lt;expirationdate&gt;2009-12-31&lt;/expirationdate&gt;&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;+ &quot;&lt;signatureinformation&gt;&lt;signdate&gt;2010-03-23 17:58&lt;/signdate&gt;&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;+ &quot;&lt;signature&gt;302c02141c6f637afc13e0e78134e77d68925a05b789a18202140&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;+ &quot;cd3002988cbb155aafb351211840df76dd7781a&lt;/signature&gt;&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;+ &quot;&lt;checksum&gt;1307&lt;/checksum&gt;&lt;/signatureinformation&gt;&lt;/license&gt;&quot;);<br />pdfReactor.renderDocument(inputSource, outputStream);</p><p><strong>Example for PHP wrapper:</strong></p><p class="codeblock">$pdfreactor = new PDFreactor();<br clear="none"/>$pdfreactor-&gt;setLicenseKey(&quot;&lt;license&gt;&lt;licensee&gt;&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;.&quot;&lt;name&gt;RealObjects GmbH&lt;/name&gt;&lt;/licensee&gt;&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;.&quot;&lt;product&gt;PDFreactor&lt;/product&gt;&lt;majorversion&gt;4&lt;/majorversion&gt;&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;.&quot;&lt;minorversion&gt;0&lt;/minorversion&gt;&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;.&quot;&lt;licensetype&gt;Evaluation&lt;/licensetype&gt;&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;.&quot;&lt;expirationdate&gt;2009-12-31&lt;/expirationdate&gt;&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;.&quot;&lt;signatureinformation&gt;&lt;signdate&gt;2010-03-23 17:58&lt;/signdate&gt;&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;.&quot;&lt;signature&gt;302c02141c6f637afc13e0e78134e77d68925a05b789a18202140&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;.&quot;cd3002988cbb155aafb351211840df76dd7781a&lt;/signature&gt;&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;.&quot;&lt;checksum&gt;1307&lt;/checksum&gt;&lt;/signatureinformation&gt;&lt;/license&gt;&quot;); <br clear="none"/>$result = $pdfreactor-&gt;renderDocumentFromContent($content);</p><p><strong>Note: </strong>When using the commandline interface for evaluation purposes just copy the licensekey.xml to the same directory as pdfreactor.jar.</p>]]></content:encoded>
			<category>Integration</category>
			<category>Integration</category>
			
			
			<pubDate>Tue, 21 Jul 2009 17:35:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title>3.5 Are there any options to set the resolution of the generated PDFs?</title>
			<link>http://www.realobjects.com/support/pdfreactor/faqs/technical/faq/archive/2008/november/21/article/36-are-there-any-options-to-set-the-resolution-of-the-generated-pdfs/</link>
			<description>PDFreactor does not create documents with a fixed resolution. Images are embedded at their original...</description>
			<content:encoded><![CDATA[<p>PDFreactor does not create documents with a fixed resolution. Images are embedded at their original resolution while text is stored as references to the glyphs in the true type font, which makes it resolution independent. Therefore there are no &quot;resolution&quot; settings.</p>]]></content:encoded>
			<category>PDF Output</category>
			
			
			<pubDate>Fri, 21 Nov 2008 07:33:00 +0100</pubDate>
			
		</item>
		
		<item>
			<title>2.7 Can PDFreactor access documents form servers that require POST-data or cookies?</title>
			<link>http://www.realobjects.com/support/pdfreactor/faqs/technical/faq/archive/2007/june/01/article/27-can-pdfreactor-access-documents-form-servers-that-require-post-data-or-cookies/</link>
			<description>To set cookies and post-data in your java program that uses PDFreactor you can use a URLConnection...</description>
			<content:encoded><![CDATA[<ul><li><p>To set cookies and post-data in your java program that uses PDFreactor you can use a URLConnection object:</p><div class="codeblock"><span class="pre">URL url = new URL(...URL...);<br />URLConnection urlConnection = url.openConnection();<br />urlConnection.setUseCaches(false);<br /><br />urlConnection.setRequestProperty(key, value); // sets cookies<br /><br />urlConnection.setDoOutput(true);<br />PrintWriter printWriter = new PrintWriter(urlConnection.getOutputStream());<br />printWriter.println(&quot;key=value&quot;); // sets POST-data<br />printWriter.close();<br /><br />urlConnection.connect();<br />InputSource inputSouce = new InputSource(urlConnection.getInputStream());<br />inputSouce.setSystemId(urlConnection.getURL().toString());<br />FileOutputStream fileOutputStream= new FileOutputStream(&quot;...file...&quot;);<br />(new PDFreactor()).renderDocument(inputSouce, new PDFreactorConfiguration(), fileOutputStream);<br />out.fileOutputStream();<br /></span></div></li><li><p>To be able to receive cookies from a server and store them like a browser you can use the free (LGPL) Java library &quot;HTTPClient&quot; by Innovation GmbH. For more information see <a href="http://www.innovation.ch/java/HTTPClient/" target="_blank" >www.innovation.ch/java/HTTPClient/</a> . It can replace the built-in http client of Java and so allow Java programs to receive and store cookies without changing the code. You can get the file from <a href="http://www.innovation.ch/java/HTTPClient/HTTPClient.zip" target="_blank" >www.innovation.ch/java/HTTPClient/HTTPClient.zip</a> . To use it set these 2 Java parameters: -Djava.protocol.handler.pkgs=HTTPClient -Xbootclasspath/a:*PATH*/HTTPClient.zip (replace *PATH* with your path to HTTPClient.zip)</p></li></ul>]]></content:encoded>
			<category>Integration</category>
			
			
			<pubDate>Fri, 01 Jun 2007 12:30:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title>2.6 How can I render large documents when using the PDFreactor web service and one of the available wrapper APIs?</title>
			<link>http://www.realobjects.com/support/pdfreactor/faqs/technical/faq/archive/2007/march/19/article/26-how-can-i-render-large-documents-when-using-the-net-or-php-api/</link>
			<description>By default the PDFreactor webservice, which is used by the .NET and PHP API, has 512mb of memory...</description>
			<content:encoded><![CDATA[<p>&nbsp;</p>]]></content:encoded>
			<category>Integration</category>
			
			
			<pubDate>Mon, 19 Mar 2007 17:26:00 +0100</pubDate>
			
		</item>
		
		<item>
			<title>2.5 Which modes of input does PDFreactor accept?</title>
			<link>http://www.realobjects.com/support/pdfreactor/faqs/technical/faq/archive/2006/july/05/article/25-which-modes-of-input-does-pdfreactor-accept/</link>
			<description>PDFreactor accepts a Java XML InputSource as mode of input. Moreover it is possible to render a...</description>
			<content:encoded><![CDATA[<p>PDFreactor accepts a Java XML InputSource as mode of input. Moreover it is possible to render a document directly from an HTML string or from a URL.</p>]]></content:encoded>
			<category>Integration</category>
			
			
			<pubDate>Wed, 05 Jul 2006 14:26:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title>4.8 Which fonts are supported?</title>
			<link>http://www.realobjects.com/support/pdfreactor/faqs/technical/faq/archive/2006/july/05/article/49-which-fonts-are-supported/</link>
			<description>PDFreactor supports all TrueType Fonts (TTF). The fonts can be automatically embedded into the...</description>
			<content:encoded><![CDATA[<p>PDFreactor supports all TrueType Fonts (TTF). The fonts can be automatically embedded into the generated PDF documents.<p>&nbsp;</p></p>]]></content:encoded>
			<category>Miscellaneous</category>
			
			
			<pubDate>Wed, 05 Jul 2006 14:25:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title>4.7 Which CSS versions are supported?</title>
			<link>http://www.realobjects.com/support/pdfreactor/faqs/technical/faq/archive/2006/july/05/article/48-which-css-versions-are-supported/</link>
			<description>The CSS  support in PDFreactor is based on CSS 2.1 and parts of CSS 3. You will also find a...</description>
			<content:encoded><![CDATA[<p>The CSS&nbsp; support in PDFreactor is based on CSS 2.1 and parts of CSS 3. You will also find a table of <a href="fileadmin/products/pdfreactor/doc_html/manual/apa.html" target="_blank" >CSS properties</a> supported by PDFreactor.<p>&nbsp;</p></p>]]></content:encoded>
			<category>Miscellaneous</category>
			
			
			<pubDate>Wed, 05 Jul 2006 14:23:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title>4.6 Which HTML versions are supported?</title>
			<link>http://www.realobjects.com/support/pdfreactor/faqs/technical/faq/archive/2006/july/05/article/47-which-html-versions-are-supported/</link>
			<description>PDFreactor actually supports any kind of XML document natively, e.g. XHTML 1.0. If your documents...</description>
			<content:encoded><![CDATA[<p>PDFreactor actually supports any kind of XML document natively, e.g. XHTML 1.0. If your documents are not XHTML (e.g. HTML 4.0), they are transparently loaded using a built-in automatic clean-up process.<p>To this regard, we recommend taking a look at the &quot;Legacy HTML Code Sample&quot; sample which is part of the PDFreactor sample package. This sample demonstrates how PDFreactor easily converts an HTML 4.0 document into PDF.</p><p>&nbsp;</p></p>]]></content:encoded>
			<category>Miscellaneous</category>
			
			
			<pubDate>Wed, 05 Jul 2006 14:21:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title>2.4 Can I run PDFreactor on a system without a graphical environment such as X11 oder Xfvb?</title>
			<link>http://www.realobjects.com/support/pdfreactor/faqs/technical/faq/archive/2006/july/05/article/24-can-i-run-pdfreactor-on-a-system-without-a-graphical-environment-such-as-x11-oder-xfvb/</link>
			<description>To run PDFreactor on a system without a graphical environment you should enable headless mode in...</description>
			<content:encoded><![CDATA[To run PDFreactor on a system without a graphical environment you should enable headless mode in java. To do so, you should pass the argument &quot;-Djava.awt.headless=true&quot; to the JRE which will run PDFreactor. Example:<p><span class="pre">java -Djava.awt.headless=true -cp ..\..\lib\pdfreactor.jar;. SimpleSample ..\din\pagestyles\header-footer.html header-footer.pdf</span></p><p> </p>]]></content:encoded>
			<category>Integration</category>
			
			
			<pubDate>Wed, 05 Jul 2006 14:17:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title>4.5 Does CSS support paged media?</title>
			<link>http://www.realobjects.com/support/pdfreactor/faqs/technical/faq/archive/2006/may/09/article/45-does-css-support-pagination-respectively-paged-media/</link>
			<description>Yes, PDFreactor gives you complete control over page media specific properties such as page breaks,...</description>
			<content:encoded><![CDATA[<p>Yes, PDFreactor gives you complete control over page media specific properties such as page breaks, footers &amp; headers, page counters and page numbers using CSS (see <a href="http://www.w3.org/TR/css3-page/" target="_blank" >CSS specification</a>). For more details about how to use CSS to control the layout of your pages, please see the chapter CSS for Paged Media in the <a href="fileadmin/products/pdfreactor/doc_html/manual/ch05.html" >PDFreactor Manual</a>.</p>]]></content:encoded>
			<category>Miscellaneous</category>
			
			
			<pubDate>Tue, 09 May 2006 17:57:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title>2.3 What is simplest way to integrate PDFreactor using the Java API?</title>
			<link>http://www.realobjects.com/support/pdfreactor/faqs/technical/faq/archive/2006/may/09/article/23-what-is-simplest-way-to-integrate-pdfreactor-using-the-java-api/</link>
			<description>PDFreactor can be integrated with just these few lines of Java code:InputSource inputSource = ...;...</description>
			<content:encoded><![CDATA[<p>PDFreactor can be integrated with just these few lines of Java code:<p class="codeblock"><span class="pre">InputSource inputSource = ...; //e.g. new InputSource(&quot;http://www.realobjects.com/&quot;);<br />OutputStream outputStream = ...; //e.g. new FileOutputStream(&quot;realobjects.pdf&quot;);<br />PDFreactor pdfReactor = new PDFreactor();<br />pdfReactor.renderDocument(inputSource, new PDFreactorConfiguration(), outputStream);</span></p><p>See also the chapter <a href="fileadmin/products/pdfreactor/doc_html/manual/ch02s01.html" target="_blank" >Introducing the Java lib</a> in the PDFreactor Manual.</p><p>&nbsp;</p></p>]]></content:encoded>
			<category>Integration</category>
			
			
			<pubDate>Tue, 09 May 2006 17:49:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title>4.4 Which PDF version does PDFreactor support?</title>
			<link>http://www.realobjects.com/support/pdfreactor/faqs/technical/faq/archive/2006/may/09/article/44-which-pdf-version-does-pdfreactor-support/</link>
			<description>The PDF version of PDF files created with PDFreactor is 1.4. PDF/A documents created with...</description>
			<content:encoded><![CDATA[<p>The PDF version of PDF files created with PDFreactor is 1.4. PDF/A documents created with PDFreactor are conformant to the PDF/A-1a specification.</p>]]></content:encoded>
			<category>Miscellaneous</category>
			
			
			<pubDate>Tue, 09 May 2006 16:07:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title>3.4 How can I number my pages?</title>
			<link>http://www.realobjects.com/support/pdfreactor/faqs/technical/faq/archive/2006/may/09/article/34-how-can-i-number-my-pages/</link>
			<description>You can number your pages using CSS counters and generated content to place the page numbers in the...</description>
			<content:encoded><![CDATA[<p class="tightenable">You can number your pages using CSS counters and generated content to place the page numbers in the page margin boxes of every page. The code below shows how to place a simple page counter in the footer of every page:</p><p class="tightenable bottom codeblock"><span class="pre">@page {<br />&nbsp;&nbsp;&nbsp; @bottom {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; content: counter(page) &quot; / &quot; counter(pages);<br />&nbsp;&nbsp;&nbsp; }<br />}</span></p><p class="tightenable">For more information, please see the chapter <a href="fileadmin/products/pdfreactor/doc_html/manual/ch06s02.html" target="_blank" >Page Numbers</a> of the PDFreactor Manual.</p><p>&nbsp;</p>]]></content:encoded>
			<category>PDF Output</category>
			
			
			<pubDate>Tue, 09 May 2006 13:06:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title>3.3 How can I place a footer?</title>
			<link>http://www.realobjects.com/support/pdfreactor/faqs/technical/faq/archive/2006/may/09/article/33-how-can-i-place-a-footer/</link>
			<description>You can set a footer using generated content to write into a page margin box at the bottom of the...</description>
			<content:encoded><![CDATA[<p class="tightenable">You can set a footer using generated content to write into a page margin box at the bottom of the page box. The content you set in a page margin box will appear on every page, unless specified otherwise via CSS.</p><p class="tightenable">The content property can contain text, textual content or page numbers. For example, this code will write the content &quot;RealObjects GmbH&quot; in the bottom center margin box of every page:</p><p class="tightenable bottom codeblock"><span class="pre">@page {<br />&nbsp;&nbsp;&nbsp; @bottom-center{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; font-family: Times New Roman, serif; <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; font-size: 0.5cm; text-align: center; <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; content: &quot;RealObjects GmbH&quot;; <br />&nbsp;&nbsp;&nbsp; }<br />}</span></p><p>&nbsp;</p>]]></content:encoded>
			<category>PDF Output</category>
			
			
			<pubDate>Tue, 09 May 2006 13:04:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title>3.2 How can I avoid a page Break?</title>
			<link>http://www.realobjects.com/support/pdfreactor/faqs/technical/faq/archive/2006/may/09/article/32-how-can-i-avoid-a-page-break/</link>
			<description>You can avoid page breaks by using the corresponding CSS properties. The property...</description>
			<content:encoded><![CDATA[<p class="tightenable">You can avoid page breaks by using the corresponding CSS properties. The property &quot;page-break-inside: avoid;&quot; will avoid page breaks within an element, if possible. Conversely, the properties &quot;page-break-before: avoid;&quot; and &quot;page-breaks-after: avoid;&quot; will avoid page breaks before respectively after the elements they are specified for. In this example, no page break will be inserted after a table:</p><p class="tightenable codeblock"><span class="pre">table { page-break-after: avoid }</span></p><p class="tightenable">For more information, please see the chapter <a href="fileadmin/products/pdfreactor/doc_html/manual/ch05s04.html" target="_blank" >Page Breaks</a> in the PDFreactor manual.</p><p>&nbsp;</p>]]></content:encoded>
			<category>PDF Output</category>
			
			
			<pubDate>Tue, 09 May 2006 13:02:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title>3.1 How can I place a page break?</title>
			<link>http://www.realobjects.com/support/pdfreactor/faqs/technical/faq/archive/2006/may/09/article/31-how-can-i-place-a-page-break/</link>
			<description>You can place a page break using one of the CSS properties &quot;page-break-before: always;&quot; or...</description>
			<content:encoded><![CDATA[<p class="tightenable">You can place a page break using one of the CSS properties &quot;page-break-before: always;&quot; or &quot;page-break-after: always;&quot;. The former property will always cause a page break before the element it is applied to, while the latter will cause it after the element. For example, this code will enforce a page break after the div with the class selector &quot;1&quot;, no matter if one is required or not:</p><p class="tightenable codeblock"><span class="pre">div.1 { page-break-after: always; }</span></p><p class="tightenable">For further reference, please see the chapter <a href="fileadmin/products/pdfreactor/doc_html/manual/ch05s04.html" target="_blank" >Page Breaks</a> in the PDFreactor manual.</p><p>&nbsp;</p>]]></content:encoded>
			<category>PDF Output</category>
			
			
			<pubDate>Tue, 09 May 2006 12:54:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title>4.2 Does PDFreactor support printing of any legacy HTML pages?</title>
			<link>http://www.realobjects.com/support/pdfreactor/faqs/technical/faq/archive/2006/may/09/article/42-does-pdfreactor-support-printing-of-any-legacy-html-pages/</link>
			<description>In general, PDFreactor was designed for the printing of valid XHTML and XML content using CSS to...</description>
			<content:encoded><![CDATA[In general, PDFreactor was designed for the printing of valid XHTML and XML content using CSS to control the layout. PDFreactor does provide clean-up processes which enable it to convert invalid legacy HTML code to valid XHTML before printing. Thus, you can even use PDFreactor to print legacy HTML code, as long as the clean-up process is able to handle it. However, some legacy pages contain errors which can not be handled by the clean-up process.<p> </p>]]></content:encoded>
			<category>Miscellaneous</category>
			
			
			<pubDate>Tue, 09 May 2006 11:58:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title>4.3 Does PDFreactor process any page which is viewable in a browser?</title>
			<link>http://www.realobjects.com/support/pdfreactor/faqs/technical/faq/archive/2006/may/09/article/43-does-pdfreactor-process-any-page-which-is-viewable-in-a-browser/</link>
			<description>No. If a page is viewable in a browser, this does not automatically mean that it can be rendered by...</description>
			<content:encoded><![CDATA[No. If a page is viewable in a browser, this does not automatically mean that it can be rendered by PDFreactor. Most web browsers are designed to display any type of legacy HTML code, including invalid and broken pages.<p>This often causes the display of a page to diverge across browsers or from the way the standard describes it. Using PDFreactor, the page will be rendered conforming to the HTML standard unless it is invalid XHTML or XML. In this case, it will first be handled by the clean-up process, which may yield different results depending on the type of errors on the page.</p><p> </p>]]></content:encoded>
			<category>Miscellaneous</category>
			
			
			<pubDate>Tue, 09 May 2006 11:58:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title>4.1 What is the PDFreactor GUI Demo tool for?</title>
			<link>http://www.realobjects.com/support/pdfreactor/faqs/technical/faq/archive/2006/april/26/article/41-what-is-the-pdfreactor-gui-demo-application-for/</link>
			<description>The PDFreactor GUI Demo tool, which is installed on your machine through the PDFreactor installers,...</description>
			<content:encoded><![CDATA[<p>The PDFreactor GUI Demo tool, which is installed on your machine through the PDFreactor installers, is for testing and demonstration purposes only. It allows you to easily and quickly experience PDFreactor's XML and XHTML/HTML printing capabilities.<p>The GUI Demo tool offers a browser like WYSIWYG view as well as a single and double page PDF preview. You can create each PDF document on-the-fly and save it to your computer. The document's source code and inline style sheets (used in some of the sample documents) can be modified in order to experience the styling-based processing model of CSS. Style sheets and advanced properties of all documents are exposed in separate views as well.</p><p>DeD</p></p>]]></content:encoded>
			<category>Miscellaneous</category>
			
			
			<pubDate>Wed, 26 Apr 2006 10:19:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title>1.5 Is PDFreactor a desktop application for end-users to create PDFs from any kind of documents?</title>
			<link>http://www.realobjects.com/support/pdfreactor/faqs/technical/faq/archive/2006/april/26/article/15-is-pdfreactor-a-desktop-application-for-end-users-to-create-pdfs-from-any-kind-of-documents/</link>
			<description>No, PDFreactor is a tool designed for the automatic and high-performant creation of PDF documents...</description>
			<content:encoded><![CDATA[<p>No, PDFreactor is a tool designed for the automatic and high-performant creation of PDF documents on servers. <p>&nbsp;</p></p>]]></content:encoded>
			<category>General</category>
			
			
			<pubDate>Wed, 26 Apr 2006 10:18:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title>1.6 Is PDFreactor a replacement for Adobe Acrobat or similar desktop software tools?</title>
			<link>http://www.realobjects.com/support/pdfreactor/faqs/technical/faq/archive/2006/april/26/article/16-is-pdfreactor-a-replacement-for-adobe-acrobat-or-similar-desktop-software-tools/</link>
			<description>No, PDFreactor is no replacement for Adobe Acrobat or similar desktop software tools, as PDFreactor...</description>
			<content:encoded><![CDATA[No, PDFreactor is no replacement for Adobe Acrobat or similar desktop software tools, as PDFreactor requires a larger host application (e.g. ERP, database, e-Commerce) on a Web server in which it is integrated. As part of the host application's functionality PDFreactor can be used to stream PDF documents - generated from XML or XHTML/HTML data - over the Web.<p> </p>]]></content:encoded>
			<category>General</category>
			
			
			<pubDate>Wed, 26 Apr 2006 10:18:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title>1.4 Who typically uses PDFreactor?</title>
			<link>http://www.realobjects.com/support/pdfreactor/faqs/technical/faq/archive/2006/april/26/article/14-who-typically-uses-pdfreactor/</link>
			<description>PDFreactor is a pure development tool, designed to be used by software architects, developers or...</description>
			<content:encoded><![CDATA[PDFreactor is a pure development tool, designed to be used by software architects, developers or integrators having their focus on Java, Servlet, EJB or CGI programming. It is not a tool for end-users looking for a PDF creation software, which shall be installed as a desktop application.<p> </p>]]></content:encoded>
			<category>General</category>
			
			
			<pubDate>Wed, 26 Apr 2006 10:17:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title>2.2 How is PDFreactor integrated?</title>
			<link>http://www.realobjects.com/support/pdfreactor/faqs/technical/faq/archive/2006/april/26/article/22-how-is-pdfreactor-integrated/</link>
			<description>PDFreactor is provided as a single Java library. Being a integrator or developer with focus on...</description>
			<content:encoded><![CDATA[<p>PDFreactor is provided as a single Java library. Being a integrator or developer with focus on Java, Servlet, EJB or CGI programming, you can either use the powerful Command Line Interface or easily integrate PDFreactor into your Servlet, EJB or Web Service by using the comprehensive <a href="fileadmin/products/pdfreactor/doc/apidocs/index.html" target="_blank" >Java API</a>. For more information see also the integration manual which is available in <a href="fileadmin/products/pdfreactor/doc/manual.pdf" target="_blank" >PDF</a> and <a href="fileadmin/products/pdfreactor/doc_html/manual/index.html" target="_blank" >HTML</a> format.<p>In the simplest case you only have to specify an input and output file to generate a PDF document. It is also possible to use the operating system's standard input (stdin) and output (stdout) streams to read and write content. This is especially useful when using PDFreactor with server side scripting languages such as PHP, ASP.NET, Perl etc.</p><p>&nbsp;</p></p>]]></content:encoded>
			<category>Integration</category>
			
			
			<pubDate>Wed, 26 Apr 2006 10:16:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title>1.3 How does PDFreactor work?</title>
			<link>http://www.realobjects.com/support/pdfreactor/faqs/technical/faq/archive/2006/april/26/article/13-how-does-pdfreactor-work/</link>
			<description>For more information on how PDFreactor works, please review the section How it works? </description>
			<content:encoded><![CDATA[For more information on how PDFreactor works, please review the section <a href="products/pdfreactor/technology/how-it-works/" target="_top" >How it works</a>?<p> </p>]]></content:encoded>
			<category>General</category>
			
			
			<pubDate>Wed, 26 Apr 2006 10:15:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title>1.2 What is the advantage of PDFreactor?</title>
			<link>http://www.realobjects.com/support/pdfreactor/faqs/technical/faq/archive/2006/april/26/article/12-what-is-the-advantage-of-pdfreactor/</link>
			<description>PDFreactor is a practical choice for publishers software architects and developers looking for a...</description>
			<content:encoded><![CDATA[PDFreactor is a practical choice for publishers software architects and developers looking for a cross-platform, easy to deploy, cost-effective XML and XHTML/HTML printing solution that does not require any XSL-FO skills to quickly achieve great looking results.<p>It enables multi-channel publishing using CSS for styling XML and XHTML/HTML documents to be published in print or on the Web. You have to deal with only one style language. Streaming the output either to print media or over the Web just requires the definition of two media types within the CSS.</p><p>Please note, to achieve the same result with the transformation-based processing model of XSL/XSL-FO, you need two different style sheets in two different style languages. CSS for publishing on the Web, XSL/XSL-FO for publishing in print.</p><p>For more information about the differences between the styling-based processing model of CSS and the transformation-based processing model of XSL/XSL-FO, please review the section <a href="products/pdfreactor/technology/css-vs-xsl/" target="_top" >CSS vs XSL</a>.</p><p> </p>]]></content:encoded>
			<category>General</category>
			
			
			<pubDate>Wed, 26 Apr 2006 10:14:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title>2.1 What is the typical integration scenario for PDFreactor?</title>
			<link>http://www.realobjects.com/support/pdfreactor/faqs/technical/faq/archive/2006/april/26/article/21-what-is-the-typical-integration-scenario-for-pdfreactor/</link>
			<description>Server-side PDF creation using PDFreactor as part of larger host applications (e.g. ERP, database,...</description>
			<content:encoded><![CDATA[<p><span class="faqcontent">Server-side PDF creation using PDFreactor as part of larger host applications (e.g. ERP, database, e-Commerce) on a Java Web application server in order to print or stream PDF documents - generated from XML or XHTML/HTML source - over the Web.</span></p><p> </p>]]></content:encoded>
			<category>Integration</category>
			
			
			<pubDate>Wed, 26 Apr 2006 10:10:00 +0200</pubDate>
			
		</item>
		
		<item>
			<title>1.1 What is PDFreactor?</title>
			<link>http://www.realobjects.com/support/pdfreactor/faqs/technical/faq/archive/2006/april/25/article/11-what-is-pdfreactor/</link>
			<description>RealObjects PDFreactor is a powerful formatting processor for converting XML and XHTML/HTML...</description>
			<content:encoded><![CDATA[<p>RealObjects PDFreactor is a powerful formatting processor for converting XML and XHTML/HTML documents into PDF. It uses Cascading Style Sheets (CSS) to define page layout and styles. The brand new server-side tool enables a great variety of applications in the field of ERP, eCommerce and Electronic Publishing, such as:</p><ul>    <li>Dynamic creation of documents and reports</li>    <li>Integration into business- and publishing-workflows</li>    <li>Multi-channel publishing of content through Web and Print</li>    <li>Invoices, delivery notes and shipping documents on-the-fly</li>    <li>Automatic generation of technical manuals, data sheets, reports and product information</li></ul><p>Since PDFreactor runs on your server, the end-user does not need any software other than a Web browser with a free PDF viewer.</p><p>By implementing the W3C specification for Paged Media and print, PDFreactor provides great control over the paged output via CSS. It is very easy to set page sizes, margins and pagination for specific elements, page headers and footers. Using proprietary configuration and CSS properties, it is possible to set PDF specific information, to generate outlines and links for your documents and even to add meta information about the author or keywords.</p><p> </p>]]></content:encoded>
			<category>General</category>
			
			
			<pubDate>Tue, 25 Apr 2006 17:56:00 +0200</pubDate>
			
		</item>
		
	</channel>
</rss>
<!-- Parsetime: 0ms -->
