<?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>Rule of Tech</title>
	<atom:link href="http://ruleoftech.com/feed" rel="self" type="application/rss+xml" />
	<link>http://ruleoftech.com</link>
	<description>Technology shall have no dominion</description>
	<lastBuildDate>Wed, 15 May 2013 12:52:35 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Web application test automation with Robot Framework</title>
		<link>http://ruleoftech.com/2013/web-application-test-automation-with-robot-framework</link>
		<comments>http://ruleoftech.com/2013/web-application-test-automation-with-robot-framework#comments</comments>
		<pubDate>Wed, 15 May 2013 12:52:35 +0000</pubDate>
		<dc:creator>Marko</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[robot framework]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://ruleoftech.com/?p=509</guid>
		<description><![CDATA[<p>Software quality has always been important but seems that lately it has become more generally acknowledged fact that quality assurance and testing aren&#8217;t things to be left behind. With Java EE Web applications you have different ways to achieve test coverage and test that your application works with tools like JUnit, Mockito and DBUnit.&#8230; <a href="http://ruleoftech.com/2013/web-application-test-automation-with-robot-framework" class="read_more">Continue reading <span class=\\\"meta-nav\\\">&#8594;</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Software quality has always been important but seems that lately it has become more generally acknowledged fact that quality assurance and testing aren&#8217;t things to be left behind. With Java EE Web applications you have different ways to achieve test coverage and test that your application works with tools like JUnit, Mockito and DBUnit. But what about testing your web application with different browsers? One great way is to use <a href="http://robotframework.org/">Robot Framework</a> which is a generic test automation framework and when combined with Selenium 2 it makes both writing your tests and running them quite intuitive.  </p>
<p><strong>Contents</strong></p>
<ul>
<li><a href="#intro">Introduction</a></li>
<li><a href="#install">Installing test tools</a>
<ul>
<li><a href="#python">Python installation</a></li>
<li><a href="#rfsel">Robot Framework and Selenium2Library installation</a></li>
<li><a href="#ride">RIDE installation</a></li>
</ul>
</li>
<li><a href="#tests">Executing Robot Framework tests</a></li>
<li><a href="#browsers">Using different browsers</a></li>
<li><a href="#results">Reading the results</a></li>
<li><a href="#summary">Summary</a>
<ul>
<li><a href="#references">References</a></li>
</ul>
</li>
</ul>
<p><a name="intro"></a></p>
<h3>Introduction</h3>
<p><a href="http://robotframework.org/">Robot Framework</a> which is a generic test automation framework for acceptance testing and its tabular test data syntax is almost plain English and easy to understand. Its testing capabilities can be extended by test libraries implemented either with Python or Java, and users can create new higher-level keywords from existing ones using the same syntax that is used for creating test cases. Robot Framework itself is open source and released under Apache License 2.0, and most of the libraries and tools in the ecosystem are also open source. The development of the core framework is supported by Nokia Siemens Networks. </p>
<p>Robot Framework doesn&#8217;t do any specific testing activity but instead it acts as a front end for libraries like <a href="https://github.com/rtomac/robotframework-selenium2library">Selenium2Library</a>. Selenium2Library is a web testing library for Robot Framework that leverages the <a href="http://seleniumhq.org/docs/03_webdriver.html">Selenium 2 (WebDriver)</a> libraries from the <a href="http://seleniumhq.org">Selenium project</a>. In practice it starts the browser (eg. IE, Firefox, Chrome) and runs the tests against it natively as a user would. There&#8217;s no need to manually click through the user interface.</p>
<p>Robot Framework has good <a href="http://robotframework.org/#documentation">documentation</a> and by going through the <a href="https://bitbucket.org/robotframework/webdemo/wiki/Home">&#8220;Web testing with Robot Framework and Selenium2Library&#8221;</a> demo you see how it&#8217;s used in web testing, get introduction to test data syntax, how tests are executed, and how logs and reports look like. For more detailed view about Robot Framework&#8217;s features you can read the <a href="http://robotframework.googlecode.com/hg/doc/userguide/RobotFrameworkUserGuide.html?r=2.7.7">User Guide</a>.</p>
<p><a name="install"></a></p>
<h3>Installing test tools</h3>
<p>The <a href="https://bitbucket.org/robotframework/webdemo/wiki/Home">&#8220;Web testing with Robot Framework and Selenium2Library&#8221;</a> demo is good starting point for getting to know Robot Framework but it more or less skips the details of setting up the system and as the <a href="http://code.google.com/p/robotframework/wiki/Installation">installation instructions</a> are a bit too verbose here is an example how to install and use Robot Framework and Selenium 2 in 64-bit Windows 7.</p>
<p><a name="python"></a></p>
<h4>Python installation</h4>
<p>First we need Python as a precondition to run Robot Framework and we install Python version 2.7.x as Robot Framework is currently not compatible with Python 3.x. From the <a href="http://python.org/download/">Python download page</a> select <a href="http://python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi">Python 2.7.4 Windows X86-64 Installer</a>.</p>
<p>For using the <a href="https://github.com/robotframework/RIDE">RIDE editor</a> we also need wxPython. From the <a href="http://wxpython.org/download.php#stable">download page</a> select <a href="http://downloads.sourceforge.net/wxpython/wxPython2.8-win64-unicode-2.8.12.1-py27.exe">wxPython2.8-win64-unicode-py27</a> for 64-bit Python 2.7.</p>
<p>Next we need to <a href="http://robotframework.googlecode.com/hg/doc/userguide/RobotFrameworkUserGuide.html?r=2.7.7#path">set up the PATH</a> environment variable in Windows.</p>
<p>Open <em>Start > Settings > Control Panel > System > Advanced > Environment Variables</em><br />
Select <em>System variables > PATH > Edit</em> and add e.g. <code>;\Python27;C:\Python27\Scripts</code> at the end of the value.<br />
Exit the dialog with OK to save the changes.</p>
<p>We also need some Python package managers like distribute and pip which have Windows installers by Christoph Gohlke.</p>
<h5>Distribute:</h5>
<p><a href="https://pypi.python.org/pypi/distribute">Distribute</a> is a tool to easily download, build, install, upgrade, and uninstall Python packages. The <a href="https://pypi.python.org/pypi/distribute/#installation-instructions">installation</a> is easiest by <a href="http://www.lfd.uci.edu/~gohlke/pythonlibs/#distribute">downloading it as binary</a>. Just run the installer and point it to your Python installation directory.</p>
<h5>Pip:</h5>
<p><a href="https://pypi.python.org/pypi/pip">pip</a> is a tool for installing and managing Python packages. The installation is easiest by <a href="http://www.lfd.uci.edu/~gohlke/pythonlibs/#pip">downloading it as a binary</a>. Just run the installer and point it to your Python installation directory.</p>
<p><a name="rfsel"></a></p>
<h4>Robot Framework and Selenium2Library installation</h4>
<p>In practice it is easiest to install Robot Framework and Selenium2Library along with its dependencies using pip package manager. Once you have pip installed, all you need to do is running these commands in your Command Prompt:</p>
<pre>
1. pip install robotframework
2. pip install robotframework-selenium2library
</pre>
<p>It&#8217;s good to notice that pip has a &#8220;feature&#8221; that unless a specific version is given, they install the latest possible version even if that is an alpha or beta release. A workaround is giving the version explicitly. like <code>pip install robotframework==2.7.7</code></p>
<p><a name="ride"></a></p>
<h4>RIDE installation</h4>
<p><a href="https://github.com/robotframework/RIDE">RIDE </a>is a light-weight and intuitive editor for Robot Framework test case files. It can be installed by using <a href="http://code.google.com/p/robotframework-ride/downloads/list">Windows installer</a> (select robotframework-ride-1.1.win-amd64.exe) or with pip using:</p>
<pre>
pip install robotframework-ride
</pre>
<p>The Windows installer does a shortcut to the desktop and you can start it from Command Prompt with command <em>ride.py</em>.</p>
<p>Now you have everything you need to create and execute Robot Framework tests.</p>
<p><a name="tests"></a></p>
<h3>Executing Robot Framework tests</h3>
<p>As described in <a href="https://bitbucket.org/robotframework/webdemo/wiki/Home#rst-header-running-demo">WebDemo</a> running tests requires the demo application located under demoapp directory to be running. It can be started by executing it from the command line:</p>
<pre>
python demoapp/server.py
</pre>
<p>After the demo application is started, it is be available at <em>http://localhost:7272</em> and it needs to be running while executing the automated tests. It can be shut down by using Ctrl-C.</p>
<p>In Robot Framework each file contains one or more tests and is treated as a test suite. Every directory that contains a test suite file or directory is also a test suite. When Robot Framework is executed on a directory it will go through all files and directories of the correct kind except those that start with an underscore character.</p>
<p>WebDemo&#8217;s test cases are located in login_tests directory and to execute them all type in your Command Prompt:</p>
<pre>
pybot login_tests
</pre>
<p>Running the tests opens a browser window which Selenium 2 is driving natively as a user would and you can see the interactions.<br />
When the test is finished executing four files will have been generated: report.html, log.html and output.xml. On failed tests selenium takes screenshots which are named like selenium-screenshot-1.png. The browser can also be run on a remote machine using the Selenium Server.</p>
<p>You can also run an individual test case file and use various command line options (see <em>pybot &#8211;help</em>) supported by Robot Framework:</p>
<pre>
pybot login_tests/valid_login.txt
pybot --test InvalidUserName --loglevel DEBUG login_tests
</pre>
<p>If you selected Firefox as your browser and get an error like <em>&#8220;Type Error: environment can only contain strings&#8221;</em> that&#8217;s a bug in Selenium&#8217;s Firefox profile. You can fix it with a <a href="https://groups.google.com/forum/?fromgroups=#!topic/robotframework-users/8QcfUFlJZCQ">&#8220;monkey patch&#8221;</a> to <em>C:\Python27\Lib\site-packages\selenium\webdriver\firefox\firefox_profile.py</em>.</p>
<p><a name="browsers"></a></p>
<h3>Using different browsers</h3>
<p>The browser that is used is controlled by <em>${BROWSER}</em> variable defined in resource.txt resource file. Firefox browser is used by default, but that can be easily overridden from the command line.</p>
<pre>
pybot --variable BROWSER:Chrome login_tests
pybot --variable BROWSER:IE login_tests
</pre>
<p>Browsers like Chrome and Internet Explorer require separate <a href="http://code.google.com/p/selenium/wiki/InternetExplorerDriver">Internet Explorer Driver</a> and <a href="http://code.google.com/p/selenium/wiki/ChromeDriver">Chrome Driver</a> to be installed before they can be used. InternetExplorerDriver can be downloaded from <a href="http://code.google.com/p/selenium/downloads/list">Selenium project</a> and ChromeDriver from <a href="http://code.google.com/p/chromedriver/downloads/list">Chromium project</a>. Just place them both somewhere in your PATH. </p>
<p>With Internet Explorer Driver you can get an error like &#8220;&#8216;Unexpected error launching Internet Explorer. Protected Mode settings are not the same for all zones. Enable Protected Mode must be set to the same value (enabled or disabled) for all zones.&#8217;&#8221;. As it reads in the driver&#8217;s <a href="http://code.google.com/p/selenium/wiki/InternetExplorerDriver#Required_Configuration">configuration</a> you must set the Protected Mode settings for each zone to be the same value. To set the Protected Mode settings in Internet Explorer, choose &#8220;Internet Options&#8230;&#8221; from the Tools menu, and click on the Security tab. For each zone, there will be a check box at the bottom of the tab labeled &#8220;Enable Protected Mode&#8221;. </p>
<p><a name="results"></a></p>
<h3>Reading the results</h3>
<p>After the tests have run there are couple of result files to read: report.html and log.html.</p>
<p>The report.html shows the results of your tests and its background is green when all tests have passed and red if any have failed. It also shows &#8220;Test Statistics&#8221; for how many tests have passed and failed. &#8220;Test Details&#8221; shows how long the test took to run and, if it failed, what the fail message was.</p>
<p>The log.html gives you more detailed information about why some test fails if the fail message doesn&#8217;t make it obvious. It also gives a detailed view of the execution of each of the tests.</p>
<p><a name="summary"></a></p>
<h3>Summary</h3>
<p>From the short experience I have played with Robot Framework it seems to be powerful tool for designing and executing tests and good way to improve your application&#8217;s overall quality.</p>
<p>Next it&#8217;s time to get to know the Robot Framework syntax better, write some tests and run Selenium Server. Also the <a href="http://robotframework.org/MavenPlugin/">Maven plugin</a> and <a href="https://github.com/NitorCreations/RobotFramework-EclipseIDE">RobotFramework-EclipseIDE plugin</a> looks interesting.</p>
<p><a name="references"></a></p>
<h4>References</h4>
<p><a href="http://robotframework.org/#documentation">Robot Framework documentation</a><br />
<a href="http://robotframework.googlecode.com/hg/doc/userguide/RobotFrameworkUserGuide.html?r=2.7.7">Robot Framework User Guide</a><br />
<a href="https://bitbucket.org/robotframework/webdemo/wiki/Home">Web testing with Robot Framework and Selenium2Library demo</a><br />
<a href="https://github.com/robotframework/RIDE">RIDE: light-weight and intuitive editor for Robot Framework test case files</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ruleoftech.com/2013/web-application-test-automation-with-robot-framework/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Patching RichFaces 3.3.3 AJAX.js for IE9</title>
		<link>http://ruleoftech.com/2013/patching-richfaces-3-3-3-ajax-js-for-ie9</link>
		<comments>http://ruleoftech.com/2013/patching-richfaces-3-3-3-ajax-js-for-ie9#comments</comments>
		<pubDate>Wed, 24 Apr 2013 12:03:59 +0000</pubDate>
		<dc:creator>Marko</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[jsf1.2]]></category>
		<category><![CDATA[richfaces]]></category>

		<guid isPermaLink="false">http://ruleoftech.com/?p=483</guid>
		<description><![CDATA[<p>There are always some problems when working with 3rd party frameworks when the world moves forward but the framework you&#8217;re using doesn&#8217;t. After JSF 2 was released the RichFaces development moved to 4.x version and they dropped support for the older versions although many users are still using the older versions as it&#8217;s not trivial or free to update to JSF 2 &#038; RichFaces 4.&#8230; <a href="http://ruleoftech.com/2013/patching-richfaces-3-3-3-ajax-js-for-ie9" class="read_more">Continue reading <span class=\\\"meta-nav\\\">&#8594;</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>There are always some problems when working with 3rd party frameworks when the world moves forward but the framework you&#8217;re using doesn&#8217;t. After JSF 2 was released the RichFaces development moved to 4.x version and they dropped support for the older versions although many users are still using the older versions as it&#8217;s not trivial or free to update to JSF 2 &#038; RichFaces 4. Now if users have problems with the older versions they just have to patch it themselves as the RichFaces team isn&#8217;t going to fix e.g. the IE9 issues.</p>
<p>The problem with Internet Explorer 9 is that with RichFaces 3.3.3.Final the Ajax components doesn&#8217;t work and there are errors shown in the JavaScript Console. For example when testing RichFaces Ajax demos the JavaScript is assigning <code>A.outerHTML = new XMLSerializer().serializeToString(C)</code> which gives the following error:</p>
<pre>
<code>SCRIPT16386: No such interface supported</code>
</pre>
<p>Fortunately it&#8217;s relatively easy to fix it for IE9 by patching the AJAX.js JavaScript file in RichFaces. The process is discussed in <a href="https://issues.jboss.org/browse/RF-9485">RichFaces&#8217;s RF-9485 -JIRA ticket</a> and <a href="https://community.jboss.org/message/753319#753319">JBoss forum message</a>. In short the patching for AJAX.js contains following steps:</p>
<h2>Upgrading Sarissa Framework and patching RichFaces AJAX.js file</h2>
<p>Resources:</p>
<ul>
<li>Sarissa framework: <a href="http://sourceforge.net/projects/sarissa/files/">http://sourceforge.net/projects/sarissa/files/</a></li>
<li>RichFaces sources: <a href="http://anonsvn.jboss.org/repos/richfaces/branches/community/3.3.X/">http://anonsvn.jboss.org/repos/richfaces/branches/community/3.3.X/</a></li>
</ul>
<p><strong>1)</strong> Instead of patching Sarissa as suggested in the ticket it&#8217;s better to upgrade Sarissa to 0.9.9.6 as it has some additional IE9 issues fixed.</p>
<p>Download Sarissa:<br />
<a href="http://sourceforge.net/projects/sarissa/files/sarissa/Sarissa%200.9.9.6/sarissa-0.9.9.6.jar/download">http://sourceforge.net/projects/sarissa/files/sarissa/Sarissa%200.9.9.6/sarissa-0.9.9.6.jar/download</a></p>
<p>Extract sarissa.js from the jar:<br />
<code>sarissa-0.9.9.6.jar/gr/abiss/js/sarissa/sarissa.js</code></p>
<p>Replace first part of AJAX.js (till EOF comment) or replace sarissa.js in richfaces souce resources.<br />
<code>richfaces-impl-3.3.3.Final.jar/org/ajax4jsf/javascript/scripts/AJAX.js</code> or <code>richfaces-ui-3.3.3.Final\framework\impl\src\main\javascript\ajaxjsf\</code></p>
<p><strong>2)</strong> For richfaces-impl work in non-compatibility mode in IE9, A4J.AJAX.replacePage method should be fixed in RichFaces sources in AJAX.js or JSFAJAX.js because custom document.open method does not work in IE9 document mode. </p>
<pre>
<code>Replace (line 2125 in AJAX.js, line 1121 in JFSAJAX.js)
	if(isIE) {  
With
	if(isIE&amp;&amp;!Sarissa._SARISSA_IS_IE9) { </code>
</pre>
<p><strong>3)</strong> You will also need to change or comment the next line in AJAX.js or JSFAJAX.js (<code>richfaces-ui-3.3.3.Final\framework\impl\src\main\javascript\ajaxjsf\</code>)</p>
<pre>
<code>Replace (line 2119 in AJAX.js, line 1044 in JFSAJAX.js)
	LOG.debug("Hidden JSF state fields: "+idsSpan);
to
	LOG.debug("Hidden JSF state fields: ");//+idsSpan);</code>
</pre>
<p>Otherwise you get the following error in IE9:</p>
<pre>
<code>	SCRIPT438: Object doesn't support this property or method
	For this line 2648 in framework pack:
	LOG.debug("Hidden JSF state fields: "+Q);</code>
</pre>
<p><strong>4)</strong> Now you have patched AJAX.js and you can either build a new RichFaces Jar, replace the original AJAX.js in RichFaces Jar with the patched one or just override it in your html. </p>
<p>The easiest way is just include the patched AJAX.js file as the last script-include within HEAD and it will take control over the bundled version of RichFaces.</p>
<p>In your template.jspx or similar:</p>
<pre>
<code>&lt;html&gt;
	&lt;head&gt;
	&lt;a4j:loadScript src="/js/AJAX_IE9fix.js" /&gt;
	...
	&lt;/head&gt;
	...</code>
</pre>
<p><strong>5)</strong> Done.</p>
<p>Other ways to fix IE9 compatibility issues has been discussed in tickets <a href="https://issues.jboss.org/browse/RF-10774">RF-10774</a> as forcing IE9 to use another document mode. Also suggested solutions are to implement a browser sniffer and <a href="https://community.jboss.org/message/638508#638508">tell the Sarissa library to use its own XMLSerializer</a> when Internet Explorer 9 is detected and <a href="https://community.jboss.org/message/593778#593778">forcing IE9 to run in an emulated mode</a> but neither of those worked for me.</p>
]]></content:encoded>
			<wfw:commentRss>http://ruleoftech.com/2013/patching-richfaces-3-3-3-ajax-js-for-ie9/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using the WebLogic Maven Plug-In for Deployment</title>
		<link>http://ruleoftech.com/2013/using-the-weblogic-maven-plug-in-for-deployment</link>
		<comments>http://ruleoftech.com/2013/using-the-weblogic-maven-plug-in-for-deployment#comments</comments>
		<pubDate>Fri, 19 Apr 2013 10:57:59 +0000</pubDate>
		<dc:creator>Marko</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[maven]]></category>
		<category><![CDATA[maven-plugins]]></category>
		<category><![CDATA[weblogic]]></category>

		<guid isPermaLink="false">http://ruleoftech.com/?p=464</guid>
		<description><![CDATA[<p><a href="http://docs.oracle.com/cd/E23943_01/web.1111/e13702/maven_deployer.htm">Using the WebLogic Maven plug-In for deployment</a> is much easier and quicker than going through the WebLogic Server&#8217;s AdminServer and Oracle Documentation provides good examples how to do it. </p>
<p>In short, generating WebLogic Maven Plug-In contains following steps:</p>
<p>1. Build the plug-in JAR file using the WebLogic JarBuilder Tool (wljarbuilder) under MW_HOME/wlserver_10.3/server/lib/ with the following command:</p>
<pre>java -jar wljarbuilder.jar -profile weblogic-maven-plugin</pre>
<p>2.&#8230; <a href="http://ruleoftech.com/2013/using-the-weblogic-maven-plug-in-for-deployment" class="read_more">Continue reading <span class=\\\"meta-nav\\\">&#8594;</span></a></p>]]></description>
				<content:encoded><![CDATA[<p><a href="http://docs.oracle.com/cd/E23943_01/web.1111/e13702/maven_deployer.htm">Using the WebLogic Maven plug-In for deployment</a> is much easier and quicker than going through the WebLogic Server&#8217;s AdminServer and Oracle Documentation provides good examples how to do it. </p>
<p>In short, generating WebLogic Maven Plug-In contains following steps:</p>
<p>1. Build the plug-in JAR file using the WebLogic JarBuilder Tool (wljarbuilder) under MW_HOME/wlserver_10.3/server/lib/ with the following command:</p>
<pre>java -jar wljarbuilder.jar -profile weblogic-maven-plugin</pre>
<p>2. Extract the pom.xml file from weblogic-maven-plugin.jar under the MW_HOME/wlserver_10.3/server/lib directory, and then copy the pom.xml file to MW_HOME/wlserver_10.3/server/lib.</p>
<pre>	
jar xvf MW_HOME/wlserver_10.3/server/lib/weblogic-maven-plugin.jar META-INF/maven/com.oracle.weblogic/weblogic-maven-plugin/pom.xml

in Linux:	
cp META-INF/maven/com.oracle.weblogic/weblogic-maven-plugin/pom.xml MW_HOME/wlserver_10.3/server/lib

or in Windows:
copy META-INF/maven/com.oracle.weblogic/weblogic-maven-plugin/pom.xml MW_HOME/wlserver_10.3/server/lib
</pre>
<p>3. Provision the weblogic-maven-plugin.jar in your local Maven repository with the following command.</p>
<pre>
mvn install:install-file -Dfile=MW_HOME/wlserver_10.3/server/lib/weblogic-maven-plugin.jar -DpomFile=pom.xml
</pre>
<p>4. Done.</p>
<p>The Maven plug-in can be used e.g. from application&#8217;s POM file and be bound to some phase of the Maven life cycle. For example it can be bound to &#8220;install&#8221; phase and every time you run the &#8220;mvn install&#8221; command, the deployment plug-in is also called. In my opinion better way to use the plug-in is to add it as a profile so you can call it just when you want with command like &#8220;mvn clean install -Pdeploy-wls&#8221;.</p>
<p>Maven Project pom.xml File</p>
<pre>
<code>&lt;profile&gt;
	&lt;id&gt;deploy-wls&lt;/id&gt;
	&lt;build&gt;
		&lt;plugins&gt; 
			&lt;plugin&gt; 
				&lt;groupId&gt;com.oracle.weblogic&lt;/groupId&gt;
				&lt;artifactId&gt;weblogic-maven-plugin&lt;/artifactId&gt; 
				&lt;version&gt;10.3.6.0&lt;/version&gt; 
				&lt;configuration&gt; 
					&lt;adminurl&gt;t3://localhost:7001&lt;/adminurl&gt;
					&lt;user&gt;weblogic&lt;/user&gt; 
					&lt;password&gt;weblogic123&lt;/password&gt; 
					&lt;upload&gt;true&lt;/upload&gt; 
					&lt;targets&gt;myServer&lt;/targets&gt;
					&lt;action&gt;deploy&lt;/action&gt; 
					&lt;remote&gt;false&lt;/remote&gt; 
					&lt;verbose&gt;true&lt;/verbose&gt; 
					&lt;source&gt;${project.build.directory}/${project.build.finalName}.${project.packaging}&lt;/source&gt; 
					&lt;name&gt;${project.build.finalName}&lt;/name&gt; 
				&lt;/configuration&gt; 
				&lt;executions&gt; 
					&lt;execution&gt; 
						&lt;phase&gt;install&lt;/phase&gt; 
						&lt;goals&gt; 
							&lt;goal&gt;deploy&lt;/goal&gt; 
						&lt;/goals&gt; 
					&lt;/execution&gt; 
				&lt;/executions&gt; 
			&lt;/plugin&gt; 
		&lt;/plugins&gt; 
	&lt;/build&gt;
&lt;/profile&gt;</code>
</pre>
<p>The user credentials in the POM file are provided as clear-text but for more security you can use <a href="http://docs.oracle.com/cd/E23943_01/web.1111/e13702/maven_deployer.htm#CCHJAAJD">secure configuration authentication mechanism</a> which stores the user name and password in encrypted form in an external file, and then uses it to supply the user credentials with which to connect to the WebLogic Server domain, along with the key that was used to encrypt the file.</p>
]]></content:encoded>
			<wfw:commentRss>http://ruleoftech.com/2013/using-the-weblogic-maven-plug-in-for-deployment/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Looking back, planning ahead</title>
		<link>http://ruleoftech.com/2012/looking-back-planning-ahead</link>
		<comments>http://ruleoftech.com/2012/looking-back-planning-ahead#comments</comments>
		<pubDate>Mon, 31 Dec 2012 12:10:17 +0000</pubDate>
		<dc:creator>Marko</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[retrospective]]></category>

		<guid isPermaLink="false">http://ruleoftech.com/?p=451</guid>
		<description><![CDATA[<p>Again a year has passed and it&#8217;s time to take a short look back and plan for the next year. <a href="http://ruleoftech.com/2011/for-year-2012">A year ago I wrote</a> that in the year 2012 the blog would be more active and I partly managed to keep up that promise with 9 articles. Not quite at least an article per month as I planned.&#8230; <a href="http://ruleoftech.com/2012/looking-back-planning-ahead" class="read_more">Continue reading <span class=\\\"meta-nav\\\">&#8594;</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Again a year has passed and it&#8217;s time to take a short look back and plan for the next year. <a href="http://ruleoftech.com/2011/for-year-2012">A year ago I wrote</a> that in the year 2012 the blog would be more active and I partly managed to keep up that promise with 9 articles. Not quite at least an article per month as I planned.</p>
<p>The <a href="https://ruleoftech.com/2012">articles in 2012</a> started with technical issues like <a href="https://ruleoftech.com/2012/running-fisheye-crucible-as-a-service-in-linux">running Crucible as a service</a>, <a href="https://ruleoftech.com/2012/jsf-1-2-and-getting-selected-value-from-dropdown">JSF 1.2 and value from dropdown menu</a> and using <a href="https://ruleoftech.com/2012/using-cacert-org-signed-certificates-for-tls">CAcert.org signed certificates for TLS</a>. In the Autumn as a Fujitsu LIFEBOOK4Life Insider I <a href="https://ruleoftech.com/2012/fujitsu-stylistic-m532-review">reviewed Stylistic M532 Android tablet</a> and wrote about <a href="https://ruleoftech.com/2012/insights-to-future-workplace-from-fujitsu-forum-2012">my visit to Fujitsu Forum 2012</a>. There were more technical issues to write about software development but again the time ran out. It&#8217;s so much easier to say couple of words in <a href="https://twitter.com/walokra/">Twitter</a> or <a href="https://plus.google.com/u/0/111496995086093612171/">Google+</a> than write a coherent and insightful post about it :)</p>
<p>The year 2013 is almost here so it&#8217;s time to plan ahead. There are already some articles about Apache Wicket and running different development tools on Linux in the backlog waiting to be finished and some technical tasks like upgrading the theme and maybe changing the VPS provider are to be done. Will see if I manage to achieve one article per month so <a href="http://ruleoftech.com/feed">subscribe to the RSS feed</a> and stay tuned.</p>
<p>Happy New Year!</p>
]]></content:encoded>
			<wfw:commentRss>http://ruleoftech.com/2012/looking-back-planning-ahead/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Insights to future workplace from Fujitsu Forum 2012</title>
		<link>http://ruleoftech.com/2012/insights-to-future-workplace-from-fujitsu-forum-2012</link>
		<comments>http://ruleoftech.com/2012/insights-to-future-workplace-from-fujitsu-forum-2012#comments</comments>
		<pubDate>Tue, 27 Nov 2012 16:43:41 +0000</pubDate>
		<dc:creator>Marko</dc:creator>
				<category><![CDATA[Tech Talk]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[fujitsu]]></category>
		<category><![CDATA[fujitsu forum]]></category>
		<category><![CDATA[lifebook4life]]></category>

		<guid isPermaLink="false">http://ruleoftech.com/?p=414</guid>
		<description><![CDATA[<p>This year my Autumn holiday was a bit different as I was one of the four bloggers who were invited by Fujitsu&#8217;s LIFEBOOK4Life campaign to visit <a href="http://ts.fujitsu.com/rl/ff2012/">Fujitsu Forum 2012</a> in Munich to hear about how the future workplace might look like and to experience new technologies to support that. We also got a tour at Fujitsu&#8217;s factory in Augsburg which provided some views how computers are made from mainboards to final product.&#8230; <a href="http://ruleoftech.com/2012/insights-to-future-workplace-from-fujitsu-forum-2012" class="read_more">Continue reading <span class=\\\"meta-nav\\\">&#8594;</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>This year my Autumn holiday was a bit different as I was one of the four bloggers who were invited by Fujitsu&#8217;s LIFEBOOK4Life campaign to visit <a href="http://ts.fujitsu.com/rl/ff2012/">Fujitsu Forum 2012</a> in Munich to hear about how the future workplace might look like and to experience new technologies to support that. We also got a tour at Fujitsu&#8217;s factory in Augsburg which provided some views how computers are made from mainboards to final product. The three days in Germany were insightful and fun. How can you not like to hear about new ideas, see innovative things, meet new people and of course experience the excellent German food and beer.</p>
<p><a href="http://ts.fujitsu.com/rl/ff2012/">Fujitsu Forum</a> is the largest IT-event in Europe which is visited by professional users and IT decision-makers, as well as Fujitsu channel and technology partners. In 2012 more than 12,000 IT experts from around the world attended the Fujitsu Forum in Munich. And I was one of them invited by Fujitsu LIFEBOOK4Life campaign with three other bloggers (called Insiders). The <a href="http://ruleoftech.com/2012/fujitsu-forum-2012-has-insights-for-the-future-of-it">chance I wrote last time</a> came true. Our trip to Fujitsu Forum 2012 was scheduled to contain breakout sessions and keynotes on Wednesday and a tour at the Fujitsu factory in Augsburg on Thursday.</p>
<p>This year the Forum&#8217;s motto was &#8220;Reshaping ICT – Reshaping Business&#8221;: How to combine business processes and IT to form a stable basis that will ensure growth and success in the future. Kind of redefinition of last year’s &#8220;Reshaping IT&#8221; theme. In short some buzzwords I heard most were: consumerization, BYOD, tablets, virtualization, in-sync, cloud and win 8. &#8220;One workplace &#8211; on any device&#8221;.</p>
<p><strong>First day, Wednesday 7.11</strong></p>
<div class="img-center">
<a href="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_insiders-moderators_by_kim-ekman_vision51.jpg"><img class="colorbox-414"  src="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-07_2760_insiders-moderators_by_kim-ekman_vision51.jpg" alt="" title="LIFEBOOK4Life campaign crew and Insiders (by Kim Ekman, Vision 51)" width="500" height="333" /></a><br />
<span class="text-right small">photo by Kim Ekman, Vision 51</span>
</div>
<p>The first day at the Forum was full of exciting breakout sessions and keynotes and the exhibition area provided some innovative ideas and services from Fujitsu and technology partners. And of course you got to test new devices like Windows 8 enabled <a href="http://lifebook.ts.fujitsu.com/products/multiple-touch/stylistic-Q572.html">STYLISTIC Q572 -tablet</a> with AMD Hondo platform and <a href="http://lifebook.ts.fujitsu.com/products/multiple-touch/STYLISTIC-Q702.html">STYLISTIC Q702 hybrid tablet</a> with Intel Core i3/i5. There were also some prototypes of future Fujitsu products.</p>
<div class="img-center-4">
<a href="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-07_2771.jpg"><img class="colorbox-414"  src="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-07_2771-150x150.jpg" alt="" title="Fujitsu Stylistic Q702 hybrid tablet. Crafty." width="150" height="150" /></a> <a href="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-07_2777_m.jpg"><img class="colorbox-414"  src="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-07_2777_m-150x150.jpg" alt="" title="Fujitsu LIFEBOOK T902 is a bit more sophisticated than my T901" width="150" height="150" /></a> <a href="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-07_2773_m.jpg"><img class="colorbox-414"  src="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-07_2773_m-150x150.jpg" alt="" title="Testing STYLISTIC Q572 tablet" width="150" height="150" /></a> <a href="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-07_2879.jpg"><img class="colorbox-414"  src="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-07_2879-150x150.jpg" alt="" title="Future LIFEBOOK prototypes " width="150" height="150" /></a>
</div>
<p>The breakout sessions and keynotes provided some good insights about how the future workplace might look like, which decisions and technologies are needed to support that and what kind of tools are we using in the future. In short the three breakout sessions I listened &#8220;Has the Post-Pc Era Begun &#8211; What will be on your desktop tomorrow&#8221;, &#8220;The War Between Enduser Devices&#8221; and &#8220;Tablets &#038; More &#8211; Cool scenarios for hot devices&#8221; can be summed to words: consumerization, byod, tablets, virtualization, in-sync, cloud and win 8. &#8220;One workplace &#8211; on any device&#8221;. The materials for all sessions can be found at <a href="http://ts.fujitsu.com/rl/ff2012/documentation/documentation.html">Fujitsu Forum 2012 documentation page</a>.</p>
<p>The three breakout sessions&#8217; ideas about the future of workplace and tools were similar what I think about the issue: the work and workplace is changing to support mobility and working anywhere anytime. Some of the driving actors for this is that the borders between business and private life are blurring, consumerization (same devices home and work) and BYOD (bring your own device) are coming more common. We should think more about user-oriented workplace. Although the mobile computing is big the traditional desktop computing model isn&#8217;t going anywhere as there is always need for more computing power, larger screen, data protection and security.</p>
<p>In the future the devices we use will be more diverse and we have more of them. Thus there will be need for virtualization, syncing data and support for &#8220;One workplace &#8211; on any device&#8221; ideology. Different tasks have different needs for the device so we need a dynamic desktop experience. The sessions also provided some views about the tablets&#8217; platforms and in Western Europe Windows, iOS and Android will be about equals in strength. It will be seen. It was said about Windows 8 that there will be a challenge with transition and touch monitors are needed to deliver significant impact on Win 8.</p>
<p>There were also some suggestions about the devices which can support our future workplace needs. At the desktop we could find the <a href="http://www.fujitsu.com/fts/products/computing/pc/desktops/superior/esprimo-x913-t/">ESPRIMO X -series</a> which has integrated desktop computer at the base of the monitor and the same form factor works in multiple use cases. And with the integrated Web camera with presence sensor you can lock the screen when leaving and login with face detection. Crafty. For the mobility aspects there are STYLISTIC Q572 and Q702 tablets and for laptop needs you have Ultrabooks <a href="http://lifebook.ts.fujitsu.com/products/pure-elegance/lifebook-u772.html/">LIFEBOOK U772</a> and more traditional <a href="http://lifebook.ts.fujitsu.com/products/multiple-touch/lifebook-t902.html/">LIFEBOOK T902</a>.</p>
<div class="img-center">
<a href="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-07_2824_m.jpg"><img class="colorbox-414"  src="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-07_2824_m-150x150.jpg" alt="" title="Suit men on the move" width="150" height="150" /></a> <a href="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-08_3172_m.jpg"><img class="colorbox-414"  src="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-08_3172_m-150x150.jpg" alt="" title="Forum's motto: Reshaping ICT - Reshaping Business" width="150" height="150" /></a> <a href="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-07_2838_m.jpg"><img class="colorbox-414"  src="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-07_2838_m-150x150.jpg" alt="" title="Tablets &#038; More - Cool scenarios for hot devices" width="150" height="150" /></a>
</div>
<p>After the day at the sessions and exhibition area it was time for lunch. A nice buffet with currywurst, burger and Weissbier. The final event for the day was Celebration Night with some comedians with guitars and then the stage was open for Amy McDonald. It was a nice gig by Amy but last year&#8217;s Anastacia was better :) </p>
<div class="img-center-4">
<a href="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-07_2917.jpg"><img class="colorbox-414"  src="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-07_2917-150x150.jpg" alt="" title="Again the food at Fujitsu Forum was delicious" width="150" height="150" /></a> <a href="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_mobile_20121107_181330_m.jpg"><img class="colorbox-414"  src="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_mobile_20121107_181330_m-150x150.jpg" alt="" title="Currywurst, burger and Weissbier" width="150" height="150" /></a> <a href="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-07_2945.jpg"><img class="colorbox-414"  src="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-07_2945-150x150.jpg" alt="" title="Cover band with jokes" width="150" height="150" /></a> <a href="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-07_2959_m.jpg"><img class="colorbox-414"  src="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-07_2959_m-150x150.jpg" alt="" title="Amy McDonald on the stage" width="150" height="150" /></a>
</div>
<p><strong>Second day, Thursday 8.11</strong></p>
<p>The second day for us at the Fujitsu Forum 2012 was dedicated to for a tour at Fujitsu&#8217;s factory in Augsburg. It was kind of surprising to see how many workers there are although the automation percent was something like 85-90. Some mainboard components and checking is more easy to do by humans. Also the storage and putting things together were done manually.</p>
<div class="img-center-4">
<a href="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-08_3028_m.jpg"><img class="colorbox-414"  src="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-08_3028_m-150x150.jpg" alt="" title="Fujitsu factory's entrance in Augsburg" width="150" height="150" /></a> <a href="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-08_3047.jpg"><img class="colorbox-414"  src="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-08_3047-150x150.jpg" alt="" title="The mainboard assembly" width="150" height="150" /></a> <a href="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-08_3050.jpg"><img class="colorbox-414"  src="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-08_3050-150x150.jpg" alt="" title="Machine assembly" width="150" height="150" /></a> <a href="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-08_3063.jpg"><img class="colorbox-414"  src="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-08_3063-150x150.jpg" alt="" title="The finalized mainboards." width="150" height="150" /></a><br />
<a href="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-08_3075.jpg"><img class="colorbox-414"  src="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-08_3075-150x150.jpg" alt="" title="Handling the mainboard components like memory sockets" width="150" height="150" /></a> <a href="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-08_3094.jpg"><img class="colorbox-414"  src="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-08_3094-150x150.jpg" alt="" title="Checking the final products" width="150" height="150" /></a> <a href="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-08_3124.jpg"><img class="colorbox-414"  src="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-08_3124-150x150.jpg" alt="" title="Putting things together" width="150" height="150" /></a> <a href="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-08_3150.jpg"><img class="colorbox-414"  src="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-08_3150-150x150.jpg" alt="" title="Testing the radiation levels" width="150" height="150" /></a>
</div>
<p>After the visit to the factory it was more or less free time to roam the exhibition area because we didn&#8217;t have time for anymore sessions or keynotes. At the exhibition we found about Fraunhofer&#8217;s nLightened workplace with touch, rotate, scan, change light, adjust hight features and which runs on top of Linux. Again we saw the Made4You customization service which engraves with laser any product you want. Like my <a href="https://twitter.com/walokra/">Twitter name</a> and  Fujitsu Forum 2012 hashtag to a metal cased pen.</p>
<div class="img-center-4">
<a href="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-07_2888.jpg"><img class="colorbox-414"  src="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-07_2888-150x150.jpg" alt="" title="Fraunhofer's nLightened workplace" width="150" height="150" /></a> <a href="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-07_2853.jpg"><img class="colorbox-414"  src="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-07_2853-150x150.jpg" alt="" title="Fujitsu ESPRIMO X computer with touch screen" width="150" height="150" /></a> <a href="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_mobile_20121108_0408_m.jpg"><img class="colorbox-414"  src="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_mobile_20121108_0408_m-150x150.jpg" alt="" title="Made4You customizing with laser engraving" width="150" height="150" /></a> <a href="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-09_3373_m.jpg"><img class="colorbox-414"  src="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_2012-11-09_3373_m-150x150.jpg" alt="" title="Less swag, more insights and ideas from Fujitsu Forum 2012" width="150" height="150" /></a>
</div>
<p>The second day was interesting and it looked like there was some party starting when the Insiders and moderators had to head back home. It would have been fun to spend some more days in Munich but as usual the work calls.</p>
<p><strong>Summary</strong></p>
<p>Fujitsu Forum 2012 provided insights and ideas about how the future workplace might look like and we got to experience new technologies to support that. The three days in Munich went (too) fast and it was again great to visit Fujitsu Forum and to see other Insiders and LIFEBOOK4Life crew. Thanks <a href="https://lifebook.ts.fujitsu.com/blog/">LIFEBOOK4Life</a> and Fujitsu.</p>
<p>If you want to read more check out what <a href="https://lifebook.ts.fujitsu.com/blog/blog/category/general/fujitsu-forum-2012-with-lifebook4life-insider/s">Antonia wrote about our trip to campaign site</a> and Aba from FujitsuFans.com has <a href="http://www.fujitsufans.com/tag/forum/">made some previews and reports from the Forum</a>.</p>
<div class="img-center">
<a href="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_mobile_20121108_0417_m.jpg"><img class="colorbox-414"  src="http://ruleoftech.com/files/l4l-2012/ff2012/ff2012_mobile_20121108_0417_s.jpg" alt="" title="Coffee break at the press lounge" /></a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://ruleoftech.com/2012/insights-to-future-workplace-from-fujitsu-forum-2012/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Fujitsu Forum 2012 has insights for the future of IT</title>
		<link>http://ruleoftech.com/2012/fujitsu-forum-2012-has-insights-for-the-future-of-it</link>
		<comments>http://ruleoftech.com/2012/fujitsu-forum-2012-has-insights-for-the-future-of-it#comments</comments>
		<pubDate>Tue, 23 Oct 2012 12:24:50 +0000</pubDate>
		<dc:creator>Marko</dc:creator>
				<category><![CDATA[Tech Talk]]></category>
		<category><![CDATA[expo]]></category>
		<category><![CDATA[fujitsu]]></category>
		<category><![CDATA[lifebook4life]]></category>
		<category><![CDATA[tech talk]]></category>

		<guid isPermaLink="false">http://ruleoftech.com/?p=377</guid>
		<description><![CDATA[<p>Germany is known for it&#8217;s technology expos like CeBIT but for more detailed and in depth view about the state of information technology you might want to go to <a href="http://ts.fujitsu.com/rl/ff2012/index.html">Fujitsu Forum</a> like I did a year ago invited by LIFEBOOK4Life. This year it&#8217;s held November 7th and 8th at the ICM in Munich and enables you to get an insight what the Japanese multinational information technology equipment and services company and world&#8217;s third-largest IT services provider thinks about information technology and where the IT is going.&#8230; <a href="http://ruleoftech.com/2012/fujitsu-forum-2012-has-insights-for-the-future-of-it" class="read_more">Continue reading <span class=\\\"meta-nav\\\">&#8594;</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Germany is known for it&#8217;s technology expos like CeBIT but for more detailed and in depth view about the state of information technology you might want to go to <a href="http://ts.fujitsu.com/rl/ff2012/index.html">Fujitsu Forum</a> like I did a year ago invited by LIFEBOOK4Life. This year it&#8217;s held November 7th and 8th at the ICM in Munich and enables you to get an insight what the Japanese multinational information technology equipment and services company and world&#8217;s third-largest IT services provider thinks about information technology and where the IT is going.</p>
<div class="img-right">
<a href="http://ruleoftech.com/2012/fujitsu-forum-2012-has-insights-for-the-future-of-it/fujitsu-forum-2012" rel="attachment wp-att-380"><img src="http://ruleoftech.com/files/2012/10/fujitsu-forum-2012.png" alt="" title="Fujitsu Forum 2012" width="141" height="143" class="alignnone size-full wp-image-380 colorbox-377" /></a>
</div>
<p><a href="http://ts.fujitsu.com/rl/ff2012/index.html">Fujitsu Forum</a> is the largest IT-event in Europe which is visited by professional users and IT decision-makers, as well as Fujitsu channel and technology partners. In 2011 more than 10,000 IT experts from around the world attended the Fujitsu Forum in Munich. And I was one of them invited by <a href="http://lifebook.ts.fujitsu.com/blog/">Fujitsu LIFEBOOK4Life campaign</a>. As I&#8217;m a LIFEBOOK4Life Insider there&#8217;s a chance to visit the Forum also this year so let&#8217;s look what events I&#8217;m looking forward to the most and why I would want to visit those. </p>
<p>Fujitsu Forum 2012&#8242;s motto is &#8220;Reshaping ICT – Reshaping Business&#8221;: How to combine business processes and IT to form a stable basis that will ensure growth and success in the future. Kind of redefinition of last year&#8217;s &#8220;Reshaping IT&#8221; theme. With keynotes, breakout sessions, exhibition area and expert talks there is plenty for everyone to see and listen. But as I last year got to experience the time is not enough for everything so you must choose your own agenda which is made easier with the <a href="http://www.brevis.de/ff2012/conference_exhibition/bos2.html">Individual Agenda Builder</a>.</p>
<p>My agenda contains mainly topics about how the workplace in changing and what new devices there is to expect and their use cases. As a software developer the technical development affects the software and provides new innovative ways to use software. So it&#8217;s good to know which things are just around the corner or little further away. Here is my take of the events I look forward to the most (<a href="http://ruleoftech.com/files/2012/10/fujitsu-forum-2012_agenda.pdf">my Fujitsu Forum 2012 Agenda, pdf</a>). I think the events&#8217; descriptions tell all the reasons to participate. It was hard to pick just three but managed to get it down to one Keynote and two Breakout Sessions.</p>
<p><strong><a href="http://ts.fujitsu.com/rl/ff2012/conference_exhibition/keynotes.html">Keynotes – strategic perspectives:</a></strong></p>
<p>Keynotes are addressing the questions like &#8220;The direction of future IT developments?&#8221;, &#8220;Which technologies will be on the CIO agenda?&#8221; and &#8220;What strategic factors will be of importance to decision-makers?&#8221; and although as working in a big corporation it would be interesting to know how the CIO thinks, as a tech geek more interesting one is the future IT development. From the Keynote sessions I would attend &#8220;Deriving Value from the Connected Economy&#8221;. </p>
<p><strong>&#8220;Deriving Value from the Connected Economy&#8221;</strong> by Benno Zollner, Fujitsu and Kim Stevenson, Intel:</p>
<blockquote><p>The world is changing as new technologies enable information, opinions and idea sharing like never before. Such rapid evolution is breaking down the barriers for creating businesses and economic value. We see an opportunity to harness the knowledge and ideas of the world’s population as large- scale business potential. We have tools available to be ahead of the curve in supporting this transition; and more solutions become available. Having the right strategy to produce solutions customers want, leverage technology and enable employees is paramount. Inspiring examples of the strategies and tools that are needed to pace ahead of these transitions and enable value creation for company.</p></blockquote>
<p><strong><a href="http://ts.fujitsu.com/rl/ff2012/conference_exhibition/breakout_sessions.html">Breakout Sessions – IT perspectives:</a></strong></p>
<p>There is around 50 breakout sessions which discuss technologies, best practices and innovative solutions that are relevant to the modernization and further development of IT so you can&#8217;t attend every one of them. For more business oriented people there is &#8220;the benefits and threats of the cloud&#8221;, &#8220;in-memory computing for &#8220;big data&#8221;" and &#8220;solutions for data centers that cut costs and increase IT flexibility&#8221; but for technology oriented geeks hearing about &#8220;new developments in IT mobility&#8221; and &#8220;behind-the-scenes looks at current IT-research&#8221; is something to look forward to. So &#8220;Tablets &#038; More &#8211; Cool scenarios for hot devices&#8221; and &#8220;The War between Enduser Devices&#8221; are obvious choices.</p>
<p><strong>&#8220;Tablets &#038; More &#8211; Cool scenarios for hot devices&#8221;</strong> by Meinolf Althaus, Fujitsu</p>
<blockquote><p>
Media tablets and mobile centric applications are new top priorities for business users and IT. How can combinations of current and new technologies help you to securely and efficiently merge the opportunities offered by business and privately owned devices? Find out about the effective and secure blend of accessing business and private IT environments from new mobile devices.
</p></blockquote>
<p><strong>&#8220;The War between Enduser Devices&#8221;</strong> by Thomas Meyer, IDC</p>
<blockquote><p>
New formats for enduser devices are appearing very quickly. Netbooks, Ultrabooks, Tablets, new types of thin clients and also operating systems such as Android are raining down on IT departments. This analyst presentation looks at what can be expected in the near future. Which device for which purpose and how to deal with such a complex range.
</p></blockquote>
<p><strong><a href="http://ts.fujitsu.com/rl/ff2012/conference_exhibition/expert_talks.html">Expert Talks – specialist know-how transfer:</a></strong></p>
<p>Sometimes a specific in-depth know-how is required and Expert Talks are the place to attend. They are focused on specific topics and supplement the strategic approaches outlined in the keynotes and the concrete information presented in the breakout sessions with specialist discussions in small groups. Expert Talks are ideal for those who want to exchange information, discuss specific issues in detail and share ideas with other specialists. There is many topics to choose like &#8220;How to mitigate the headache caused by BYOD?&#8221;, &#8220;Secure your valuable data: Easy to use and scaleable security solution&#8221;, &#8220;Android tablets in Business Environment &#8211; A challenge for CIOs?&#8221;, &#8220;New LIFEBOOK notebooks meet trend of consumerization&#8221; and &#8220;Oracle Applications Strategy&#8221;. Would like to go couple of those but my agenda is already full.</p>
<p>And between the events it&#8217;s a must to visit <strong><a href="http://ts.fujitsu.com/rl/ff2012/conference_exhibition/exhibition.html">the exhibition</a></strong> which holds 3,500 square meters of innovations and presents over 250 highlights from Fujitsu and its partners. For example I look forward to get hands-on with Fujitsu STYLISTIC Q702 hybrid tablet PC and Windows 8 running on new touch devices and hear about a brand new way of running desktop environments.</p>
<p>But there is also something more. On the Wednesday evening singer-songwriter Amy MacDonald takes the stage at the <strong><a href="http://ts.fujitsu.com/rl/ff2012/conference_exhibition/celebrations_night.html">Fujitsu Intel Celebration Night</a></strong>. Not to forget the delicious bratwursts and weissbier which I hope are provided also this year :) Technology, entertainment and nourishment: what could a professional user wish more?</p>
<p>Fujitsu Forum holds many interesting keynotes, sessions, insights and experiences which <a href="http://verteksi.net/l4l-2011/fujitsu-forum-2011.html">I last year got to experience</a>. The chance to do it again this year is open so let&#8217;s hope I get to travel to Germany for Fujitsu Forum 2012 experience, meet other Insiders and see NDA devices like last year the Ultrabooks which Fujitsu released this Summer.</p>
]]></content:encoded>
			<wfw:commentRss>http://ruleoftech.com/2012/fujitsu-forum-2012-has-insights-for-the-future-of-it/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>LIFEBOOK4Life Ultra Test Flight adventure starts</title>
		<link>http://ruleoftech.com/2012/lifebook4life-ultra-test-flight-adventure-starts</link>
		<comments>http://ruleoftech.com/2012/lifebook4life-ultra-test-flight-adventure-starts#comments</comments>
		<pubDate>Sun, 21 Oct 2012 13:45:31 +0000</pubDate>
		<dc:creator>Marko</dc:creator>
				<category><![CDATA[Tech Talk]]></category>
		<category><![CDATA[fujitsu]]></category>
		<category><![CDATA[lifebook4life]]></category>
		<category><![CDATA[tech talk]]></category>

		<guid isPermaLink="false">http://ruleoftech.com/?p=360</guid>
		<description><![CDATA[<p>Fujitsu&#8217;s <a href="https://lifebook.ts.fujitsu.com/blog/">LIFEBOOK4Life is here again with &#8220;Ultra Test Flight&#8221;</a> and new challenges for Insiders. This year it&#8217;s about Ultrabooks and the Autumn will be full of interesting tasks to fulfill. In the end if successful the Insiders can keep their Ultrabooks, be it U772 or U572. Last year I took part in Fujitsu&#8217;s &#8220;LIFEBOOK4Life: Accept no boundaries&#8221; campaign and tested LIFEBOOK S761 laptop.&#8230; <a href="http://ruleoftech.com/2012/lifebook4life-ultra-test-flight-adventure-starts" class="read_more">Continue reading <span class=\\\"meta-nav\\\">&#8594;</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Fujitsu&#8217;s <a href="https://lifebook.ts.fujitsu.com/blog/">LIFEBOOK4Life is here again with &#8220;Ultra Test Flight&#8221;</a> and new challenges for Insiders. This year it&#8217;s about Ultrabooks and the Autumn will be full of interesting tasks to fulfill. In the end if successful the Insiders can keep their Ultrabooks, be it U772 or U572. Last year I took part in Fujitsu&#8217;s &#8220;LIFEBOOK4Life: Accept no boundaries&#8221; campaign and tested LIFEBOOK S761 laptop. It was very interesting couple of months. This year is not going to be any different and looks like it will be even more exciting.</p>
<p><a href="https://lifebook.ts.fujitsu.com/blog/">LIFEBOOK4Life: Ultra Test Flight</a> challenges 40 independent IT- and lifestyle-bloggers (called Insiders) from all over the world to a quest through virtual airport passing all stations from check-in to the gate. Each station contains a solo and a group task in which the Insiders unveil the features of Fujitsu&#8217;s Ultrabooks (U772 and U572) in aspects of mobility, reliability, elegance, connectivity and security. In the end if an Insider solves at least seven test tasks he or she can keep the Ultrabook. There is also extra bonuses with a change to go to <a href="http://ts.fujitsu.com/rl/ff2012/">Fujitsu Forum 2012</a> in Munich, which I went last year, and the Top 10. will get a flight voucher.</p>
<p>There are total of <a href="https://lifebook.ts.fujitsu.com/blog/challenge">10 test tasks</a> and couple of extra tasks for the enthusiasts. Last year there was overall of 15 tasks but unfortunately the project site is not available anymore. It was and will be quite brain teasing and interesting to solve those with travel themed and somewhat tongue-in-cheek like articles. For example &#8220;mobility&#8221; contains a task to pack a lightweight luggage with the five items and &#8220;security&#8221; is about discussing and showing which security feature is your favorite. &#8220;Elegance&#8221; is for thin-telligence and design &#038; style as &#8220;connectivity&#8221; is for 3G/UMTS and 4G/LTE. And the fifth theme &#8220;reliability&#8221; is about features which combine German engineering with Japanese quality.</p>
<div class="img-center">
<a class="thickbox" href="/files/l4l-2012/t0-unboxing_fujitsu_u772_m.jpg"><img alt="Fujitsu LIFEBOOK U772 unboxed" src="/files/l4l-2012/t0-unboxing_fujitsu_u772_m.jpg" title="Fujitsu LIFEBOOK U772 unboxed" class="alignnone colorbox-360" width="480" height="311" /></a>
</div>
<p>LIFEBOOK4Life: Ultra Test Flight started last Friday which was convenient as the same day I got my package from the local post office. As usual, everything <a href="https://lifebook.ts.fujitsu.com/blog/blog/category/general/adventure-awaits-unboxing-lifebook-u772/s">starts with unboxing</a> and as a special Silver Insider (last year went the extra mile and expressed extraordinary commitment) my package contained a red LIFEBOOK U772. In short: Intel Core i5-3427U (2.8 GHz, 3 MB), 4 GB RAM, 128GB SSD, Intel HD Graphics 4000, 14&#8243; 1366 x 768 LED backlight and Anti-glare screen, 802.11 a/b/g/n, Bluetooth 4, 3G/UMTS, 4G/LTE, (WxDxH): 327 x 225 x 15.6 mm and 1.4 kg. I will later write a short review about it.</p>
<p>The project has also something for everyone. You who can take part <a href="https://lifebook.ts.fujitsu.com/blog/challenge/profiles">in a raffle and win a flight</a>. To improve your chances of winning you can earn badges which gives you an extra raffle ticket. Just comment on 10 different blog articles, &#8220;Like&#8221; 10 different blog articles, share 3 articles with your friends on Facebook and log in on 6 different days.</p>
<p>You can <a href="https://lifebook.ts.fujitsu.com/blog/users/walokra">follow my quest at the LIFEBOOK4Life site from my profile</a> or <a href="http://twitter.com/walokra">follow me in Twitter</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ruleoftech.com/2012/lifebook4life-ultra-test-flight-adventure-starts/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fujitsu Stylistic M532 review</title>
		<link>http://ruleoftech.com/2012/fujitsu-stylistic-m532-review</link>
		<comments>http://ruleoftech.com/2012/fujitsu-stylistic-m532-review#comments</comments>
		<pubDate>Mon, 20 Aug 2012 18:25:29 +0000</pubDate>
		<dc:creator>Marko</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[gadgets]]></category>
		<category><![CDATA[lifebook4life]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[tablet]]></category>

		<guid isPermaLink="false">http://ruleoftech.com/?p=318</guid>
		<description><![CDATA[<p>Tablets have become more and more common in recent years and I have thought about getting one but haven&#8217;t quite got myself to buying one. Too many choices and didn&#8217;t know if I really needed one. When Fujitsu suggested to test their new <a href="http://www.fujitsu.com/fts/products/computing/pc/notebooks-tablets/all-round/stylistic-m532/">Stylistic M532</a> Android tablet in part of their <a href="https://lifebook.ts.fujitsu.com/blog/">Lifebook4Life project</a> i gladly took the opportunity.&#8230; <a href="http://ruleoftech.com/2012/fujitsu-stylistic-m532-review" class="read_more">Continue reading <span class=\\\"meta-nav\\\">&#8594;</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Tablets have become more and more common in recent years and I have thought about getting one but haven&#8217;t quite got myself to buying one. Too many choices and didn&#8217;t know if I really needed one. When Fujitsu suggested to test their new <a href="http://www.fujitsu.com/fts/products/computing/pc/notebooks-tablets/all-round/stylistic-m532/">Stylistic M532</a> Android tablet in part of their <a href="https://lifebook.ts.fujitsu.com/blog/">Lifebook4Life project</a> i gladly took the opportunity. Couple of days later the postman brought their brand new 10&#8243; Android tablet which is powered by quad-core Nvidia Tegra 3 processor and has 1280&#215;800 resolution screen, 1 GB memory, 32 GB flash and weights 560 grams. In Finland it costs about <a href="http://www.verkkokauppa.com/fi/product/8548/dhksf/Fujitsu-Stylistic-M532-10-1-32-GB-3G-Android-4-0-tablet">612 euros</a>.</p>
<h2>Fujitsu Stylistic M532</h2>
<div class="img-center">
<a class="thickbox" href="/files/2012/08/fujitsu_m532_unboxing_2012-07-25.jpg"><img src="/files/2012/08/fujitsu_m532_unboxing_2012-07-25_m.jpg" alt="" title="Fujitsu Stylistic M532 ready to be used" class="wp-image-4238 colorbox-318" /></a>
</div>
<p>In short <a href="http://www.fujitsu.com/fts/products/computing/pc/notebooks-tablets/all-round/stylistic-m532/">Fujitsu Stylistic M532</a> is a 10&#8243; business grade Android tablet powered by quad core Nvidia Tegra 3 processor, 1 GB memory, 32 GB flash and has 1280&#215;800 resolution Gorilla Glass protected LED backlighted and glossy screen. By 8.6 mm thickness and 560 grams it&#8217;s a bit slimmer and lighter than Apple&#8217;s new iPad (660g, 9,4mm). It runs vanilla Android 4.0 Ice Cream Sandwich and has 8 Mpix and 2 Mpix cameras. The black bezel has no physical buttons, is rounded by a red metal trim and the back is covered by rubber like material which gives you a good grip. Physically and visually it stands out from the crowd of Android tablets. In positive sense. The connectivity is enabled with Bluetooth, WiFi and 3G and you can extend storage with microSD card. Charging is handled by proprietary dock-connector at the bottom. There&#8217;s also microUSB connector (can&#8217;t be used for charging) and 3,5mm audio plugin.</p>
<div class="img-center">
<a class="thickbox" href="/files/2012/08/fujitsu_m523_2012-08_1805_m.jpg"><img src="/files/2012/08/fujitsu_m523_2012-08_1805_m-150x150.jpg" alt="" title="Glossy screen makes it sometimes hard to use" width="150" height="150" class="alignnone size-thumbnail wp-image-4272 colorbox-318" /></a> <a class="thickbox" href="/files/2012/08/fujitsu_m523_2012-08_1827_m.jpg"><img src="/files/2012/08/fujitsu_m523_2012-08_1827_m-150x150.jpg" alt="" title="Proprietary dock connector" width="150" height="150" class="alignnone size-thumbnail wp-image-4275 colorbox-318" /></a> <a class="thickbox" href="/files/2012/08/fujitsu_m523_2012-08_1853_m.jpg"><img src="/files/2012/08/fujitsu_m523_2012-08_1853_m-150x150.jpg" alt="" title="MicroSD and SIM connectors behind rubber cover" width="150" height="150" class="alignnone size-thumbnail wp-image-4280 colorbox-318" /></a>
</div>
<p>The tablet&#8217;s performance is great and test results are in line with other Tegra 3 powered tablets (see results below). Movies and games ran without problems and with 32 GB storage plus microSD extension it would be a great traveling companion. But the most surprising thing is that the tablet has only 3,170 mAh battery as almost any other manufacture has over double the power. New iPad has 11,560 mAh and Samsung Galaxy Tab 2 has 7000 mAh. And as the charging is done only by docking connector you always have to carry it around on longer trips. And depending on what you want to do with your tablet the camera isn&#8217;t so good. In general tablets are lousy devices for taking pictures and although M532 has an 8 Mpix camera I would use any other available camera (<a class="thickbox" href="/files/2012/08/fujitsu_m532_camera-shot_212938.jpg">test picture</a>), eg. my HTC Sensation. You need a steady hand and good light to take decent pictures. I take the 2 Mpix front camera is fine for video conferences. </p>
<div class="img-center">
<a class="thickbox" href="/files/2012/08/fujitsu_m523_2012-08_1826_m.jpg"><img src="/files/2012/08/fujitsu_m523_2012-08_1826_m-150x150.jpg" alt="" title="The red aluminium rim is classy" width="150" height="150" class="alignnone size-thumbnail wp-image-4274 colorbox-318" /></a> <a class="thickbox" href="/files/2012/08/fujitsu_m523_2012-08_1841_m.jpg"><img src="/files/2012/08/fujitsu_m523_2012-08_1841_m-150x150.jpg" alt="" title="The 8 Mpix camera with autofocus and flash" width="150" height="150" class="alignnone size-thumbnail wp-image-4277 colorbox-318" /></a> <a class="thickbox" href="/files/2012/08/fujitsu_m523_2012-08_1845_m.jpg"><img src="/files/2012/08/fujitsu_m523_2012-08_1845_m-150x150.jpg" alt="" title="The back has rubberlike finish" width="150" height="150" class="alignnone size-thumbnail wp-image-4278 colorbox-318" /></a>
</div>
<p>In overall, during my couple of weeks use of the Stylistic M532 tablet I found it convincing with visual appearance, physical structure, feel of robustness and performance and although it stands out of the crowd it isn&#8217;t really something to be excited about. Just like you could imagine a business grade tablet to be.  And after work you can take it home with you for  entertainment use. It&#8217;s light enough to hold easily and was pleasing to use for reading ebooks, news and seeing lecture videos. Also the games ran fast. Battery life is moderate compared to competition but I didn&#8217;t find it as a problem in my use but the glossy screen was sometimes annoying. The preinstalled apps are good extra for corporate users.</p>
<p>For more detailed review with videos you can check <a href="https://lifebook.ts.fujitsu.com/blog/category/general/fujitsu-stylistic-m532-review/s">Aba Müller&#8217;s review in Lifebook4Life blog</a> and read <a href="http://www.techradar.com/reviews/pc-mac/tablets/fujitsu-stylistic-m532-1089641/review/">TechRadar&#8217;s verdict</a>.</p>
<div class="img-center">
<a class="thickbox" href="/files/2012/08/fujitsu_m532_at-work_2012-07-30.jpg"><img src="/files/2012/08/fujitsu_m532_at-work_2012-07-30_m.jpg" alt="" title="Using tablet to support software development" class="wp-image-4239 colorbox-318" class="wp-image-4239" /></a>
</div>
<h3>Technical details</h3>
<ul>
<li>Processor: Nvidia Tegra 3 T30S, Quad-Core ARM Cortex A9, 1.4 GHz</li>
<li>Memory: 1 GB</li>
<li>Storage: 32 GB Flash</li>
<li>Interfaces: SIM card slot, MicroSD (SDHC) slot, Audio, Micro USB, Dock connector</li>
<li>Display: 10.1&#8243; (25.7cm), TFT, 1280 x 800 (WXGA), Gorilla Glass</li>
<li>Camera: 8 Mpix with flash, 2 Mpix front</li>
<li>Battery: 3,170mAh, video playback 8.4 h, charging 2.7 h</li>
<li>Muuta: 2x speakers, built-in microphone</li>
<li>Antennas: 2x dual band WLAN, 3G (UMTS), GPS, Bluetooth 3.0</li>
<li>WLAN: AzureWave AW-AH663 802.11 a/b/g/n</li>
<li>3G: Integrated Huawei MU739 module, HSPA+ (downlink 21 MBit/s, uplink 5.76 MBit/s)</li>
<li>Sensors: 3-axis Accelerometer, Gyroscope, Magnetic Field Sensor, Ambient Light Sensor</li>
<li>Weight: 560 g</li>
<li>Dimensions (W x D x H): 262.6 x 175.4 x 8.6 mm</li>
</ul>
<p>The tablet can be equipped with accessories like a dock with 2 USB ports and HDMI and the travel dock provides 1 USB port and HDMI. Also the tablet sleeve functions as a stand.</p>
<div class="img-center">
<a class="thickbox" href="/files/2012/08/fujitsu_m523_2012-08_1818_m.jpg"><img src="/files/2012/08/fujitsu_m523_2012-08_1818_m-150x150.jpg" alt="" title="Vanilla Android 4.0 is fine but HTC's Sense is better" width="150" height="150" class="alignnone size-thumbnail wp-image-4273 colorbox-318" /></a> <a class="thickbox" href="/files/2012/08/fujitsu_m523_2012-08_1868_m.jpg"><img src="/files/2012/08/fujitsu_m523_2012-08_1868_m-150x150.jpg" alt="" title="The sleeve functions also as stand" width="150" height="150" class="alignnone size-thumbnail wp-image-4282 colorbox-318" /></a> <a href="/files/2012/08/fujitsu_m532_camera-shot_212938_m.jpg"><img src="/files/2012/08/fujitsu_m532_camera-shot_212938_m-150x150.jpg" alt="" title="The camera produces decent pictures with steady hand" width="150" height="150" class="alignnone size-thumbnail wp-image-4316 colorbox-318" /></a>
</div>
<h3>Performance</h3>
<p>I quickly tested tablet&#8217;s performance with <a href="https://play.google.com/store/apps/details?id=com.aurorasoftworks.quadrant.ui.standard">Quadrant</a>, <a href="https://play.google.com/store/apps/details?id=com.quicinc.vellamo">Vellamo</a>, <a href="https://play.google.com/store/apps/details?id=com.rightware.tdmm2v10jnifree">Rightware Taiji</a>, <a href="https://play.google.com/store/apps/details?id=com.glbenchmark.glbenchmark25">GLBenchmark 2.5</a>, <a href="https://play.google.com/store/apps/details?id=com.antutu.ABenchMark">Antutu 2.9</a>, <a href="http://www.webkit.org/perf/sunspider/sunspider.html">SunSpider 0.9.1</a> and <a href="http://peacekeeper.futuremark.com/">Peacekeeper</a>. Considering raw performance the Stylistic M532 is in line with other Tegra 3 based tablets.</p>
<p><strong>Results</strong></p>
<ul>
<li>Quadrant: 4463</li>
<li>Vellamo: 1405</li>
<li>Rightware Taiji: 19,65</li>
<li>GLBenchmark 2.5 Egypt Classic C16Z16: 5818 frames, 51 fps</li>
<li>GLBenchmark 2.5 Egypt Classic C16Z16 Offscreen: 3306 frames, 29 fps</li>
<li>Antutu 2.9: 11157 (cpu 6627, gpu 1449, ram 2575, i/o 506)</li>
<li>SunSpider 0.9.1: 1708,5ms (1,3%)</li>
<li>Peacekeeper: Chrome 18, 417; Safari, 350; Firefox 15, 325</li>
</ul>
<h3>Preinstalled software</h3>
<p>Fujitsu markets the tablet for businesses and as a Bring-your-own-device tablet and thus provides it with some preinstalled software for work related tasks. Otherwise it is just like any other Android tablet and isn&#8217;t equipped with manufacturer&#8217;s user interface customizations like Samsung and HTC tends to do.</p>
<div class="img-center">
<a class="thickbox" href="/files/2012/08/fujitsu_m532_scr_about_1.png"><img src="/files/2012/08/fujitsu_m532_scr_about_1-150x150.png" alt="" title="Android 4.0.3 Ice Cream Sandwich" width="150" height="150" class="alignnone size-thumbnail wp-image-4283 colorbox-318" /></a> <a class="thickbox" href="/files/2012/08/fujitsu_m532_scr_desktop_2.png"><img src="/files/2012/08/fujitsu_m532_scr_desktop_2-150x150.png" alt="" title="Settings in quick menu" width="150" height="150" class="alignnone size-thumbnail wp-image-4297 colorbox-318" /></a> <a class="thickbox" href="/files/2012/08/fujitsu_m532_scr_desktop_3.png"><img src="/files/2012/08/fujitsu_m532_scr_desktop_3-150x150.png" alt="" title="Recent applications" width="150" height="150" class="alignnone size-thumbnail wp-image-4298 colorbox-318" /></a> </p>
<p><a class="thickbox" href="/files/2012/08/fujitsu_m532_scr_apps_gallery_1.png"><img src="/files/2012/08/fujitsu_m532_scr_apps_gallery_1-150x150.png" alt="" title="Gallery" width="150" height="150" class="alignnone size-thumbnail wp-image-4288 colorbox-318" /></a> <a class="thickbox" href="/files/2012/08/fujitsu_m532_scr_camera_1.png"><img src="/files/2012/08/fujitsu_m532_scr_camera_1-150x150.png" alt="" title="Camera" width="150" height="150" class="alignnone size-thumbnail wp-image-4308 colorbox-318" /></a> <a class="thickbox" href="/files/2012/08/fujitsu_m532_scr_apps_list.png"><img src="/files/2012/08/fujitsu_m532_scr_apps_list-150x150.png" alt="" title="Application list" width="150" height="150" class="alignnone size-thumbnail wp-image-4289 colorbox-318" /></a>
</div>
<p>For office documents the tablet is equipped with <strong>ThinkFree Office</strong> which provides MS Office 2007 (OOXML) compatible document, spreadsheet and presentation editing. Remote access to business applications can be done with <strong>Citrix Receiver</strong>, <strong>VMWare View Client</strong> and <strong>iTap Mobile RDP</strong> apps which are Virtual Desktop Interface (VDI) applications. <strong>Nitrodesk TouchDown</strong> keeps you email, contacts and calendar in sync with Exchange ActiveSync. </p>
<p><strong>Norton Tablet Security</strong> with one year subscription keeps the tablet free of malware and viruses and combined with Norton Anti-Theft you can keep track of it in case of theft. Also with <strong>Absolute Computrace Mobile</strong> you can track the device and secure the data on the tablet.</p>
<p>Other preinstalled apps are <strong>ES File explorer</strong> for browsing and managing the files in the tablet and you can also access files from servers like Fujitsu Q700 NAS server. And for multimedia center there&#8217;s <strong>CyberLink&#8217;s PowerDVD</strong>.</p>
<p>One essential application for tablets is splittable keyboard which doesn&#8217;t come with Android 4.0 or preinstalled. The default on-screen keyboard is way too wide to use comfortable and by splitting it by half you get separate numpad and arrow keys. One possible free app for this is <a href="https://play.google.com/store/apps/details?id=com.doubtech.inputmethod.latin">Open Split Keyboard</a>.</p>
<div class="img-center">
<a class="thickbox" href="/files/2012/08/fujitsu_m532_scr_apps_thinkfree_1.png"><img src="/files/2012/08/fujitsu_m532_scr_apps_thinkfree_1-150x150.png" alt="" title="ThinkFree Office" width="150" height="150" class="alignnone size-thumbnail wp-image-4293 colorbox-318" /></a> <a class="thickbox" href="/files/2012/08/fujitsu_m532_scr_apps_norton-sec_2.png"><img src="/files/2012/08/fujitsu_m532_scr_apps_norton-sec_2-150x150.png" alt="" title="Norton Tablet Security" width="150" height="150" class="alignnone size-thumbnail wp-image-4291 colorbox-318" /></a> <a class="thickbox" href="/files/2012/08/fujitsu_m532_scr_apps_es_1.png"><img src="/files/2012/08/fujitsu_m532_scr_apps_es_1-150x150.png" alt="" title="ES File explorer" width="150" height="150" class="alignnone size-thumbnail wp-image-4287 colorbox-318" /></a></p>
<p><a class="thickbox" href="/files/2012/08/fujitsu_m532_scr_apps_cyberlink_2.png"><img src="/files/2012/08/fujitsu_m532_scr_apps_cyberlink_2-150x150.png" alt="" title="Cyberlink PowerDVD" width="150" height="150" class="alignnone size-thumbnail wp-image-4286 colorbox-318" /></a> <a class="thickbox" href="/files/2012/08/fujitsu_m532_scr_apps_cyberlink_1.png"><img src="/files/2012/08/fujitsu_m532_scr_apps_cyberlink_1-150x150.png" alt="" title="Cyberlink PowerDVD" width="150" height="150" class="alignnone size-thumbnail wp-image-4285 colorbox-318" /></a> <a class="thickbox" href="/files/2012/08/fujitsu_m532_scr_apps_osk_1.png"><img src="/files/2012/08/fujitsu_m532_scr_apps_osk_1-150x150.png" alt="" title="Open Split Keyboard." width="150" height="150" class="alignnone size-thumbnail wp-image-4292 colorbox-318" /></a>
</div>
<h3>Summary</h3>
<p>Fujitsu Stylistic M532 is business grade Android tablet which also works for home and entertainment use. It convinces with good performance, build quality, feel of robustness and visual appearance. It stands out of the crowd but isn&#8217;t really something to be excited about. Which is a good 	quality for a business grade device. Battery life is moderate compared to competition and glossy screen is sometimes annoying. The preinstalled apps are good extra for corporate users but most of them can be bought from Google Play. Both WiFi and 3G connectivity enables you to connect easily where you want and microSD slot provides more storage if needed. It lefts little to be wanted and is a sleek and accomplished device.</p>
<p>Pros:</p>
<ul>
<li>Performance</li>
<li>Robust and build quality</li>
<li>Connectivity: 3G, WiFi, Bluetooth</li>
<li>microSD slot</li>
</ul>
<p>Cons:</p>
<ul>
<li>Moderate battery life</li>
<li>Glossy screen</li>
</ul>
<p>Fujitsu Stylistic M532 is a robust 10&#8243; Android tablet and it would be interesting to compare the Stylistic M532 against the competition from eg. Samsung and Asus. <a href="http://www.theverge.com/2012/8/15/3243546/samsung-galaxy-note-10-1-review">Samsung&#8217;s Galaxy Note 10.1 tested by The Verge</a> sounds on paper very interesting with pen functionality and all but at least The Verge said it was &#8220;Disappointing although S Pen works well&#8221;. Mostly the issues were with TouchWiz and build quality but the better drawing ability would make a big difference with prototyping applications and stuff. Other interesting devices are Asus&#8217; Transformer Pad hybrid tablets like <a href="http://www.engadget.com/2012/04/22/asus-transformer-pad-tf300-review/">TF300</a> and <a href="http://www.engadget.com/2012/06/25/asus-transformer-pad-infinity-tf700-review/">TF700T</a> which are more or less comparable in specifications, performance and price with Stylistic M532. And some people would compare Apples to oranges but as iOS provides features you can&#8217;t get with Android tablets and likewise the comparison isn&#8217;t meaningful.</p>
]]></content:encoded>
			<wfw:commentRss>http://ruleoftech.com/2012/fujitsu-stylistic-m532-review/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Running FishEye &amp; Crucible as a service in Linux</title>
		<link>http://ruleoftech.com/2012/running-fisheye-crucible-as-a-service-in-linux</link>
		<comments>http://ruleoftech.com/2012/running-fisheye-crucible-as-a-service-in-linux#comments</comments>
		<pubDate>Mon, 13 Aug 2012 10:36:27 +0000</pubDate>
		<dc:creator>Marko</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[Sysadmin]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[atlassian]]></category>
		<category><![CDATA[crucible]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://ruleoftech.com/?p=297</guid>
		<description><![CDATA[<p>Atlassian&#8217;s tools for supporting software development are great but they aren&#8217;t really admin friendly to start with. For example FishEye &#038; Crucible doesn&#8217;t ship with scripts to start it at system boot time but with the help of <a href="https://confluence.atlassian.com/display/FISHKB/How+to+start+FishEye+and+Crucible+at+boot+time+on+Linux">Atlassian&#8217;s Wiki</a>, sysadmin tasks and scripts you can run it as a normal service.&#8230; <a href="http://ruleoftech.com/2012/running-fisheye-crucible-as-a-service-in-linux" class="read_more">Continue reading <span class=\\\"meta-nav\\\">&#8594;</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Atlassian&#8217;s tools for supporting software development are great but they aren&#8217;t really admin friendly to start with. For example FishEye &#038; Crucible doesn&#8217;t ship with scripts to start it at system boot time but with the help of <a href="https://confluence.atlassian.com/display/FISHKB/How+to+start+FishEye+and+Crucible+at+boot+time+on+Linux">Atlassian&#8217;s Wiki</a>, sysadmin tasks and scripts you can run it as a normal service. First we create a dedicated user for crucible and second we add a new service for it. I have done this on CentOS 5.7 x86_64.</p>
<p><strong>Setting up the service account</strong></p>
<p>As the root user, create a separate &#8220;FishEye &#038; Crucible&#8221; service account at root shell:</p>
<pre>
# useradd -c "FishEye &#038; Crucible service account" -d /home/crucible -m crucible
</pre>
<p>To make it easier for this to work also after FishEye &#038; Crucible upgrades we create a symbolic link to the latest version (modify &#8220;/opt/fecru&#8221; to match your deployment).</p>
<pre>
# ln -s /opt/fecru/fecru-2.7.15 /opt/fecru/latest
</pre>
<p>Then, ensure that this user is the filesystem owner of the FishEye &#038; Crucible instance (modify &#8220;/opt/fecru&#8221; to match your deployment).</p>
<pre>
# chown -R crucible:crucible /opt/fecru
</pre>
<p><strong>Running Crucible as a crucible user</strong></p>
<p>Save the following script to <em>/etc/init.d/crucible</em>. Be sure to edit the FISHEYE_HOME value to the location where your FishEye/Crucible instance resides:</p>
<pre>
#!/bin/bash
# RUN_AS: The user to run fisheye &#038; crucible as. Its recommended that you create a separate user account for security reasons
RUN_AS=crucible
 
# FISHEYE_HOME: The path to the FishEye &#038; Crucible installation. Its recommended to create a symbolic link to the latest version so the process will still work after upgrades.
FISHEYE_HOME="/opt/fecru/latest"
# FISHEYE_INST: The path where the data itself will be stored.
export FISHEYE_INST="/opt/fecru/fecru-data"

fisheyectl() {
        if [ "x$USER" != "x$RUN_AS" ]; then
                # If running without FISHEYE_INST
                # su - "$RUN_AS" -c "$FISHEYE_HOME/bin/fisheyectl.sh $1"
                su - "$RUN_AS" -c "FISHEYE_INST=$FISHEYE_INST $FISHEYE_HOME/bin/fisheyectl.sh $1"
        else
                "$FISHEYE_HOME/bin/fisheyectl.sh $1"
        fi
} 

case "$1" in
        start)
                fisheyectl start
                ;;
        stop)
                fisheyectl stop
                ;;
        restart)
                fisheyectl stop
                sleep 10
                fisheyectl start
                ;;
        *)
                echo "Usage: $0 {start|stop|restart}"
esac
 
exit 0
</pre>
<p>After saving the script, modify it’s permissions so that it can be executed:</p>
<pre>
# chmod 755 /etc/init.d/crucible
</pre>
<p><strong>Running Crucible as a service</strong></p>
<p>Now that we have an init script we can add it as a service and be able to configure the system to run the script on startup (more precisely, ensure that Crucible runs in runlevels 3, 4 and 5):</p>
<pre>
chkconfig --add crucible
chkconfig crucible on
</pre>
<p>Verify that the script has been installed correctly:</p>
<pre>
# chkconfig --list crucible
</pre>
<p>After this has been done you can manually start or stop the service by using these commands:</p>
<pre>
service crucible stop
service crucible start
</pre>
<p>And you&#8217;re done.</p>
]]></content:encoded>
			<wfw:commentRss>http://ruleoftech.com/2012/running-fisheye-crucible-as-a-service-in-linux/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JSF 1.2 and getting selected value from dropdown</title>
		<link>http://ruleoftech.com/2012/jsf-1-2-and-getting-selected-value-from-dropdown</link>
		<comments>http://ruleoftech.com/2012/jsf-1-2-and-getting-selected-value-from-dropdown#comments</comments>
		<pubDate>Fri, 25 May 2012 19:35:18 +0000</pubDate>
		<dc:creator>Marko</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[jsf]]></category>
		<category><![CDATA[jsf1.2]]></category>

		<guid isPermaLink="false">http://ruleoftech.com/?p=284</guid>
		<description><![CDATA[<p>JSF 1.2 has some weird features which you just have to know if you haven&#8217;t read the documents. One example is getting a value from h:selectOneMenu dropdown after onchange event. The first what comes to mind is to use binding attribute with RichFaces&#8217; a4j:support for rerendering elements after the event but it doesn&#8217;t work like you thought it would.&#8230; <a href="http://ruleoftech.com/2012/jsf-1-2-and-getting-selected-value-from-dropdown" class="read_more">Continue reading <span class=\\\"meta-nav\\\">&#8594;</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>JSF 1.2 has some weird features which you just have to know if you haven&#8217;t read the documents. One example is getting a value from h:selectOneMenu dropdown after onchange event. The first what comes to mind is to use binding attribute with RichFaces&#8217; a4j:support for rerendering elements after the event but it doesn&#8217;t work like you thought it would. In some cases using the binding attribute works just fine but as the binding attribute should refer to a request scoped bean property, not a session scoped one, you might get &#8220;Duplicate id error&#8221; when switching pages back and forth.</p>
<p>Fortunately there is valueChangeListener in h:SelectOneMenu which you can trick to do almost the same. It is executed during Validations phase, before the &#8220;Update Model Values&#8221; phase and is intended to get a handle of both the old and new value so that you can do some business stuff based on the real change. However, you can use it to invoke actions on a dropdown change only by combining it with <code>onchange="submit()"</code> and <code>immediate="true"</code> and the selected value is to be obtained by ValueChangeEvent#getNewValue(). (<a href="http://stackoverflow.com/a/5698464">StackOverflow, BalusC</a>)</p>
<p>For example:</p>
<pre>
Jspx:
<code>&lt;h:selectOneMenu value="#{fooBean.object.value}" 
	valueChangeListener="#{fooBean.statusChanged}" 
	onchange="submit()" immediate="true"&gt;
	&lt;f:selectItem itemLabel="" itemValue=""/&gt;
	&lt;f:selectItems value="#{fooBean.selectValuesList}"/&gt;
&lt;/h:selectOneMenu&gt;</code>

Java:
<code>public void statusChanged(ValueChangeEvent event) {
	if (event.getNewValue() != null &amp;&amp; 
		StringUtils.hasText((String) event.getNewValue())) {
		// ... Do something with the new value
	}
}</code>
</pre>
<p>The negative side of using <code>onchange="submit()"</code> is that the form is submitted, validated and you don&#8217;t get the same dynamic feeling like with a4j:support. </p>
<p>In JSF 2 things are easier as you don&#8217;t need the valueChangeListener and you can use the listener attribute of <code>&lt;f:ajax&gt;</code> instead.</p>
]]></content:encoded>
			<wfw:commentRss>http://ruleoftech.com/2012/jsf-1-2-and-getting-selected-value-from-dropdown/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
