<?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>Waldo Smeets .com on Rich Internet Applications</title>
	<atom:link href="http://www.waldosmeets.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.waldosmeets.com</link>
	<description>Sales Engineer from Adobe Netherlands on Rich Internet Applications, Adobe Flex and Adobe LiveCycle ES.</description>
	<lastBuildDate>Fri, 12 Mar 2010 22:24:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>LiveCycle ES2 Guides &#8211; Adding custom validation classes to your model</title>
		<link>http://www.waldosmeets.com/2010/03/12/livecycle-es2-guides-model-custom-validation-class/</link>
		<comments>http://www.waldosmeets.com/2010/03/12/livecycle-es2-guides-model-custom-validation-class/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 22:15:15 +0000</pubDate>
		<dc:creator>Waldo Smeets</dc:creator>
				<category><![CDATA[Adobe LiveCycle ES]]></category>

		<guid isPermaLink="false">http://www.waldosmeets.com/?p=661</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 class="MsoNormal"><span style="color: #1f497d;">&lt;property name=&#8221;socialSecNum&#8221; type=&#8221;string&#8221;&gt;<br />
&lt;style&gt;<br />
</span><span style="color: #1f497d;"> </span><span style="color: #1f497d;"> </span><span style="color: #1f497d;">&lt;validation&gt;</span><span style="color: #1f497d;"><br />
</span><span style="color: #1f497d;"> </span><span style="color: #1f497d;"> </span><span style="color: #1f497d;"> </span><span style="color: #1f497d;">&lt;annotation name=&#8221;ActionScriptValidator&#8221;&gt;<br />
</span><span style="color: #1f497d;"> </span><span style="color: #1f497d;"> </span><span style="color: #1f497d;"> </span><span style="color: #1f497d;"> </span><span style="color: #1f497d;">&lt;item name=&#8221;ValidatorClass&#8221;&gt;mx.validators.SocialSecurityValidator&lt;/item&gt;<br />
</span><span style="color: #1f497d;"> </span><span style="color: #1f497d;"> </span><span style="color: #1f497d;"> </span><span style="color: #1f497d;"> </span><span style="color: #1f497d;">&lt;item name=&#8221;allowedFormatChars&#8221;&gt;&#8221;-()&#8221;&lt;/item&gt;<br />
</span><span style="color: #1f497d;"> </span><span style="color: #1f497d;"> </span><span style="color: #1f497d;"> </span><span style="color: #1f497d;">&lt;/annotation&gt;<br />
</span><span style="color: #1f497d;"> </span><span style="color: #1f497d;"> </span><span style="color: #1f497d;">&lt;/validation&gt;<br />
</span><span style="color: #1f497d;"> </span><span style="color: #1f497d;">&lt;/style&gt;<br />
&lt;/property&gt;</span></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.waldosmeets.com/2010/03/12/livecycle-es2-guides-model-custom-validation-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working around a &#8220;Turnkey service JBoss for Adobe LiveCycle does not exist&#8221; error</title>
		<link>http://www.waldosmeets.com/2009/03/22/working-around-a-turnkey-service-jboss-for-adobe-livecycle-does-not-exist-error/</link>
		<comments>http://www.waldosmeets.com/2009/03/22/working-around-a-turnkey-service-jboss-for-adobe-livecycle-does-not-exist-error/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 10:07:52 +0000</pubDate>
		<dc:creator>Waldo Smeets</dc:creator>
				<category><![CDATA[Adobe LiveCycle ES]]></category>
		<category><![CDATA[livecycle es]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[turnkey]]></category>

		<guid isPermaLink="false">http://www.waldosmeets.com/?p=659</guid>
		<description><![CDATA[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 ES does not [...]]]></description>
			<content:encoded><![CDATA[<p><strong></strong>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></strong>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>ps: 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>
<p>___<br />
This post was originally placed at the <a href="http://www.drflex.eu/2009/03/turnkey-service-jboss-for-adobe-livecycle-does-not-exist/" target="_blank">DrLiveCycle blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waldosmeets.com/2009/03/22/working-around-a-turnkey-service-jboss-for-adobe-livecycle-does-not-exist-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe on Business Process Modelling Notation (BPMN)</title>
		<link>http://www.waldosmeets.com/2008/10/24/adobe-on-business-process-modelling-notation-bpmn/</link>
		<comments>http://www.waldosmeets.com/2008/10/24/adobe-on-business-process-modelling-notation-bpmn/#comments</comments>
		<pubDate>Fri, 24 Oct 2008 18:14:15 +0000</pubDate>
		<dc:creator>Waldo Smeets</dc:creator>
				<category><![CDATA[Adobe LiveCycle ES]]></category>
		<category><![CDATA[bpmn]]></category>
		<category><![CDATA[business process modelling]]></category>
		<category><![CDATA[livecycle es]]></category>
		<category><![CDATA[workbench]]></category>

		<guid isPermaLink="false">http://www.waldosmeets.com/2008/10/24/adobe-on-business-process-modelling-notation-bpmn/</guid>
		<description><![CDATA[Recently I was asked by a large system integrator about Adobe&#8217;s standpoint on the Business Process Modelling Notation (BMPN) specification.
Not many people know that Adobe participates in quite some industry standards and supports their maturity/evolution such as BPMN, BPEL, BPDM and XPDL and that we are voting members of standard bodies such as OMG, OASIS [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I was asked by a large system integrator about Adobe&#8217;s standpoint on the <a href="http://www.bpmn.org/" target="_blank">Business Process Modelling Notation (BMPN) specification</a>.</p>
<p>Not many people know that Adobe participates in quite some industry standards and supports their maturity/evolution such as BPMN, BPEL, BPDM and XPDL and that we are voting members of standard bodies such as OMG, OASIS and WFMC. Adobe is represented in all these standards bodies and actively participates in reviewing and authoring of these standards. We take a lot of that knowledge back into the decisions we make when developing our enterprise products, especially Adobe&#8217;s LiveCycle Enterprise Suite.</p>
<p>BPMN (Business Process Modelling Notation) is a specification for a couple of things:</p>
<ul>
<li>A graphical notation. E.g. How different activities are represented in a process diagram.</li>
<li>Semantics of the graphical notation. E.g. What does it mean when you connect activities with a line.</li>
</ul>
<p><a href="http://en.wikipedia.org/wiki/BPMN" target="_blank">From wikipedia</a>:</p>
<blockquote><p><em>The primary goal of BPMN is to provide a standard notation that is readily understandable by all business stakeholders. These business stakeholders include the business analysts who create and refine the processes, the technical developers responsible for implementing the processes, and the business managers who monitor and manage the processes. Consequently BPMN is intended to serve as common language to bridge the communication gap that frequently occurs between business process design and implementation</em>.</p></blockquote>
<p>Using the Process perspective in <a href="http://www.adobe.com/products/livecycle/workbench/" target="_blank">LiveCycle Workbench</a>, one can visually create process maps that define and control your automated business processes. Since Workbench implements the main constructs for the graphical notation and the semantics of that notation as specified by BPMN, business analysts can create process diagrams using swimlanes, activities, events and associations following common modeling methodologies (we still have a gap to cover when it comes to modeling of Gateways).</p>
<p><a href="http://www.waldosmeets.com/wp-content/uploads/2008/10/workbench.jpg" rel="lightbox[649]"><img class="size-medium wp-image-652  " title="Adobe LiveCycle WorkBench" src="http://www.waldosmeets.com/wp-content/uploads/2008/10/workbench-300x186.jpg" alt="Adobe LiveCycle WorkBench" width="300" height="186" /></a></p>
<p>To summarize: if you have been trained in BPMN, you will find it easy to model a process using LiveCycle Workbench.</p>
<p>If you want to read more on <a href="http://www.adobe.com/devnet/livecycle/articles/bpel4people_overview.html" target="_blank">Adobe&#8217;s comments on BPEL and general standards</a>, you should read <a href="http://www.adobe.com/devnet/livecycle/articles/bpel4people_overview.html" target="_blank">this article</a> on de LiveCycle DevNet:</p>
<p>ps: One should know that the current BPMN spec (v1.1) does not specify how a process diagram should be persisted by a modeling tool. There is no XML schema for example. However, there is another specification &#8211; XDPL &#8211; which does provide this and the BPMN v2 specification currently in review also has a defined schema for persistence. Since standards have not been defined or widely accepted, LiveCycle Workbench currently persist that process definition using custom XML for which Adobe has publish the XML Schema (which after installation can be found under the LiveCycle SDK/schema directory).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waldosmeets.com/2008/10/24/adobe-on-business-process-modelling-notation-bpmn/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Load test Flex and LiveCycle Data Services enabled applications</title>
		<link>http://www.waldosmeets.com/2008/10/15/643/</link>
		<comments>http://www.waldosmeets.com/2008/10/15/643/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 10:32:56 +0000</pubDate>
		<dc:creator>Waldo Smeets</dc:creator>
				<category><![CDATA[Adobe Flex]]></category>
		<category><![CDATA[Adobe LiveCycle ES]]></category>

		<guid isPermaLink="false">http://www.waldosmeets.com/2008/10/15/643/</guid>
		<description><![CDATA[[from my DrFlex blogpost]
Disease:
You have built an amazing cool and data intense Rich Internet Application with Adobe Flex and expect many users to work with your application. Suddenly you get concerned; how will the server behave when hundreds or even thousands of users visit your site?
Prescription:
Some more background on this problem first; You probably know [...]]]></description>
			<content:encoded><![CDATA[<p>[from my <a href="http://www.drflex.eu/2008/09/load-test-flex-and-livecycle-data-services-enabled-applications/http://www.drflex.eu/2008/09/load-test-flex-and-livecycle-data-services-enabled-applications/">DrFlex blogpost</a>]</p>
<p class="entry"><strong>Disease:</strong><br />
You have built an amazing cool and data intense Rich Internet Application with Adobe Flex and expect many users to work with your application. Suddenly you get concerned; how will the server behave when hundreds or even thousands of users visit your site?</p>
<p><strong>Prescription:</strong><br />
Some more background on this problem first; You probably know that a server in production will behave differently when interacting with a RIA than compared to serving traditional HTML apps that you have been building before.Â  This is mainly because UIs are not generated on the server any more. Though on the other side, there is probably increased data exchange between the client and server and most of allâ€¦. ideally you use the <a onclick="javascript:pageTracker._trackPageview('/outbound/article/http://osflash.org/documentation/amf');" href="http://osflash.org/documentation/amf" target="_blank">ActionScript Message Format (AMF)</a> and Data Management cause it is easier to develop or <a onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.jamesward.com/census');" href="http://www.jamesward.com/census" target="_blank">faster on the client</a>.Â  But how does it impact the server, can it handle the load and do traditional load testing tools still work?</p>
<p><a href="http://www.drflex.eu/wp-content/uploads/2008/09/stresstestadmin.jpg" target="_blank" rel="lightbox[643]"><img class="aligncenter" src="http://www.drflex.eu/wp-content/uploads/2008/09/stresstestadmin-300x194.jpg" alt="LiveCycle Data Services Stress Testing Framework admin UI screenshot" width="300" height="194" /></a></p>
<p>Adobe currently hosts the <a onclick="javascript:pageTracker._trackPageview('/outbound/article/http://labs.adobe.com/wiki/index.php/Data_Services_Stress_Testing_Framework');" href="http://labs.adobe.com/wiki/index.php/Data_Services_Stress_Testing_Framework" target="_blank">LiveCycle Data Services Stress Testing Framework</a> on <a onclick="javascript:pageTracker._trackPageview('/outbound/article/http://labs.adobe.com/wiki/index.php/Data_Services_Stress_Testing_Framework');" href="http://labs.adobe.com/wiki/index.php/Data_Services_Stress_Testing_Framework" target="_blank">Adobe Labs</a> which addresses lots of these questions. The framework helps developers that use LiveCycle Data Services ES 2.6 to load test the server-side implementation of their LCDS applications. The page is stuffed with information on how to use the Framework so definitely spend some time going through all the details. The Data Services Stress Testing Framework is currently in beta form, but available for testing and evaluation. You can download and test the framework and we obviously hope you will provide us your feedback through the <a onclick="javascript:pageTracker._trackPageview('/outbound/article///labs.adobe.com/wiki/index.php/Data_Services_Stress_Testing_Framework');" href="http://labs.adobe.com/wiki/index.php/Data_Services_Stress_Testing_Framework" target="_blank">Adobe Labs page</a>.</p>
<p><strong>Tips to stay healthy:</strong><br />
The stress / load testing problem itself has been around for long, and many software vendors have created solutions to help web developers test their servers for large rollouts. However, most of these solutions are still based on the traditional HTML web metaphor and do not work well with AMF. Also, the Data Services Stress Testing Framework currently does not support BlazeDS or other AMF server implementations. Adobe is currently working with a number of testing tool vendors to implement all of the data transport protocols available in Flash. It seems that <a onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.borland.com/us/products/silk/silkperformer/index.html');" href="http://www.borland.com/us/products/silk/silkperformer/index.html" target="_blank">Borlandâ€™s SilkPerformer</a> is one of the first to have AMF3 support. I have not worked with it myself and would love your feedback. Obviously if you know of other tools that are useful for load testing your Flex applications, feel free to leave a comment!</p>
<p>ps: I heard internally that we are working on a new Capacity Planning Guide for LiveCycle Data Services ES 2.6 whitepaper, but it has not yet been finalized. I assume it will be posted in the coming weeks on the <a onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.adobe.com/devnet/livecycle/');" href="http://www.adobe.com/devnet/livecycle/" target="_blank">LiveCycle Development Center</a> so stay tuned.</p>
<p>[For more DrFlex and DrLiveCycle related posts check <a href="http://www.drflex.eu" target="_blank">www.drflex.eu</a> and <a href="http://www.drlivecycle.eu" target="_blank">www.drlivecycle.eu</a>.]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waldosmeets.com/2008/10/15/643/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Call for papers for Flex Camp Amsterdam</title>
		<link>http://www.waldosmeets.com/2008/10/15/call-for-papers-for-flex-camp-amsterdam/</link>
		<comments>http://www.waldosmeets.com/2008/10/15/call-for-papers-for-flex-camp-amsterdam/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 10:27:30 +0000</pubDate>
		<dc:creator>Waldo Smeets</dc:creator>
				<category><![CDATA[Adobe Flex]]></category>
		<category><![CDATA[Rich Internet Applications]]></category>

		<guid isPermaLink="false">http://www.waldosmeets.com/2008/10/15/call-for-papers-for-flex-camp-amsterdam/</guid>
		<description><![CDATA[I received an email (in Dutch) from one of the members of the Dutch Flex user group FLUGR with a call for papers (sorry, Dutch only). If you have cool ideas to present during the Flex Camp they&#8217;d love to receive your submissions!




  

Op 13 november 2008 vindt een &#8220;Flex Camp&#8221; plaats, met onder [...]]]></description>
			<content:encoded><![CDATA[<p>I received an email (in Dutch) from one of the members of the <a href="http://www.flugr.nl" target="_blank">Dutch Flex user group FLUGR</a> with a call for papers (sorry, Dutch only). If you have cool ideas to present during the Flex Camp they&#8217;d love to receive your submissions!</p>
<blockquote>
<link href="file:///C:%5CUsers%5Cwsmeets%5CAppData%5CLocal%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml" rel="File-List" />
<link href="file:///C:%5CUsers%5Cwsmeets%5CAppData%5CLocal%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx" rel="themeData" />
<link href="file:///C:%5CUsers%5Cwsmeets%5CAppData%5CLocal%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml" rel="colorSchemeMapping" /><!--[if gte mso 9]><xml>  <w :WordDocument>   </w><w :View>Normal</w>   <w :Zoom>0</w>   <w :TrackMoves/>   <w :TrackFormatting/>   <w :PunctuationKerning/>   <w :ValidateAgainstSchemas/>   <w :SaveIfXMLInvalid>false</w>   <w :IgnoreMixedContent>false</w>   <w :AlwaysShowPlaceholderText>false</w>   <w :DoNotPromoteQF/>   <w :LidThemeOther>EN-US</w>   <w :LidThemeAsian>X-NONE</w>   <w :LidThemeComplexScript>X-NONE</w>   <w :Compatibility>    <w :BreakWrappedTables/>    <w :SnapToGridInCell/>    <w :WrapTextWithPunct/>    <w :UseAsianBreakRules/>    <w :DontGrowAutofit/>    <w :SplitPgBreakAndParaMark/>    <w :DontVertAlignCellWithSp/>    <w :DontBreakConstrainedForcedTables/>    <w :DontVertAlignInTxbx/>    <w :Word11KerningPairs/>    <w :CachedColBalance/>   </w>   <w :BrowserLevel>MicrosoftInternetExplorer4</w>   <m :mathPr>    <m :mathFont m:val="Cambria Math"/>    <m :brkBin m:val="before"/>    <m :brkBinSub m:val="&#45;-"/>    <m :smallFrac m:val="off"/>    <m :dispDef/>    <m :lMargin m:val="0"/>    <m :rMargin m:val="0"/>    <m :defJc m:val="centerGroup"/>    <m :wrapIndent m:val="1440"/>    <m :intLim m:val="subSup"/>    <m :naryLim m:val="undOvr"/>   </m> </xml>< ![endif]--><!--[if gte mso 9]><xml>  <w :LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267">   <w :LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal"/>   <w :LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1"/>   <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"/>   <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/>   <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/>   <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/>   <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/>   <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/>   <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/>   <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/>   <w :LsdException Locked="false" Priority="39" Name="toc 1"/>   <w :LsdException Locked="false" Priority="39" Name="toc 2"/>   <w :LsdException Locked="false" Priority="39" Name="toc 3"/>   <w :LsdException Locked="false" Priority="39" Name="toc 4"/>   <w :LsdException Locked="false" Priority="39" Name="toc 5"/>   <w :LsdException Locked="false" Priority="39" Name="toc 6"/>   <w :LsdException Locked="false" Priority="39" Name="toc 7"/>   <w :LsdException Locked="false" Priority="39" Name="toc 8"/>   <w :LsdException Locked="false" Priority="39" Name="toc 9"/>   <w :LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/>   <w :LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title"/>   <w :LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/>   <w :LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/>   <w :LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong"/>   <w :LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/>   <w :LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid"/>   <w :LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/>   <w :LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/>   <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading"/>   <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List"/>   <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid"/>   <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1"/>   <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2"/>   <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1"/>   <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2"/>   <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1"/>   <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2"/>   <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3"/>   <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List"/>   <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading"/>   <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List"/>   <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid"/>   <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1"/>   <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1"/>   <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1"/>   <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/>   <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/>   <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/>   <w :LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/>   <w :LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/>   <w :LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote"/>   <w :LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/>   <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/>   <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/>   <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/>   <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/>   <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1"/>   <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/>   <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1"/>   <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/>   <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2"/>   <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2"/>   <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2"/>   <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/>   <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/>   <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/>   <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/>   <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/>   <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/>   <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/>   <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2"/>   <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/>   <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2"/>   <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/>   <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3"/>   <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3"/>   <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3"/>   <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/>   <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/>   <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/>   <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/>   <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/>   <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/>   <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/>   <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3"/>   <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/>   <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3"/>   <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/>   <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4"/>   <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4"/>   <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4"/>   <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/>   <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/>   <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/>   <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/>   <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/>   <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/>   <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/>   <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4"/>   <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/>   <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4"/>   <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/>   <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5"/>   <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5"/>   <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5"/>   <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/>   <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/>   <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/>   <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/>   <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/>   <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/>   <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/>   <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5"/>   <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/>   <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5"/>   <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/>   <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6"/>   <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6"/>   <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6"/>   <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/>   <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/>   <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/>   <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/>   <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/>   <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/>   <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/>   <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6"/>   <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/>   <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6"/>   <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/>   <w :LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/>   <w :LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/>   <w :LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/>   <w :LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/>   <w :LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title"/>   <w :LsdException Locked="false" Priority="37" Name="Bibliography"/>   <w :LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/>  </w> </xml>< ![endif]--><br />
<style> <!--  /* Font Definitions */  @font-face 	{font-family:"Cambria Math"; 	panose-1:2 4 5 3 5 4 6 3 2 4; 	mso-font-alt:"Palatino Linotype"; 	mso-font-charset:0; 	mso-generic-font-family:roman; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face 	{font-family:Calibri; 	panose-1:2 15 5 2 2 2 4 3 2 4; 	mso-font-alt:"Times New Roman"; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-parent:""; 	margin:0cm; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:"Times New Roman","serif"; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin;} a:link, span.MsoHyperlink 	{mso-style-noshow:yes; 	mso-style-priority:99; 	color:blue; 	text-decoration:underline; 	text-underline:single;} a:visited, span.MsoHyperlinkFollowed 	{mso-style-noshow:yes; 	mso-style-priority:99; 	color:purple; 	mso-themecolor:followedhyperlink; 	text-decoration:underline; 	text-underline:single;} .MsoChpDefault 	{mso-style-type:export-only; 	mso-default-props:yes; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} @page Section1 	{size:612.0pt 792.0pt; 	margin:72.0pt 72.0pt 72.0pt 72.0pt; 	mso-header-margin:36.0pt; 	mso-footer-margin:36.0pt; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --> </style>
<p><!--[if gte mso 10]><br />
<style>  /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin:0cm; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:"Times New Roman"; 	mso-fareast-theme-font:minor-fareast; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} </style>
<p> < ![endif]--></p>
<p class="MsoNormal" style="margin-bottom: 12pt"><em>Op 13 november 2008 vindt een &#8220;Flex Camp&#8221; plaats, met onder andere grote sprekers als Christophe Coenraets en James Ward.</p>
<p>Vanwege het speciale karakter en de grote sprekers, hebben we er voor gekozen de reguliere meeting van 13 november te &#8220;upgraden&#8221; naar een FlexCamp. Dit houdt in dat de dag gevuld is met veel korte sessies over een concreet onderwerp, met veel ruimte voor interactie. Naast presentatie-sessies is er ook ruimte voor zogenaamde &#8220;un-conference&#8221; sessies waar over een specifiek onderwerp gediscussieerd kan worden. De dag wordt zo opgezet dat er op elk moment voor iedereen iets interessants te doen of te beluisteren is.</p>
<p>Naast de bekende namen vanuit Adobe, willen we als Nederlandse usergroup laten zien wat we in huis hebben. Naast de al geplande onderwerpen hebben we de mogelijkheid gecreÃ«erd voor een aantal kortere, specifieke sessies. Voor jou dÃ© kans om een Flex gerelateerd onderwerp uit te diepen voor collega Flex ontwikkelaars. Denk daarbij aan sessies van 20 minuten tot een half uur over onderwerpen als &#8220;Offline Reporting in Rich Internet Applications&#8221;, &#8220;High Performance Data Manipulation &amp; Visualization with Flex&#8221; of &#8220;Financial Portals with Flex: challenges and solutions&#8221;.</p>
<p>Het publiek bestaat uit ervaren en beginnende Flex ontwikkelaars. Hoe concreter het verhaal des te interessanter. Kennisdeling is door veel FLUGR leden opgegeven als reden om zich aan te melden. Grijp deze kans en vertel anderen wat je weet.</p>
<p>Denk je er over om een sessie voor je rekening nemen? Meldt je aan met de volgende gegevens<br />
</em></p>
<ul>
<li><em>Titel van de sessie</em></li>
<li><em>Naam / namen van de spreker(s)</em></li>
<li><em>Korte omschrijving van de sessie (minimaal 100 woorden)</em></li>
<li><em>Niveau (beginner / intermediate / advanced)</em></li>
</ul>
<p class="MsoNormal" style="margin-bottom: 12pt"><em>Twijfel je of je een sessie voor je rekening wilt nemen? Laat het ons weten. Misschien kunnen wij je in contact brengen met een andere twijfelaar zodat je gezamenlijk een interessante sessie kunt neerzetten.</p>
<p>Stuur je aanmelding uiterlijk vrijdag 17 oktober 2008 naar sieto-apestaart-flugr.nl. Wij verzamelen de inzendingen en nemen vÃ³Ã³r woensdag 22 oktober contact met je op.</em></p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.waldosmeets.com/2008/10/15/call-for-papers-for-flex-camp-amsterdam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Announcing LiveCycle up2date seminar &#8211; Document security</title>
		<link>http://www.waldosmeets.com/2008/06/09/announcing-livecycle-up2date-seminar-document-security/</link>
		<comments>http://www.waldosmeets.com/2008/06/09/announcing-livecycle-up2date-seminar-document-security/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 08:20:32 +0000</pubDate>
		<dc:creator>Waldo Smeets</dc:creator>
				<category><![CDATA[Rich Internet Applications]]></category>

		<guid isPermaLink="false">http://www.waldosmeets.com/2008/06/09/announcing-livecycle-up2date-seminar-document-security/</guid>
		<description><![CDATA[Adobe Benelux Sales Engineers will be sharing more and more of their knowledge publicly this year. Next to the DrLivecycle initiatives I announced yesterday, we&#8217;ll also be hosting some LiveCycle Up2Date seminars which provide more background information on specific Adobe LiveCycle ES modules.
This Thursday (Netherlands) and next week (Belgium) we&#8217;ll be hosting the first seminar, [...]]]></description>
			<content:encoded><![CDATA[<p>Adobe Benelux Sales Engineers will be sharing more and more of their knowledge publicly this year. Next to the <a href="http://www.drflex.eu" target="_blank">DrLivecycle</a> initiatives I <a href="http://www.waldosmeets.com/2008/06/08/adobe-benelux-presales-team-launching-dr-flex-and-dr-livecycle-blogs/">announced</a> yesterday, we&#8217;ll also be hosting some <a href="http://www.quietlyscheming.com/blog/components/interactive-calendar/" target="_blank">LiveCycle Up2Date</a> seminars which provide more background information on specific Adobe LiveCycle ES modules.</p>
<p>This Thursday (Netherlands) and next week (Belgium) we&#8217;ll be hosting the first seminar, this one is on <a href="http://events.adobe.co.uk/cgi-bin/event.cgi?eventid=6909&amp;country=uk" target="_blank">Document Security</a>. From the site:</p>
<blockquote><p><em>Document control and digital signatures protect electronic documents</em></p>
<p>The Adobe suite of security solutions delivers document control and digital signature services that simplify the process of protecting sensitive electronic documents and forms. Organizations can easily integrate Adobe document security solutions into current business processes and enterprise infrastructure to support a wide range of simple and complex processes. Adobe solutions dynamically protect electronic documents inside and outside the network, online and offline to provide persistent, end-to-end protection throughout an electronic documentâ€™s lifecycle.<br />
<strong>June 12th 2008, Adobe Offices, Amsterdam</strong><br />
<u>Agenda:</u><br />
10h-11h: Presentation by an Adobe Systems Engineer<br />
11h-12h: Adobe forms within the financial world, Tim Binsted, Atos Origin</p>
<p><strong>June 19th 2008, Adobe Offices, Diegem</strong><br />
<u>Agenda:</u><br />
10h-11h: Presentation by an Adobe Systems Engineer<br />
11h-12h: How to use e-ID and Adobe Reader and PDF technology to electronically sign<br />
documents in a web based application? Hugues Dorchy, The e-ID Company</p></blockquote>
<p><a href="http://events.adobe.co.uk/cgi-bin/event.cgi?eventid=6909&amp;country=uk" target="_blank">Register</a> for the event at the <a href="http://http://events.adobe.co.uk/cgi-bin/event.cgi?eventid=6909&amp;country=uk" target="_blank">Adobe Up2date seminars</a> page.</p>
<p>Hope to see you there!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waldosmeets.com/2008/06/09/announcing-livecycle-up2date-seminar-document-security/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe Benelux presales team launching Dr Flex and Dr LiveCycle blogs</title>
		<link>http://www.waldosmeets.com/2008/06/08/adobe-benelux-presales-team-launching-dr-flex-and-dr-livecycle-blogs/</link>
		<comments>http://www.waldosmeets.com/2008/06/08/adobe-benelux-presales-team-launching-dr-flex-and-dr-livecycle-blogs/#comments</comments>
		<pubDate>Sun, 08 Jun 2008 17:52:16 +0000</pubDate>
		<dc:creator>Waldo Smeets</dc:creator>
				<category><![CDATA[Rich Internet Applications]]></category>

		<guid isPermaLink="false">http://www.waldosmeets.com/2008/06/08/adobe-benelux-presales-team-launching-dr-flex-and-dr-livecycle-blogs/</guid>
		<description><![CDATA[The Adobe Netherlands and Belgium presales team has started the â€œdr Flex &#38; dr LiveCycleâ€ weblog. Combined with the blog we are hosting a series of small consult-style meetings over the next few months. The idea is to be available one day per month for enterprise level questions and discussions on Adobe LiveCycle ES and [...]]]></description>
			<content:encoded><![CDATA[<p class="snap_preview">The Adobe Netherlands and Belgium presales team has started the â€œ<a href="http://www.drlivecycle.nl" target="_blank">dr Flex &amp; dr LiveCycle</a>â€ weblog. Combined with the <a href="http://www.drflex.nl" target="_blank">blog</a> we are hosting a series of small <a href="http://events.adobe.co.uk/cgi-bin/event.cgi?eventid=6861&amp;country=uk" target="_blank">consult-style meetings</a> over the next few months. The idea is to be available one day per month for enterprise level questions and discussions on <a href="http://www.adobe.com/livecycle" target="_blank">Adobe LiveCycle ES</a> and <a href="http://www.adobe.com/flex">Adobe Flex</a>. So if you are an enterprise user of the Adobe software, feel free to drop by at one of these meetings. Please note that we won&#8217;t cover generic support questions, Adobe already has some good <a href="http://www.adobe.com/support/products/enterprise/" target="_blank">channels</a> to address those <img src='http://www.waldosmeets.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><em>â€œDuring these sessions â€œDr Flex &amp; Dr LiveCycleâ€, observe your common Flex &amp; LC symptoms. They advise on how to implement Adobe Enterprise Software and work in a healthy IT environment by giving you a FREE â€˜health checkâ€™ session.â€ </em></p>
<p>The blog has a bit of a broader scope, including less enterprise specific tips and tricks about Flex and LiveCycle, but as times goes by we hope to add a nice Benelux taste to the content!</p>
<p>ps: We are starting the blog and the consults very low profile, but personally I have the hopes that finally these types of discussions will move into an Adobe Enterprise Developers usergroup, so let&#8217;s see where we get. I know a discussion about this topic is already ongoing at a few Adobe partners with the founders of the Adobe Flex User Group, so let&#8217;s see where things end. We definitely plan to leverage the usergroups as much as we can (some of us will be attending the first Flugr meeting later this week).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waldosmeets.com/2008/06/08/adobe-benelux-presales-team-launching-dr-flex-and-dr-livecycle-blogs/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Flex User Group Netherlands ready to launch</title>
		<link>http://www.waldosmeets.com/2008/04/16/flex-user-group-netherlands-ready-to-launch/</link>
		<comments>http://www.waldosmeets.com/2008/04/16/flex-user-group-netherlands-ready-to-launch/#comments</comments>
		<pubDate>Wed, 16 Apr 2008 19:42:57 +0000</pubDate>
		<dc:creator>Waldo Smeets</dc:creator>
				<category><![CDATA[Rich Internet Applications]]></category>

		<guid isPermaLink="false">http://www.waldosmeets.com/2008/04/16/flex-user-group-netherlands-ready-to-launch/</guid>
		<description><![CDATA[Check out www.flugr.nl (love the name!) and join the Dutch Flex User GroupÂ  aka Nederlandse Flex User Group.
This is supposed to be a true community where Dutch speaking Flex developers are sharing all relevant information with each other. I am looking forward to some real technical deep sessions coming from them, without the sales pitch [...]]]></description>
			<content:encoded><![CDATA[<p>Check out <a href="http://www.flugr.nl/" target="_blank">www.flugr.nl</a> (love the name!) and join the <a href="http://www.flugr.nl/" target="_blank">Dutch Flex User Group</a>Â  aka <a href="http://www.flugr.nl/" target="_blank">Nederlandse Flex User Group</a>.</p>
<p>This is supposed to be a true community where Dutch speaking Flex developers are sharing all relevant information with each other. I am looking forward to some real technical deep sessions coming from them, without the sales pitch I always mix in when I present <img src='http://www.waldosmeets.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>First meeting is scheduled for friday 13th (no kidding) june. I know the guys behind this initiative and they are truely talented and very passionate so I hope you will join them and share the love!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waldosmeets.com/2008/04/16/flex-user-group-netherlands-ready-to-launch/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Adobe Benelux is hiring a Business Development Manager for the Creative Pro Market</title>
		<link>http://www.waldosmeets.com/2007/10/24/adobe-benelux-is-hiring-a-business-development-manager-for-the-creative-pro-market/</link>
		<comments>http://www.waldosmeets.com/2007/10/24/adobe-benelux-is-hiring-a-business-development-manager-for-the-creative-pro-market/#comments</comments>
		<pubDate>Wed, 24 Oct 2007 19:50:26 +0000</pubDate>
		<dc:creator>Waldo Smeets</dc:creator>
				<category><![CDATA[Rich Internet Applications]]></category>

		<guid isPermaLink="false">http://www.waldosmeets.com/2007/10/24/adobe-benelux-is-hiring-a-business-development-manager-for-the-creative-pro-market/</guid>
		<description><![CDATA[[Note: this job opening has been filled per March 1st. Welcome Klaasjan Tukker to Adobe   ]
We have  a new position open in the Adobe Benelux offices, namely a Business Development Manager for the Creative Pro Market. You will be joining a new-formed team of sales and creative people that spans across the [...]]]></description>
			<content:encoded><![CDATA[<p>[Note: this job opening has been filled per March 1st. Welcome Klaasjan Tukker to Adobe <img src='http://www.waldosmeets.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  ]</p>
<p>We have  a new position open in the Adobe Benelux offices, namely a Business Development Manager for the Creative Pro Market. You will be joining a new-formed team of sales and creative people that spans across the Benelux. Even though the BDM role sounds extremely business focused, it actually requires that you have a fair amount of knowledge of the creative industry and have a deep understanding of what our customers are using our products for, and last but not least&#8230; you know how to use them yourself!</p>
<p>So if you have that unique combination of creative skills enabled by Adobe products and would like to evangelize them in a business oriented matter, then we are looking for you.</p>
<p>I have posted the official job description below &#8211; I haven&#8217;t seen it posted on the Adobe Jobs site yet. If you have interest, feel free to send me your rÃ©sumÃ© by email and I will forward it to the appropriate people.</p>
<p>ps: If you know <a href="http://www.webkitchen.be" target="_blank">Serge Jespers</a>, the role we are looking for is similiar to his (obviously it&#8217;s also up to you to fullfil the role the way you envision it). Serge has been promoted and will be joining the platform evangelist team under Mike Downey and Ben Forta, being one of the leading evangelists for Europe and probably traveling across the entire world! Obviously we are looking for a new talent to fulfill his role in the Benelux, but you might realize that it&#8217;s not easy to par up with what Serge has been doing <img src='http://www.waldosmeets.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<blockquote><p><em>A focused, technical, business savvy, <strong>Business Development Manager for the Creative Pro market</strong>. Based in BeLux this BDM will evaluate and manage new strategic business opportunities, initiatives, and partnerships. Oversees market analysis, monitors competitive activity, and identifies customer needs. Provides leadership in planning, designing and implementation of strategic business objectives. The successful candidate will be an experienced and polished presenter with extensive knowledge of the Multi Media landscape.</em></p>
<p><em>Main responsibilities</em></p>
<ul>
<li><em>Working with channel Sales, M&amp;P Account Managers and Marketing on sales opportunities for the Creative Pro key product offerings with a specific emphasis on Multi Media solutions.</em></li>
<li><em>Presenting at customer briefings/ tradeshows /user groups sessions/train the trainers sessions etc.</em></li>
<li><em>Doing coop EU visits together with resellers and partners.</em></li>
<li><em>Create vertical solution targeted business plans which align with the Adobe corporate objectives.</em></li>
<li><em>Evangelize overall Creative Pro product offering within associated verticals.</em></li>
</ul>
<p><em>Knowledge &amp; Skills:</em></p>
<ul>
<li><em>Good industry knowledge in design, print and web publishing, ability to communicate with different levels of people, articulate and credibly discuss industry issues, trends and business solutions with customers/prospects would be a key asset.</em></li>
<li><em>At least 5 years of progressive experience in selling software and proven track record in meeting/exceeding the sales quota strong ability to influence people and align remote teams to achieve agreed goals and objectives, establish good working relationship with channel partner &amp; customer able to work under pressure in fast changing environment.</em></li>
<li><em>Thorough understanding of the Creative Pro sector.</em></li>
<li><em>Experience in evangelizing solution offerings within the Multi Media industry having been involved in sales at some level.</em></li>
<li><em>Excellent presentation (demo) skills.</em></li>
<li><em>Business planning enabled/motivated.</em></li>
<li><em>Highly motivated individuals with good written, spoken and presentation skills.</em></li>
<li><em>Language skills: Fluency in English, French and Dutch.</em></li>
<li><em>Demonstrated leadership skills and excellent interpersonal skills.</em></li>
<li><em>Outgoing personality and be a self-starter.</em></li>
<li><em>Confidence, mature, aggressive and results-oriented.</em></li>
<li><em>Degree in computer science, business or related disciplines.</em></li>
</ul>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.waldosmeets.com/2007/10/24/adobe-benelux-is-hiring-a-business-development-manager-for-the-creative-pro-market/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adobe magazine on Customer Engagement</title>
		<link>http://www.waldosmeets.com/2007/10/21/adobe-magazine-on-customer-engagement/</link>
		<comments>http://www.waldosmeets.com/2007/10/21/adobe-magazine-on-customer-engagement/#comments</comments>
		<pubDate>Sun, 21 Oct 2007 21:15:36 +0000</pubDate>
		<dc:creator>Waldo Smeets</dc:creator>
				<category><![CDATA[Adobe Technology]]></category>
		<category><![CDATA[Rich Internet Applications]]></category>

		<guid isPermaLink="false">http://www.waldosmeets.com/2007/10/21/adobe-magazine-on-customer-engagement/</guid>
		<description><![CDATA[We released a very interesting dutch magazine on Customer Engagement (request print here) that we created for Adobe Business Exchange &#8211;  the conference for business and marketing managers regarding Customer Engagement through the internet which takes place in The Hague on October 25th.
The magazine has the subtitle &#8220;The challange of customer engagement &#8211; stay [...]]]></description>
			<content:encoded><![CDATA[<p>We released a <a href="http://www.publitas.nl/exchange/special_nl_2007/" target="_blank">very interesting dutch magazine on Customer Engagement</a> (<a href="http://www.adobe.com/nl/special/aanvraagmagazine/" target="_blank">request print here</a>) that we created for <a href="http://www.adobe-business-exchange.com/nl/" target="_blank">Adobe Business Exchange</a> &#8211;  the conference for business and marketing managers regarding Customer Engagement through the internet which takes place in The Hague on October 25th.</p>
<p>The magazine has the subtitle &#8220;The challange of customer engagement &#8211; stay ahead of the game&#8221; and features case studies and background articles on how customers have been using Adobe technology to improve customer (and employee) engagement:</p>
<ul>
<li>Philips talks about how and why they used Flex and AIR on top of SAP</li>
<li>Robeco explains why offering proper product information is a Unique Selling Point and how Flex helps here</li>
<li>DutchView talks more about video experiences and how they teamed with Adobe to deliver a scalable end-to-end solution for the Dutch market to use</li>
<li>AXA tells how they used PDF and Adobe LiveCycle to streamline business processes</li>
<li>Belgacom has a case study on how they used Flex to deliver their Rich Internet TV experience</li>
<li>Adobe&#8217;s own Jeff Whatcott explains the Adobe Engagement Platform</li>
<li>SAP explains why it partnered with Adobe to deliver better frontends to their business applications</li>
<li>And more business information articles on Web 2.0 within enterprises, document archiving, and customer self service</li>
</ul>
<p>Adobe is more and more moving into these business oriented events. The setting is obviously different than the designer and developer conferences: more ROI talks, many case studies, well known managers explaining their vision and last but not least&#8230;. more suits! To highlight some of this years visionary presenters:</p>
<ul>
<li> Forrester Research &#8211; How to build loyalty with every interaction?</li>
<li>ABN AMRO, Peter Wonder, executive vice president &#8211; on digital document workflows</li>
<li>Philips, Gilles Domartini, VP &amp; General Manager Online Sales and Marketing &#8211; on Philipsâ€™ online business transformatie strategy</li>
<li>SAP &#8211; on Business Network Transformation</li>
<li>Adobe, Jeff Whatcott, Executive Vice President &#8211; on The Challenge of Customer Engagement</li>
</ul>
<p>In the afternoon there will by more presentations by Robeco, Johan Enschede Amsterdam, DutchView, Philips Lighthing and many more. You can read more and register through <a href="http://www.adobe-business-exchange.com/nl/" target="_blank">www.adobe-business-exchange.com/nl/</a> or <a href="http://www.waldosmeets.com/downloads/temp/abe_form_NL.pdf" target="_blank">through this PDF</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waldosmeets.com/2007/10/21/adobe-magazine-on-customer-engagement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
