<?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>Maxa Blog</title>
	<atom:link href="http://mkblog.exadel.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mkblog.exadel.com</link>
	<description>Just some random thoughts about technology, travel and anything else.</description>
	<lastBuildDate>Mon, 15 Mar 2010 18:21:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>JavaFX plug-in for Eclipse: suggest features, try nightly builds</title>
		<link>http://mkblog.exadel.com/ria/javafx-ria/javafx-plug-in-for-eclipse-suggest-features-try-builds/</link>
		<comments>http://mkblog.exadel.com/ria/javafx-ria/javafx-plug-in-for-eclipse-suggest-features-try-builds/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 18:21:36 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[JavaFX]]></category>
		<category><![CDATA[JavaFX plug-in]]></category>
		<category><![CDATA[Open source]]></category>

		<guid isPermaLink="false">http://mkblog.exadel.com/?p=1388</guid>
		<description><![CDATA[With the launch of exadel.org, it&#8217;s now very easy to try nightly builds of JavaFX plug-in for Eclipse, and view and submit new bugs. Using Jira (or the forum), you can tell us what features you would like to see in JavaFX plug-in for Eclipse. Our plan is to have a very short release cycle, [...]]]></description>
			<content:encoded><![CDATA[<p>With the launch of<a href="http://www.exadel.org"> exadel.org</a>, it&#8217;s now very easy to try <a href="http://exadel.org/javafxplugin">nightly builds</a> of JavaFX plug-in for Eclipse, and <a href="http://jira.exadel.org/">view and submit new bugs</a>. Using <a href="http://jira.exadel.org/">Jira</a> (or the <a href="http://exadel.org/forum">forum</a>), you can tell us what features you would like to see in JavaFX plug-in for Eclipse. Our plan is to have a very short release cycle, around 2 weeks. We will fix bugs and add a few minor features each release. Let us know what features you would like to see!</p>
]]></content:encoded>
			<wfw:commentRss>http://mkblog.exadel.com/ria/javafx-ria/javafx-plug-in-for-eclipse-suggest-features-try-builds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RichFaces rich:isUserInRole function</title>
		<link>http://mkblog.exadel.com/ria/richfaces-ria/richfaces-richisuserinrole-function/</link>
		<comments>http://mkblog.exadel.com/ria/richfaces-ria/richfaces-richisuserinrole-function/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 20:29:22 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[RichFaces]]></category>
		<category><![CDATA[RichFaces-howto]]></category>

		<guid isPermaLink="false">http://mkblog.exadel.com/?p=1376</guid>
		<description><![CDATA[I blogged earlier about four built-in RichFaces functions that come in very handy, especially the rich:component(id) one. Many rich components (from rich;* tag library) provide client-side JavaScript API. To access this API, you need to use rich:component(id) and add the JavaScript method name, such as: #{rich:component(&#8216;id&#8217;)}.someMethod(). For example, go to  rich:listShuttle component in RichFaces [...]]]></description>
			<content:encoded><![CDATA[<p>I <a href="http://mkblog.exadel.com/ria/richfaces-ria/richfaces-built-in-client-functions/">blogged</a> earlier about four built-in RichFaces functions that come in very handy, especially the rich:component(id) one. Many rich components (from rich;* tag library) provide client-side JavaScript API. To access this API, you need to use rich:component(id) and add the JavaScript method name, such as: #{rich:component(&#8216;id&#8217;)}.someMethod(). For example, go to <a href="http://docs.jboss.org/richfaces/latest_3_3_X/en/devguide/html/rich_listShuttle.html"> rich:listShuttle component</a> in RichFaces Developers Guide and scroll to ReferenceData/JavaScript API section. That&#8217;s the JavaScript API you can call on this component. </p>
<p>There is one more, less known function available in RichFaces. It&#8217;s called rich:isUserInRole(role). It lets you define security roles in web.xml file and then use the role on a page. For example, suppose only the administrator should see some part of a page:</p>

<div class="wp_syntax"><div class="code"><pre class="xml xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;rich:panel</span> <span style="color: #000066;">header</span>=<span style="color: #ff0000;">&quot;Admin panel&quot;</span> <span style="color: #000066;">rendered</span>=<span style="color: #ff0000;">&quot;#{rich:isUserInRole('admin')}&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  Very sensitive information
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/rich:panel<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;rich:panel</span> <span style="color: #000066;">header</span>=<span style="color: #ff0000;">&quot;User panel&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
   General information
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/rich:panel<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>In the above example, unless you were authenticated as &#8216;amdin&#8217;, you will not see the top panel. Of course you need the security role in web.xml file. It&#8217;s a nice and handy feature to have available. </p>
]]></content:encoded>
			<wfw:commentRss>http://mkblog.exadel.com/ria/richfaces-ria/richfaces-richisuserinrole-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JBoss Tools 3.1 is now out</title>
		<link>http://mkblog.exadel.com/jsf/jboss-tools-3-1-is-now-out/</link>
		<comments>http://mkblog.exadel.com/jsf/jboss-tools-3-1-is-now-out/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 18:07:26 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[JSF]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Exadel]]></category>
		<category><![CDATA[JBossTools]]></category>

		<guid isPermaLink="false">http://mkblog.exadel.com/?p=1372</guid>
		<description><![CDATA[JBoss Tools team released JBoss Tools version 3.1 this week. It&#8217;s the best IDE for doing enterprise Java development with JSF, RichFaces, Seam, JPA, Hibernate more. You now get JSF2 as well as CDI support. You may or may not have known but over 50% of code in JBoss Tools is being written by Exadel [...]]]></description>
			<content:encoded><![CDATA[<p>JBoss Tools team released JBoss Tools version 3.1 this week. It&#8217;s the best IDE for doing enterprise Java development with JSF, RichFaces, Seam, JPA, Hibernate <a href="http://java.dzone.com/news/opening-jboss-toolbox-31">more</a>. You now get JSF2 as well as CDI support. You may or may not have known but over 50% of code in JBoss Tools is being written by <a href="http://www.exadel.com">Exadel</a> team. I want to thank them for doing an amazing job!  It&#8217;s an excellent set of tools that really makes enterprise Java development much easier. </p>
]]></content:encoded>
			<wfw:commentRss>http://mkblog.exadel.com/jsf/jboss-tools-3-1-is-now-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using BIRT and Actuate with JSF, RichFaces</title>
		<link>http://mkblog.exadel.com/jsf/using-birt-and-actuate-with-jsf-richfaces/</link>
		<comments>http://mkblog.exadel.com/jsf/using-birt-and-actuate-with-jsf-richfaces/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 17:30:05 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[JSF]]></category>
		<category><![CDATA[jsf4birt]]></category>

		<guid isPermaLink="false">http://mkblog.exadel.com/?p=1365</guid>
		<description><![CDATA[Virgil Dodson from Actuate posted a great tutorial on how to use BIRT and Actuate with JSF. RichFaces is used as well. The tutorial uses jsf4birt library developed by Exadel. 
jsf4birt can be downloaded here. 
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.birt-exchange.org/blog/?author=33">Virgil Dodson</a> from Actuate posted a great <a href="http://www.birt-exchange.org/wiki/Using_BIRT_and_Actuate_with_JavaServer_Faces%28JSF%29/">tutorial</a> on how to use BIRT and Actuate with JSF. RichFaces is used as well. The tutorial uses <a href="http://exadel.com/web/portal/download/jsf4birt">jsf4birt</a> library developed by Exadel. </p>
<p>jsf4birt can be downloaded <a href="http://exadel.com/web/portal/download/jsf4birt">here</a>. </p>
]]></content:encoded>
			<wfw:commentRss>http://mkblog.exadel.com/jsf/using-birt-and-actuate-with-jsf-richfaces/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaFX plug-in for Eclipse version 1.2.2 is now available</title>
		<link>http://mkblog.exadel.com/ria/javafx-ria/javafx-plug-in-for-eclipse-version-1-2-2-is-now-available/</link>
		<comments>http://mkblog.exadel.com/ria/javafx-ria/javafx-plug-in-for-eclipse-version-1-2-2-is-now-available/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 22:38:54 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[JavaFX]]></category>
		<category><![CDATA[JavaFX plug-in]]></category>

		<guid isPermaLink="false">http://mkblog.exadel.com/?p=1357</guid>
		<description><![CDATA[With the launch of exadel.org, we also made a new version of JavaFX plug-in available, version 1.2.2. Download the new version here. 
In addition to bug fixing, it has the following new features: 

New JavaFX Script Wizard
Outline View with navigation

As we have been promising, the plug-in is now open source (under GPL). You can download [...]]]></description>
			<content:encoded><![CDATA[<p>With the <a href="http://mkblog.exadel.com/open-source/exadel-org-exadels-open-source-community-and-projects/">launch of exadel.org</a>, we also made a new version of JavaFX plug-in available, version 1.2.2. Download the new version <a href="http://www.exadel.org">here</a>. </p>
<p>In addition to bug fixing, it has the following new features: </p>
<ul>
<li>New JavaFX Script Wizard</li>
<li>Outline View with navigation</li>
</ul>
<p>As we have been promising, the plug-in is now open source (under GPL). You can download the sources, access project Jira and post questions and comments to new forum all from <a href="http://www.exadel.org">www.exadel.org</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://mkblog.exadel.com/ria/javafx-ria/javafx-plug-in-for-eclipse-version-1-2-2-is-now-available/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>exadel.org &#8211; Exadel&#8217;s open source community and projects</title>
		<link>http://mkblog.exadel.com/open-source/exadel-org-exadels-open-source-community-and-projects/</link>
		<comments>http://mkblog.exadel.com/open-source/exadel-org-exadels-open-source-community-and-projects/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 21:46:45 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Open source]]></category>

		<guid isPermaLink="false">http://mkblog.exadel.com/?p=1350</guid>
		<description><![CDATA[I&#8217;m happy to announce that our open source community and projects web site exadel.org is now live. It also hosts its first project: JavaFX plug-in for Eclipse. Why did we create this web site? Exadel always had a number of projects available on its site for download, most of them are free. One of the [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m happy to announce that our open source community and projects web site<a href="http://www.exadel.org"> exadel.org</a> is now live. It also hosts its first project: <a href="http://exadel.org/javafxplugin">JavaFX plug-in for Eclipse</a>. Why did we create this web site? Exadel always had a number of <a href="http://www.exadel.com/web/portal/products">projects</a> available on its site for download, most of them are free. One of the biggest challenges for users was to get involved. Even though most products were open source, it wasn&#8217;t easy to get the source code. The actual download was hosted on exadel.com, support forum for each project was hosted on Google Groups, and there was no way to enter any bugs.  There was a big disconnect. exadel.org will try to solve all this, it will provide everything you would expect from man open source site and community.   Everything is integrated now, you get product download, source code, forum and Jira to enter bugs. Our goal is to make it as simple as possible to get involved and use our products. </p>
<p>exadel.org is still work in progress. We are planning to move more projects there in the near future. We would love to hear your feedback, let us know what we can do better!</p>
<p><a href="http://exadel.org/javafxplugin">JavaFX plug-in for Eclipse</a> has been updated as well, it&#8217;s now version 1.2.2 with the following new feature:</p>
<ul>
<li>New JavaFX Script Wizard</li>
<li>Outline View with navigation</li>
</ul>
<p>I&#8217;ll have a separate blog post about the plug-in. </p>
]]></content:encoded>
			<wfw:commentRss>http://mkblog.exadel.com/open-source/exadel-org-exadels-open-source-community-and-projects/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Android M-Commerce client by Exadel</title>
		<link>http://mkblog.exadel.com/mobile/android-m-commerce-client-by-exadel/</link>
		<comments>http://mkblog.exadel.com/mobile/android-m-commerce-client-by-exadel/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 18:45:20 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[android]]></category>

		<guid isPermaLink="false">http://mkblog.exadel.com/?p=1347</guid>
		<description><![CDATA[Exadel has a new Android M-Commerce client. Read more here. 

]]></description>
			<content:encoded><![CDATA[<p>Exadel has a new Android M-Commerce client. Read more <a href="http://blog.exadel.com/2010/03/03/check-out-our-new-android-m-commerce-client/">here</a>. </p>
<p><img alt="" src="http://blog.exadel.com/wp-content/uploads/2010/03/screenshot35.png" title="Android demo" class="alignnone" width="378" height="634" /></p>
]]></content:encoded>
			<wfw:commentRss>http://mkblog.exadel.com/mobile/android-m-commerce-client-by-exadel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Webinar recording: Add BIRT Re­porting to JSF Ap­pli­ca­tions Using RichFaces</title>
		<link>http://mkblog.exadel.com/jsf/webinar-recording-add-birt-re%c2%adporting-to-jsf-ap%c2%adpli%c2%adca%c2%adtions-using-richfaces/</link>
		<comments>http://mkblog.exadel.com/jsf/webinar-recording-add-birt-re%c2%adporting-to-jsf-ap%c2%adpli%c2%adca%c2%adtions-using-richfaces/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 18:25:14 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[JSF]]></category>
		<category><![CDATA[RichFaces]]></category>

		<guid isPermaLink="false">http://mkblog.exadel.com/?p=1343</guid>
		<description><![CDATA[Add BIRT Reporting to JSF Applications using RichFaces recording is available here.  You can also download the complete application I showed during the webinar here. 
]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.exadel.com/2010/02/09/update-exadel-and-actuate-webinar-on-jsf-richfaces-birt/">Add BIRT Reporting to JSF Applications using RichFaces</a> recording is available <a href="http://blog.exadel.com/2010/02/09/update-exadel-and-actuate-webinar-on-jsf-richfaces-birt/">here</a>.  You can also download the complete application I showed during the webinar <a href="http://exadel.com/web/portal/download/jsf4birt">here</a>. </p>
]]></content:encoded>
			<wfw:commentRss>http://mkblog.exadel.com/jsf/webinar-recording-add-birt-re%c2%adporting-to-jsf-ap%c2%adpli%c2%adca%c2%adtions-using-richfaces/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>RichFaces 4, JSF 2</title>
		<link>http://mkblog.exadel.com/ria/richfaces-ria/richfaces-4-jsf-2/</link>
		<comments>http://mkblog.exadel.com/ria/richfaces-ria/richfaces-4-jsf-2/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 18:18:58 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[RichFaces]]></category>

		<guid isPermaLink="false">http://mkblog.exadel.com/?p=1338</guid>
		<description><![CDATA[Last week I attended, presented and taught 1-day workshop at JSFdays conference in Vienna, Austria. The conference was great and I&#8217;m already looking forward to next year. What&#8217;s amazing, virtually everyone I spoke with was using or planning to use RichFaces. One of the most frequent questions I was asked is when RichFaces 4 will [...]]]></description>
			<content:encoded><![CDATA[<p>Last week I attended, presented and taught 1-day workshop at <a href="http://www.jsfdays.com">JSFdays</a> conference in Vienna, Austria. The conference was great and I&#8217;m already looking forward to next year. What&#8217;s amazing, virtually everyone I spoke with was using or planning to use RichFaces. One of the most frequent questions I was asked is when RichFaces 4 will be available? Although, I&#8217;m not in position to confirm this, it&#8217;s safe to guess that 4.0 GA will be available sometime in mid-summer.  The RichFaces team has been working on JSF 2 support in RichFaces for some time now. First, there is <a href="http://www.jboss.org/richfaces/download/milestones.html">RichFaces 4 Alpha 1</a>. The team is now working on Alpha 2 which is also going to be the<a href="http://community.jboss.org/wiki/RichFaces40ALPHA2ReleasePlan"> last Alpha release</a>. Second, there is now <a href="http://in.relation.to/Bloggers/RichFaces333CR1ReleasedWithJSF20Support">RichFaces 3.3.3 CR1</a> also with basic JSF 2 support (read more about this version <a href="http://in.relation.to/Bloggers/RichFaces333CR1ReleasedWithJSF20Support">here</a>). </p>
<p>As you probably know, JSF 2 Ajax support is greatly inspired by RichFaces 3.x and more specifically the a4j:support tag. RichFaces 4 is not going to stop here, it&#8217;s going to add advanced features from version 3.x plus some new features on top of standard JSF 2 Ajax support. Here is <a href="http://in.relation.to/Bloggers/JSF20RoadmapForRichFaces#H-RichFaces400">RichFaces 4 road map by Jay Balunas</a> which also contains a list of new and improved features in RichFaces 4. </p>
]]></content:encoded>
			<wfw:commentRss>http://mkblog.exadel.com/ria/richfaces-ria/richfaces-4-jsf-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RichFaces in the cloud</title>
		<link>http://mkblog.exadel.com/ria/richfaces-in-the-cloud/</link>
		<comments>http://mkblog.exadel.com/ria/richfaces-in-the-cloud/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 08:27:44 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[RIA]]></category>
		<category><![CDATA[RichFaces]]></category>
		<category><![CDATA[cloud]]></category>

		<guid isPermaLink="false">http://mkblog.exadel.com/?p=1333</guid>
		<description><![CDATA[Learn how to run RichFaces applications in the cloud. 

Ingres Highlights Role in Exadel Cloud in a Box
RIA on the Cloud with RichFaces and Ingres 

]]></description>
			<content:encoded><![CDATA[<p>Learn how to run RichFaces applications in the cloud. </p>
<ul>
<li><a href="http://blog.exadel.com/2010/02/23/ingres-highlights-role-in-exadel-cloud-in-a-box/">Ingres Highlights Role in Exadel Cloud in a Box</a></li>
<li><a href="http://blog.exadel.com/2009/11/30/427/">RIA on the Cloud with RichFaces and Ingres </a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://mkblog.exadel.com/ria/richfaces-in-the-cloud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
