<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Dr Flex &#38; Dr LiveCycle</title>
	<atom:link href="http://www.drflex.eu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.drflex.eu</link>
	<description>Latest news from the cabinet</description>
	<lastBuildDate>Fri, 12 Mar 2010 22:27:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>LiveCycle ES2 Guides &#8211; Adding custom validation classes to your model</title>
		<link>http://www.drflex.eu/2010/03/livecycle-es2-guides-adding-custom-validation-classes-to-your-model/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=livecycle-es2-guides-adding-custom-validation-classes-to-your-model</link>
		<comments>http://www.drflex.eu/2010/03/livecycle-es2-guides-adding-custom-validation-classes-to-your-model/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 22:27:51 +0000</pubDate>
		<dc:creator>Waldo Smeets</dc:creator>
				<category><![CDATA[Adobe Flex]]></category>
		<category><![CDATA[LiveCycle Forms ES]]></category>
		<category><![CDATA[LiveCycle Workbench]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.drflex.eu/?p=116</guid>
		<description><![CDATA[The Modeler in LiveCycle ES2 ships with several built-in validation classes, which you can apply to the models properties using the Styles definition. Obviously these standard classes don&#8217;t cover all use cases, especially not validation behavior that is specific to a non-US region for example. One of the cool things about Fiber models is that [...]]]></description>
			<content:encoded><![CDATA[<p>The Modeler in LiveCycle ES2 ships with several built-in validation classes, which you can apply to the models properties using the Styles definition. Obviously these standard classes don&#8217;t cover all use cases, especially not validation behavior that is specific to a non-US region for example. One of the cool things about Fiber models is that you can extend them using custom ActionScript code, so that you can use your custom validation classes in your projects (I plan to write another article on working with custom methods in your model by overwriting the generated value objects).</p>
<p>So, you can add and apply your own validation classes to the model. You just need to refer to your custom class in the Style validation annotation of the property. First, copy the validation class itself into the correct folder of your Workbench project. That&#8217;s also the trickiest part within the LiveCycle Modeler (compared to doing this for the Flash Builder modeler). The FB modeler generates the code into your Flex project folder and you can easily find it, but Workbench doesn&#8217;t generate the code in the directory where all your other projects are located (on Vista/Win7 that is C:\Users\username\Workbench ES2\). I am not exactly sure why, but I think because the model generated classes are mostly temp files that don&#8217;t have to be checked into the server (downside is that you need to backup modifications of custom classes yourself).</p>
<p>That &#8216;temp&#8217; folder that stores all model generated classes is much deeper on your disk drive. On my system it&#8217;s C:\Users\username\AppData\Roaming\Adobe\LiveCycle\ES2\Guides\generated\. Here you find subfolders structured per LiveCycle application. For your project, find the folder where the generated myModel.as and myModel.swf files are located. Consider this folder the &#8216;root&#8217; that is used by the compiler, so this is where yoy copy your custom validator classes to.</p>
<p>The last step is to define the style validation annotations within the property. Basically you&#8217;d define your property like this:</p>
<blockquote><p>&lt;property  type=&#8221;string&#8221;&gt;<br />
&lt;style&gt;<br />
&lt;validation&gt;<br />
&lt;annotation  name=&#8221;ActionScriptValidator&#8221;&gt;<br />
&lt;item  name=&#8221;ValidatorClass&#8221;&gt;mx.validators.SocialSecurityValidator&lt;/item&gt;<br />
&lt;item  name=&#8221;allowedFormatChars&#8221;&gt;&#8221;-()&#8221;&lt;/item&gt;<br />
&lt;/annotation&gt;<br />
&lt;/validation&gt;<br />
&lt;/style&gt;<br />
&lt;/property&gt;</p></blockquote>
<p>The ValidatorClass item defines the class path, and in this case the &#8216;allowedFormatChars&#8217; is one of the parameters that is used by that class. Now make sure that Workbench recompiles your class (just move an entity a few pixels, save and the recompile will hapen). Now your custom validator class is compiled into the model itself and you are ready to use the related properties within your guide!</p>
<p>ps: Workbench will inform you on compilation errors if you made errors in your class.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drflex.eu/2010/03/livecycle-es2-guides-adding-custom-validation-classes-to-your-model/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amsterdam March 16th &#8211; Introduction to LiveCycle ES workshop</title>
		<link>http://www.drflex.eu/2010/02/amsterdam-march-16th-introduction-to-livecycle-es-workshop/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=amsterdam-march-16th-introduction-to-livecycle-es-workshop</link>
		<comments>http://www.drflex.eu/2010/02/amsterdam-march-16th-introduction-to-livecycle-es-workshop/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 19:27:46 +0000</pubDate>
		<dc:creator>Marcel Van Espen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[air]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[LiveCycle ES]]></category>
		<category><![CDATA[PDF]]></category>
		<category><![CDATA[RIA]]></category>
		<category><![CDATA[XDP]]></category>

		<guid isPermaLink="false">http://www.drflex.eu/2010/02/amsterdam-march-16th-introduction-to-livecycle-es-workshop/</guid>
		<description><![CDATA[On Tuesday March 16th from 13:00 to 16:00 we will be hosting an additional session on LiveCycle ES under the hood. No slides, no clickthrough demo&#8217;s&#8230; the real thing. We&#8217;ll build an application that will touch on all of the important features within LiveCycle ES. That means, we will use tool as Flash Builder, Workbench, [...]]]></description>
			<content:encoded><![CDATA[<p>On Tuesday March 16th from 13:00 to 16:00 we will be hosting an additional session on LiveCycle ES under the hood. No slides, no clickthrough demo&#8217;s&#8230; the real thing. We&#8217;ll build an application that will touch on all of the important features within LiveCycle ES. That means, we will use tool as Flash Builder, Workbench, Designer to create an application. You can sit in and watch and come with questions and remarks&#8230;.  Let me know if you want to join. The session is at our office in Amsterdam.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drflex.eu/2010/02/amsterdam-march-16th-introduction-to-livecycle-es-workshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LiveCycle ES2 integrated with MS Sharepoint Server 2007</title>
		<link>http://www.drflex.eu/2010/02/livecycle-es2-integrated-with-ms-sharepoint-server-2007/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=livecycle-es2-integrated-with-ms-sharepoint-server-2007</link>
		<comments>http://www.drflex.eu/2010/02/livecycle-es2-integrated-with-ms-sharepoint-server-2007/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 21:46:31 +0000</pubDate>
		<dc:creator>Marcel Van Espen</dc:creator>
				<category><![CDATA[LiveCycle ES]]></category>
		<category><![CDATA[LiveCycle Output ES]]></category>
		<category><![CDATA[LiveCycle Workbench]]></category>
		<category><![CDATA[adobe livecycle]]></category>
		<category><![CDATA[ECM]]></category>
		<category><![CDATA[PDF]]></category>
		<category><![CDATA[sharepoint]]></category>

		<guid isPermaLink="false">http://www.drflex.eu/2010/02/livecycle-es2-integrated-with-ms-sharepoint-server-2007/</guid>
		<description><![CDATA[Integration scenario with LiveCycle ES2 and MS Sharepoint Server 2007]]></description>
			<content:encoded><![CDATA[<p>Very soon a connector for MS Sharepoint Server will be released. This offers bi-directional integration options to either connect to Sharepoint from a LiveCycle process, or to connect to a LiveCycle service from a Sharepoint document/folder.</p>
<p>I have recorded a demonstration that shows you how to store the result of a forms process in LiveCycle in a Sharepoint folder. I have used a very simple holiday request form that is filled in from the LiveCycle Workspace. After filling it in a static PDF is generated using the Output service and the result is stored into Sharepoint using one of the standard services. Check out the recording on <a href="http://www.vimeo.com/9378807" target="_blank">http://www.vimeo.com/9378807</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.drflex.eu/2010/02/livecycle-es2-integrated-with-ms-sharepoint-server-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building a controlled Twitter solution using Adobe LiveCycle ES</title>
		<link>http://www.drflex.eu/2010/01/building-a-controlled-twitter-solution-using-adobe-livecycle-es-part1/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=building-a-controlled-twitter-solution-using-adobe-livecycle-es-part1</link>
		<comments>http://www.drflex.eu/2010/01/building-a-controlled-twitter-solution-using-adobe-livecycle-es-part1/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 15:47:28 +0000</pubDate>
		<dc:creator>Marcel Van Espen</dc:creator>
				<category><![CDATA[Adobe AIR]]></category>
		<category><![CDATA[Adobe Flex]]></category>
		<category><![CDATA[LiveCycle ES]]></category>
		<category><![CDATA[LiveCycle ES Content Services]]></category>
		<category><![CDATA[LiveCycle Output ES]]></category>
		<category><![CDATA[LiveCycle Process Management ES]]></category>
		<category><![CDATA[LiveCycle Workbench]]></category>

		<guid isPermaLink="false">http://www.drflex.eu/?p=103</guid>
		<description><![CDATA[This is part 1 of a video that demonstrates how you can use LiveCycle ES to build a process and an AIR application to publish tweets to a corporate Twitter account where you have control on what's published or not. In addition, in part 2 you will see how to archive all tweets in a PDF/A format within LiveCycle Content Services.]]></description>
			<content:encoded><![CDATA[<p>Look at these videos that demonstrate how you can use LiveCycle ES to build a process and an AIR application to publish tweets to a corporate Twitter account where you have control on what&#8217;s published or not. Part 1 focuses on building the client with Flash Builder 4 with the LC Service Discovery plugin. In part 2 you will see how to archive all tweets in a PDF/A format within LiveCycle Content Services.</p>
<p>Part1: <a href="http://www.vimeo.com/8886180">http://www.vimeo.com/8886180</a></p>
<p>Part2: <a href="http://www.vimeo.com/8886413">http://www.vimeo.com/8886413</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.drflex.eu/2010/01/building-a-controlled-twitter-solution-using-adobe-livecycle-es-part1/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Change the GDS (Global Document Storage) location of a Production LiveCycle ES System</title>
		<link>http://www.drflex.eu/2009/06/change-the-gds-global-document-storage-location-of-a-production-livecycle-es-system/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=change-the-gds-global-document-storage-location-of-a-production-livecycle-es-system</link>
		<comments>http://www.drflex.eu/2009/06/change-the-gds-global-document-storage-location-of-a-production-livecycle-es-system/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 11:11:20 +0000</pubDate>
		<dc:creator>Bart Vossen</dc:creator>
				<category><![CDATA[LiveCycle ES]]></category>

		<guid isPermaLink="false">http://www.drflex.eu/2009/06/change-the-gds-global-document-storage-location-of-a-production-livecycle-es-system/</guid>
		<description><![CDATA[Important Remark:&#160; Within the LiveCycle Documentation you will find the following on the GDS:&#160; &#160; &#8220;The global document storage (GDS) is a directory used to store long-lived files such as PDF files used within&#160;a process or DSC deployment archives. Long-lived files are a critical part of the overall state of the&#160;LiveCycle ES environment. If some [...]]]></description>
			<content:encoded><![CDATA[<div><b>Important Remark:&nbsp;</b></div>
<div>Within the LiveCycle Documentation you will find the following on the GDS:&nbsp;</div>
<div>&nbsp;</div>
<div>&#8220;The global document storage (GDS) is a directory used to store long-lived files such as PDF files used within&nbsp;a process or DSC deployment archives. Long-lived files are a critical part of the overall state of the&nbsp;LiveCycle ES environment. If some or all long-lived documents are lost or corrupted, the LiveCycle ES&nbsp;server may become unstable. Input documents for asynchronous job invocation are also stored in the GDS&nbsp;and must be available in order to process requests. Therefore, it is important that the GDS is stored on the&nbsp;redundant array of independent disks (RAID) and backed up regularly.&#8221;</div>
<div>&nbsp;</div>
<div>So the GDS is the cornerstone of a LiveCycle system. Changing this location should be carefully executed by product experts. Take a back-up before you start and don&#8217;t try this at home &#8230;</div>
<div>&nbsp;</div>
<div><b>Disease:</b></div>
<div><b></b>For whatever reason you want to change the location of the GDS. As explained above this is possible but should be very carefully executed.</div>
<div>&nbsp;</div>
<div><b>Prescription:</b></div>
<div>Disclaimer: This section will describe the different steps to execute in order to move the location of the GDS. These steps should be considered as a Guideline and not as a by Adobe Supported set of actions. You are encouraged to execute this first in a Test environment before doing this in a Production environment. The different Steps are:</div>
<div>
<ol>
<li>Alert and Ask the End-Users to get out of the LiveCycle Application/Server</li>
<li>Put the LiveCycle Application/Server in &#8216;Operate in safe backup mode&#8217;. In Adminui go to Settings &gt; Core System &gt; Backup Settings &#8211; select the &#8216;Operate in safe backup mode&#8217; and hit the OK button.&nbsp;</li>
<li>Backup the GDS folder</li>
<li>Zip or Tar the GDS folder</li>
<li>Change the location of the GDS folder. In Adminui go to Settings &gt; Core System &gt; Core Configurations and change the location of the GDS Directory. Hit the OK button; you will get a second page and hit the OK button again</li>
<li>Shutdown the LiveCycle Application/Server</li>
<li>Check whether the LiveCycle Application/Server system user has access to the new GDS folder</li>
<li>UnZip or UnTar the files in the new GDS folder</li>
<li>StartUp the LiveCycle Application/Server</li>
<li>Do some basic validations. In Adminui go to Services &gt; Applications and Services and choose Archive Management and Endpoint Management and check visually whether you get the expected information</li>
<li>Deactivate the &#8216;Operate in safe backup mode&#8217;. In Adminui go to Settings &gt; Core System &gt; Backup Settings &#8211; unselect the &#8216;Operate in safe backup mode&#8217; and hit the OK button</li>
</ol>
<p><strong>Tip to stay healthy:</strong><br />Make sure that you have the final location of the GDS available, before you install LiveCycle in a Production environment.&nbsp;</div>
<div>&nbsp;</div>
<div>&nbsp;</div>
]]></content:encoded>
			<wfw:commentRss>http://www.drflex.eu/2009/06/change-the-gds-global-document-storage-location-of-a-production-livecycle-es-system/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>e-Invoicing with Adobe</title>
		<link>http://www.drflex.eu/2009/05/e-invoicing-with-adobe/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=e-invoicing-with-adobe</link>
		<comments>http://www.drflex.eu/2009/05/e-invoicing-with-adobe/#comments</comments>
		<pubDate>Tue, 12 May 2009 21:29:44 +0000</pubDate>
		<dc:creator>Marcel Van Espen</dc:creator>
				<category><![CDATA[LiveCycle ES]]></category>
		<category><![CDATA[LiveCycle Forms ES]]></category>
		<category><![CDATA[LiveCycle Output ES]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[e-Invoice]]></category>
		<category><![CDATA[PDF]]></category>

		<guid isPermaLink="false">http://www.drflex.eu/?p=100</guid>
		<description><![CDATA[This post links to a video with a demonstration on using Adobe as part of your e-Invoicing solution.]]></description>
			<content:encoded><![CDATA[<p>As many people know, e-Invoicing is gaining a lot of traction these days in order to save money. In general many of the solutions use PDF as the format for the electronic invoice. But there is PDF and PDF. We have created a sample electronic Invoice in PDF format that is more then just a digital invoice, and also focuses on the experience of the recipient in addition to the ability to exchange structured data. Have a look at a <a title="Video about e-Invoicing" href="http://www.youtube.com/watch?v=-kjYpqc2vBQ" target="_blank">video that includes a demo</a>. If you would like to <a title="Download e-Invoice Sample" href="https://share.acrobat.com/adc/document.do?docid=d1fe676d-126a-40b3-a681-292f6bcebb09" target="_blank">download the sample </a>and play with it yourself, here it is.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drflex.eu/2009/05/e-invoicing-with-adobe/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Fasten the development of Adobe Interactive Forms with Logica&#8217;s Form-O-Matic</title>
		<link>http://www.drflex.eu/2009/04/fasten-the-development-of-adobe-interactive-forms-with-logicas-form-o-matic/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fasten-the-development-of-adobe-interactive-forms-with-logicas-form-o-matic</link>
		<comments>http://www.drflex.eu/2009/04/fasten-the-development-of-adobe-interactive-forms-with-logicas-form-o-matic/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 15:51:45 +0000</pubDate>
		<dc:creator>Peter Schellemans</dc:creator>
				<category><![CDATA[LiveCycle Designer]]></category>
		<category><![CDATA[LiveCycle Forms ES]]></category>
		<category><![CDATA[Add new tag]]></category>

		<guid isPermaLink="false">http://www.drflex.eu/?p=99</guid>
		<description><![CDATA[A while ago the Adobe Benelux presales team had the pleasure to attend a presentation by Logica, who explained the Form-O-Matic solution. This is a framework which is orginaly built as add-on for SAP Interactive Forms by Adobe, but can be used as well within the standalone LiveCycle Designer on xdp forms. With this framework, [...]]]></description>
			<content:encoded><![CDATA[<p>A while ago the Adobe Benelux presales team had the pleasure to attend a presentation by Logica, who explained the Form-O-Matic solution. This is a framework which is orginaly built as add-on for SAP Interactive Forms by Adobe, but can be used as well within the standalone LiveCycle Designer on xdp forms. With this framework, you can produce interactive forms in an instant with a minimum of technical know-how.</p>
<p>Logica&#8217;s Form-O-Matic is a solution which:<br />
- is smart, because it provides a fast way of developing interactive forms which decrease the likelihood of errors and reduce costs.<br />
- is uniforn, fast and controllable. This is thanks to a unique development method based on the inputting of standard parameters. Doing so the development time is reduced by more than 50%.<br />
- is simple and optimised. Form-O-Matic can be adapted very rapidly to your organisation’s requirements, for example in terms of the house style and design of the form and the naming of each parameter.<br />
- provides simple error detection. By using the debug mode in Form-O-Matic, a single parameter enables all dynamic actions to be displayed in text on a separate screen.</p>
<p>We have seen Form-O-Matic in action, and it can shorten the lead time for development of Interactive Forms, and provide error detection. It reduces the aftercare of the Form, and it is quickly to implement, and easy to use and maintain.</p>
<p>See also the following <a href="https://share.acrobat.com/adc/adc.do?docid=44d1e557-41f2-4419-828a-85e9dcfe0a62">factsheet</a> about Logica&#8217;s Form-O-Matic.</p>
<p>For more information you can reply on this post, or contact Logica directly through erp.nl@logica.com</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drflex.eu/2009/04/fasten-the-development-of-adobe-interactive-forms-with-logicas-form-o-matic/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Working around a &#8220;Turnkey service JBoss for Adobe LiveCycle does not exist&#8221; error</title>
		<link>http://www.drflex.eu/2009/03/turnkey-service-jboss-for-adobe-livecycle-does-not-exist/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=turnkey-service-jboss-for-adobe-livecycle-does-not-exist</link>
		<comments>http://www.drflex.eu/2009/03/turnkey-service-jboss-for-adobe-livecycle-does-not-exist/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 19:07:09 +0000</pubDate>
		<dc:creator>Waldo Smeets</dc:creator>
				<category><![CDATA[Dr LiveCycle Question]]></category>
		<category><![CDATA[installjbossservice]]></category>
		<category><![CDATA[LiveCycle ES]]></category>
		<category><![CDATA[turnkey]]></category>
		<category><![CDATA[windows service]]></category>

		<guid isPermaLink="false">http://www.drflex.eu/?p=98</guid>
		<description><![CDATA[Disease: After installing a new Jboss turnkey instance of Adobe LiveCycle, some people run into an issue when the LiveCycle Configuration Manager is doing it&#8217;s work. At about 40%, the configuration manager might display the following error: Failed on &#8216;Verifying JBoss for Adobe LiveCycle ES service is installed&#8217; Windows turnkey service JBoss for Adobe LiveCycle [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Disease:</strong><br />
After installing a new Jboss turnkey instance of Adobe LiveCycle, some people run into an issue when the LiveCycle Configuration Manager is doing it&#8217;s work. At about 40%, the configuration manager might display the following error:</p>
<p><!--[if gte mso 9]&amp;gt;  Normal 0     false false false  EN-US X-NONE X-NONE              MicrosoftInternetExplorer4              &amp;lt;![endif]--><!--[if gte mso 9]&amp;gt;                                                                                                                                            &amp;lt;![endif]--></p>
<blockquote>
<p class="MsoNormal"><span style="10pt;">Failed on &#8216;Verifying JBoss for Adobe LiveCycle ES service is installed&#8217;<br />
Windows turnkey service JBoss for Adobe LiveCycle ES does not exist</span></p>
</blockquote>
<p>When checking in the Windows Service Panel, indeed there is no such service defined, even though the installer should have created it.  I have not been able to replicate this issue, but it happened to me at a customer site and by searching Google it seems that others have run into it as well.</p>
<p><strong>Prescription:</strong><br />
The <a href="http://www.google.nl/search?q=windows+turnkey+service+JBoss+for+Adobe+LiveCycle+ES+does+not+exist" target="_blank">Google search results</a> tells us that some people forget to set the Java_Home system variable and that you should be using the right version of the JDK. However, this did not seem to be the problem in this case.</p>
<p>Through the <a href="http://help.adobe.com/en_US/livecycle/8.2/installturnkey.pdf" target="_blank">install documentation</a> you can find the steps needed to re-create the JBoss for Adobe LiveCycle ES service (page 62). You can use those to try and create the service &#8216;manually&#8217;. For our install, the problem seemed to be in the [LC_INSTALL_ROOT]\jboss\InstallJBossService.bat script file. Somehow the username / password did not seem to work, whatever we tried it failed. Well, sort off: strangely enought the command prompt output first mentions that there was an error, though still reports that the script was executed succesfully. Still no service created though.</p>
<p>The solution was too simple to come up with: just remove the username / password parameters from the script and execute it. This time the script did not fail and as expected created the service for us. Next thing to do is go into the service panel, select the &#8216;JBoss for Adobe LiveCycle&#8217; service, right click to go to it&#8217;s Properties and in the Log On tab specify Log In As This Account. Then specify the username password (in my case &#8220;.\administrator&#8221; and the password), click OK and you are done.</p>
<p>Now run the LiveCycle Configuration Manager again and most likely it won&#8217;t fail anymore cause of the missing service. This seemed to have overcome our issue.</p>
<p><strong>Tip to stay healthy:</strong><br />
When installing the turnkey solution, it is highly recommended to keep the right documentation at hand: <a href="http://help.adobe.com/en_US/livecycle/8.2/installturnkey.pdf" target="_blank">Installing and Deploying LiveCycle® ES Using Turnkey</a>.</p>
<p>Did you run into this issue as well? Please let us know if this worked for you or if you have additional tips for our readers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drflex.eu/2009/03/turnkey-service-jboss-for-adobe-livecycle-does-not-exist/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using the Belgian eid card for accessing a LiveCycle Rights Management protected document</title>
		<link>http://www.drflex.eu/2009/01/using-the-belgian-eid-card-for-accessing-a-livecycle-rights-management-protected-document/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=using-the-belgian-eid-card-for-accessing-a-livecycle-rights-management-protected-document</link>
		<comments>http://www.drflex.eu/2009/01/using-the-belgian-eid-card-for-accessing-a-livecycle-rights-management-protected-document/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 15:23:18 +0000</pubDate>
		<dc:creator>Peter Schellemans</dc:creator>
				<category><![CDATA[LiveCycle Digital Signatures ES]]></category>
		<category><![CDATA[LiveCycle Rights Management ES]]></category>

		<guid isPermaLink="false">http://www.drflex.eu/?p=97</guid>
		<description><![CDATA[Disease: Typically LiveCycle Rights Management (a.k.a. Policy) protected documents use a userid/password mechanism for authenticating towards the policy server, and consequently open the protected document. A more secure way of authentication can be obtained by using client certificates. A real strong way of authentication can be accomplished when the authentication certificate resides on a smartcard, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Disease:<br />
</strong>Typically LiveCycle Rights Management (a.k.a. Policy) protected documents use a userid/password mechanism for authenticating towards the policy server, and consequently open the protected document. A more secure way of authentication can be obtained by using client certificates. A real strong way of authentication can be accomplished when the authentication certificate resides on a smartcard, protected by a PIN code. The authentication certificate on the Belgian eid card is such an example. How can that be used to authenticate towards a Policy protected document?</p>
<p><strong>Prescription:</strong><br />
To achieve this follow these steps:<br />
1) First of all the authentication certificate must be known/registered/uploaded to the LiveCycle server. Open the adminui &#8211;&gt; Settings &#8211;&gt; Trust Store Management &#8211;&gt; Certificates.<br />
When importing the .cer file, specify that you want to trust the certificate for &#8220;Certificate Authentication&#8221;, and provide an alias.</p>
<p>2) Next this certificate must be mapped to an existing user in LiveCycle.<br />
Open the adminui &#8211;&gt; Settings &#8211;&gt; User Management &#8211;&gt; Configuration &#8211;&gt; Certificate mapping.<br />
The mapping between a certificate and a user is done for a defined alias, and is accomplished by mapping a certificate attribute (Mail, CN, DN,&#8230; ) to a user property (Full Name, Given Name, Mail, login ID, &#8230;).</p>
<p>In the case of the Belgian eid card the CN on the authentication certificate contains also the word &#8220;Authentication&#8221;. In my case my CN = Peter Schellemans (Authentication). So in order to get a working certificate mapping towards an existing user, make sure you have a user with a similar Full Name. In my case I have a user (adminui &#8211;&gt; Settings &#8211;&gt; User Management &#8211;&gt; Users and Groups) with First Name = Peter, Last Name = Schellemans (Authentication).</p>
<p>3) Next add this user as part of your Policy. When opening the policy protected document you will now get the choice between userid/password authentication and client certificate authentication.</p>
<p><strong>Tip to stay healthy:</strong><br />
If you want a higher level of security when authenticating towards a policy protected document, Adobe LiveCycle allows you to map certificates towards users, used in a policy definition.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drflex.eu/2009/01/using-the-belgian-eid-card-for-accessing-a-livecycle-rights-management-protected-document/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Accessing MS-Office (custom) properties from LiveCycle ES processes</title>
		<link>http://www.drflex.eu/2008/12/accessing-ms-office-custom-properties-from-livecycle-es-processes/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=accessing-ms-office-custom-properties-from-livecycle-es-processes</link>
		<comments>http://www.drflex.eu/2008/12/accessing-ms-office-custom-properties-from-livecycle-es-processes/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 19:45:43 +0000</pubDate>
		<dc:creator>Marcel Van Espen</dc:creator>
				<category><![CDATA[LiveCycle ES PDF generation]]></category>
		<category><![CDATA[LiveCycle Workbench]]></category>
		<category><![CDATA[Metadata]]></category>
		<category><![CDATA[MS-Office]]></category>
		<category><![CDATA[XMP]]></category>

		<guid isPermaLink="false">http://www.drflex.eu/?p=94</guid>
		<description><![CDATA[This is a small example on how to leverage metadata that has been entered by Office users within LiveCycle ES processes. All based on standard available services. An example is included.]]></description>
			<content:encoded><![CDATA[<p>You probably know the case, you want to convert a file to PDF and add a fax page so you can send it to a customer using your fax-server, or you just want to add a coverpage so you can archive the file in a effective way and have all the metadata nicely grouped on that coverpage.</p>
<p>There are simple ways to let LiveCycle ES take care of that process for you. Below a short explanation of some of the available services that are relevant in this context.</p>
<p>Within LiveCycle Workbench ES, one of the services in the common category that you can use is &#8220;<em>Export XMP</em>&#8220;. This service will extract all the available metadata from a PDF document. If you have converted a MS-Office document to a PDF document, you will be surprised what metadata is also converted. All these properties are now accessible using the service above. Here is a screenshot of some custom properties in a Word document.</p>
<p>Result of the Export XMP service is an XML structure that you can query. For instance, if you want to know what&#8217;s in some of the custom metadata fields, you can check this file. Here is a sample of the result of an Export XMP service.</p>
<p><em>&lt;?xpacket begin=&#8221;ï»¿&#8221; id=&#8221;W5M0MpCehiHzreSzNTczkc9d&#8221;?&gt;<br />
&lt;x:xmpmeta xmlns:x=&#8221;adobe:ns:meta/&#8221; x:xmptk=&#8221;Adobe XMP Core 4.2-jc015 52.349034, 2008 Jun 20 00:30:39-PDT (debug)&#8221;&gt;<br />
&lt;rdf:RDF xmlns:rdf=&#8221;</em><a href="http://www.w3.org/1999/02/22-rdf-syntax-ns"><em>http://www.w3.org/1999/02/22-rdf-syntax-ns</em></a><em>#&#8221;&gt;<br />
&lt;rdf:Description rdf:about=&#8221;"<br />
xmlns:xmp=&#8221;</em><a href="http://ns.adobe.com/xap/1.0/"><em>http://ns.adobe.com/xap/1.0/</em></a><em>&#8220;&gt;<br />
&lt;xmp:CreateDate&gt;2008-12-23T09:45:28+01:00&lt;/xmp:CreateDate&gt;<br />
&lt;xmp:CreatorTool&gt;Acrobat PDFMaker 9.0 for Word&lt;/xmp:CreatorTool&gt;<br />
&lt;xmp:ModifyDate&gt;2008-12-23T09:45:28+01:00&lt;/xmp:ModifyDate&gt;<br />
&lt;xmp:MetadataDate&gt;2008-12-23T09:45:28+01:00&lt;/xmp:MetadataDate&gt;<br />
&lt;/rdf:Description&gt;<br />
&lt;rdf:Description rdf:about=&#8221;"<br />
xmlns:pdf=&#8221;</em><a href="http://ns.adobe.com/pdf/1.3/"><em>http://ns.adobe.com/pdf/1.3/</em></a><em>&#8220;&gt;<br />
&lt;pdf:Producer&gt;Acrobat Distiller 9.0.0 (Windows)&lt;/pdf:Producer&gt;<br />
&lt;pdf:Keywords&gt;&#8221;PDF, Metadata&#8221;&lt;/pdf:Keywords&gt;<br />
&lt;/rdf:Description&gt;<br />
&lt;rdf:Description rdf:about=&#8221;"<br />
xmlns:dc=&#8221;</em><a href="http://purl.org/dc/elements/1.1/"><em>http://purl.org/dc/elements/1.1/</em></a><em>&#8220;&gt;<br />
&lt;dc:format&gt;application/pdf&lt;/dc:format&gt;<br />
&lt;dc:creator&gt;<br />
&lt;rdf:Seq&gt;<br />
&lt;rdf:li&gt;Marcel van Espen&lt;/rdf:li&gt;<br />
&lt;/rdf:Seq&gt;<br />
&lt;/dc:creator&gt;<br />
&lt;dc:title&gt;<br />
&lt;rdf:Alt&gt;<br />
&lt;rdf:li xml:lang=&#8221;x-default&#8221;&gt;This is a test document&lt;/rdf:li&gt;<br />
&lt;/rdf:Alt&gt;<br />
&lt;/dc:title&gt;<br />
&lt;dc:description&gt;<br />
&lt;rdf:Alt&gt;<br />
&lt;rdf:li xml:lang=&#8221;x-default&#8221;&gt;Onderwerp&lt;/rdf:li&gt;<br />
&lt;/rdf:Alt&gt;<br />
&lt;/dc:description&gt;<br />
&lt;dc:subject&gt;<br />
&lt;rdf:Bag&gt;<br />
&lt;rdf:li&gt;PDF, Metadata&lt;/rdf:li&gt;<br />
&lt;/rdf:Bag&gt;<br />
&lt;/dc:subject&gt;<br />
&lt;/rdf:Description&gt;<br />
&lt;rdf:Description rdf:about=&#8221;"<br />
xmlns:pdfx=&#8221;</em><a href="http://ns.adobe.com/pdfx/1.3/"><em>http://ns.adobe.com/pdfx/1.3/</em></a><em>&#8220;&gt;<br />
&lt;pdfx:Company&gt;Adobe Systems Incorporated&lt;/pdfx:Company&gt;<br />
&lt;pdfx:Department&gt;Development&lt;/pdfx:Department&gt;<br />
&lt;pdfx:Language&gt;English&lt;/pdfx:Language&gt;<br />
<strong><span style="#0000ff;"><span style="#ff0000;">&lt;pdfx:Office&gt;<span style="#ff0000;">Amsterdam</span>&lt;/pdfx:Office&gt;</span></span></strong><br />
&lt;/rdf:Description&gt;<br />
&lt;/rdf:RDF&gt;<br />
&lt;/x:xmpmeta&gt;<br />
&lt;?xpacket end=&#8221;w&#8221;?&gt;</em></p>
<p>Now, you will see some familiar tags in there. If you would like to access the custom property Office (With value Amsterdam) as highlighted in bold above, you will need to do the following:</p>
<ol>
<li>Store the result data from the Export XMP service in a variable of type XML (for this example this will be xmpdocxml)</li>
<li>Create a variable of type string (In this case it will be office) to store the office location (of course you can also put it in a form template, but this is out of scope for this example)</li>
<li>Use a set value service to set <a>/process_data/@Office</a> = /process_data/xmpdocxml/x:xmpmeta/rdf:RDF/rdf:Description/pdfx:Office</li>
</ol>
<p>That&#8217;s it. You can of course repeat this for all the other elements, and do what you like with it. I have created a simple example and made it <a title="Acrobat.com" href="https://share.acrobat.com/adc/document.do?docid=410f1942-e22f-4801-ac64-6cfe0ae70207" target="_blank">available</a> on <a title="Acrobat.com" href="https://share.acrobat.com/adc/document.do?docid=410f1942-e22f-4801-ac64-6cfe0ae70207" target="_blank">acrobat.com.</a> In the sample (zip file) I included a LiveCycle LCA file that you can import, a sample Word document and an XML file that is just showing you the metadata.</p>
<p>If this is too much for you, there is an even simpler service to retrieve the metadata from a document. This service, Export Metadata, gives you a nice XML structure that you can browse using your XPATH editor. Note that this only retrieves the basic metadata!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drflex.eu/2008/12/accessing-ms-office-custom-properties-from-livecycle-es-processes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>



