<?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"
	>

<channel>
	<title>Java Blog &#187; devoxx</title>
	<atom:link href="http://javablog.be/category/java/devoxx-java/feed/" rel="self" type="application/rss+xml" />
	<link>http://javablog.be</link>
	<description>Java tutorials and tips</description>
	<pubDate>Sun, 11 Apr 2010 11:00:27 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
	<language>en</language>
			<item>
		<title>Devoxx 08: HTML 5 WebSockets and Server Sent Events</title>
		<link>http://javablog.be/java/devoxx-08-html-5-websockets-and-server-sent-events/</link>
		<comments>http://javablog.be/java/devoxx-08-html-5-websockets-and-server-sent-events/#comments</comments>
		<pubDate>Wed, 24 Dec 2008 00:20:16 +0000</pubDate>
		<dc:creator>Wim Bervoets</dc:creator>
		
		<category><![CDATA[devoxx]]></category>

		<category><![CDATA[java]]></category>

		<category><![CDATA[html5]]></category>

		<category><![CDATA[server sent events]]></category>

		<category><![CDATA[websockets]]></category>

		<guid isPermaLink="false">http://javablog.be/?p=84</guid>
		<description><![CDATA[WebSockets and Server Sent events can enable us to create a full-duplex web application.<p>This is a post from <a href="http://javablog.be">JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/devoxx-08-html-5-websockets-and-server-sent-events/">Devoxx 08: HTML 5 WebSockets and Server Sent Events</a></p>
]]></description>
			<content:encoded><![CDATA[<p style="float: left;margin: 4px;"><script type="text/javascript"><!--
google_ad_client = "pub-3157565936561586";
/* Javablog, Rectangle, ATF */
google_ad_slot = "7293959518";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p><p>A few weeks back on <a href="http://www.devoxx.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.devoxx.com');">Devoxx 08</a>, Jonas Jacobi and John R. Fallows did a talk about 2 future web technologies  that&#8217;ll change the way we architect our webapplications.<br />
(in the same manner then AJAX did a few years back).</p>
<p>The technologies are called <strong>WebSockets</strong> and <strong>Server Sent events</strong> and are part of the HTML5 specification. (which is now in <a href="http://dev.w3.org/html5/spec/Overview.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://dev.w3.org/html5/spec/Overview.html');">Editor&#8217;s draft</a> and thus not finished)</p>
<p>WebSockets and Server Sent events can enable us to create a full-duplex web application. Eg. a sample application could be a poker game with thousands of viewers connected and that those viewers need to be notified in realtime. Another example could be a continuously updated stock ticker.</p>
<p>Prior to the introduction of WebSockets, bi-directional browser communication was an elusive beast, commonly known as <strong>Comet</strong> or <strong>ReverseAjax</strong> and typically achieved with an astonishing assortment of browser hacks. But, with the emerging standards outlined in the HTML 5 specification, developers can now take advantage of a full-duplex communications channel that operates over a single socket.</p>
<h3>Real time web</h3>
<p>With real time web, we mean that web clients can receive server updates (server initiated communication) and end users receive those updates concurrently.</p>
<p>Long polling with AJAX (XML Http Request) gives us near real time updates, but they are requested from the client and cause increased network traffic. Also these short AJAX requests generally have a small payload and relatively high amount of http headers. (wasted bandwith)</p>
<p>Comet technologies support HTTP Streaming, this setups a persistent http connection which only has to be setup/teardown only once. (especially nice for performance for https traffic)</p>
<h3>HTML 5 Overview</h3>
<p>HTML 5 not only contains WebSockets and Server Sent events.  It also contains standard features like:</p>
<ul>
<li>communication (sockets, cross-site)</li>
<li>graphics (2D)</li>
<li>drag n drop</li>
<li>storage (transient, (offline)    persistent)</li>
<li>compatibility</li>
</ul>
<p>Here we focus on two: Server-sent events and WebSockets</p>
<h3>Server-sent events</h3>
<p>Server-sent events standardizes how we stream data from the server to the client (in fact standardizing comet/reverse ajax).</p>
<p>It introduces a new DOM Element: <strong>eventsource</strong>. The eventsource element provides a simple interface for allowing servers to dispatch DOM events into documents that expect it.</p>
<p>Here is how to create it:</p>
<p>var es = document.createElement(&#8221;eventsource&#8221;);<br />
es.addEventSource(&#8221;http://www.javablog.be&#8221;);</p>
<p>(where the event source is an URL).</p>
<h3>WebSockets</h3>
<p>WebSockets provide a full duplex TCP connection to communicate between the browser and the server. It traverses firewalls and routers and allows authorized cross domain communication.</p>
<p>An example is provided below:</p>
<p>var myWebSocket = new WebSocket(&#8221;ws://www.websocket.org&#8221;);</p>
<p>The WebSocket(url) constructor takes one argument, url, which specifies the URL to which to connect. When a WebSocket object is created, the User Agent must parse this argument and verify that the URL parses without failure and has a &lt;scheme&gt; component whose value is either &#8220;ws&#8221; or &#8220;wss&#8221;. Only then the user agent must asynchronously establish a Web Socket connection to url.</p>
<p>myWebSocket.postMessage(&#8221;Hello&#8221;);</p>
<p>=&gt; text based data transmission using the connection.</p>
<p>myWebSocket.onopen = function(evt) { }</p>
<p>=&gt; The open  event is fired when the Web Socket connection is established.</p>
<p>myWebSocket.onmessage = function(evt) { }</p>
<p>=&gt; The message event is fired when when data is received for a connection.</p>
<p>myWebSocket.onclose = function(evt) { }</p>
<p>=&gt; The close event is fired when the connection is closed</p>
<p>myWebSocket.disconnect();</p>
<p>=&gt; close the conncetion</p>
<h3>Browser support</h3>
<p>Opera already has Server sent events, for Mozilla/Firefox there is patch available (bug <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=338583" onclick="javascript:pageTracker._trackPageview('/outbound/article/https://bugzilla.mozilla.org/show_bug.cgi?id=338583');">338583</a>)<br />
WebSockets is not yet available natively in browsers.</p>
<p>But fortunately for current browsers <a href="http://www.kaazing.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.kaazing.com');">Kaazing.com</a> provides an emulation Javascript library. (IE5.5+, Firefox 1.5, Chrome 0.2+, Safari 3.1+, Opera9+)<br />
The Javascript only emulates the parts which are not yet implemented in a certain browser.<br />
It can be any of the following layers: ByteSocket, Websockets, Server sent events, Cross site XML HTTP Request, XML Http Request IFrame postMessage</p>
<p>This is a post from <a href="http://javablog.be" >JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/devoxx-08-html-5-websockets-and-server-sent-events/" >Devoxx 08: HTML 5 WebSockets and Server Sent Events</a></p>
<p></p>]]></content:encoded>
			<wfw:commentRss>http://javablog.be/java/devoxx-08-html-5-websockets-and-server-sent-events/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Devoxx 08: Major Servlet 3.0 features</title>
		<link>http://javablog.be/java/devoxx-08-major-servlet-30-features/</link>
		<comments>http://javablog.be/java/devoxx-08-major-servlet-30-features/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 23:11:17 +0000</pubDate>
		<dc:creator>Wim Bervoets</dc:creator>
		
		<category><![CDATA[devoxx]]></category>

		<category><![CDATA[java]]></category>

		<category><![CDATA[servlet]]></category>

		<guid isPermaLink="false">http://javablog.be/?p=83</guid>
		<description><![CDATA[The major new features planned for Servlet 3.0.<p>This is a post from <a href="http://javablog.be">JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/devoxx-08-major-servlet-30-features/">Devoxx 08: Major Servlet 3.0 features</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Martin Marinschek divided his talk in two main topics: Servlet 3.0 and JSF 2.0.</p>
<p>The first part of the talk showed us the new features planned for <strong>Servlet 3.0</strong>.</p>
<p>What follows is based on the <a href="https://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_JCP-Site/en_US/-/USD/ViewFilteredProducts-SingleVariationTypeFilter" onclick="javascript:pageTracker._trackPageview('/outbound/article/https://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_JCP-Site/en_US/-/USD/ViewFilteredProducts-SingleVariationTypeFilter');">Public Review draft</a>.<br />
So be sure to check if the following still applies to the final Servlet 3.0 version.</p>
<h2>Modularization of the web.xml settings</h2>
<p>Right now the web.xml is one big configuration file. In Servlet 3.0 it&#8217;s possible to modularize it into multiple files.<br />
These files are called &#8220;web-fragment.xml&#8221; files and they are merged together on application initialization.<br />
Because these fragments can conflict with each other, the specification has specified rules for conflict resolution. (we could take a deeper look at this in a future blog post).</p>
<p>Martin also said that fragment ordering is not defined; this eg. could mean that a filter you want to be executed first may have to be repeated in multiple fragments.</p>
<h2>Annotation support in your servlets</h2>
<p>A few annotations were added that you can use in your servlets:</p>
<p><strong>@WebServlet</strong></p>
<p>This annotation is used to define a Servlet component in a web application. The urlPatterns or the value attribute on the annotation MUST be present. (value is for 1 URL mapping, urlPatterns for multiple URL mappings)<br />
Classes annotated with @WebServlet class MUST extend javax.servlet.http.HttpServlet class except when applied on a JAX-RS / JAX-WS endpoint.</p>
<p>Example:</p>
<p>@WebServlet(name=&#8221;MyServlet&#8221;, urlPatterns={&#8221;/foo&#8221;, &#8220;/bar&#8221;})<br />
public class SampleUsingAnnotationAttributes extends HttpServlet{<br />
public void doGet(HttpServletRequest req, HttpServletResponse res) {<br />
}<br />
}</p>
<p>Other optional attributes for the @WebServlet annotation are: supportAsync and asyncTimeout</p>
<p><strong>@ServletFilter</strong></p>
<p>This annotation is used to define a Filter in a web application. Classes annotated with @ServletFilter MUST implement javax.servlet.Filter</p>
<p><strong>@InitParam</strong></p>
<p>This annotation is used to specify Init Parameters for a servlet or a filter</p>
<p><strong>@WebServletContextListener</strong></p>
<p>The WebServletContextListener annotation is used to annotate a context listener to get events for various operations on the particular web application context.<br />
Classes annotated with @WebServletContextListener MUST implement javax.servlet.ServletContextListener</p>
<h2>Asynchronous requests</h2>
<p>Sometimes a filter and/or servlet is unable to complete the processing of a request without waiting for a resource or event before generating a response. For example, a servlet may need to wait for an available JDBC connection, for a response from a remote web service, for a JMS message, or for an application event, before<br />
proceeding to generate a response. Waiting within the servlet is an inefficient operation as it is a blocking operation that consumes a thread and other limited resources. Frequently a slow resource such as a database may have many threads blocked waiting for access and can cause thread starvation and poor quality of service  for an entire web container.</p>
<p>Servlet 3.0 introduces the ability for asynchronous processing of requests so that the thread may return to the container and perform other tasks.</p>
<p>When asyncSupported is set to true in the filter/servlets annotation the application can start asynchronous<br />
processing in a separate thread by calling the HttpServletRequest.startAsync method passing it a<br />
reference to the request and response objects.</p>
<p>After I&#8217;ve played with the asynchronous requests I&#8217;ll post some code samples to Java Blog to explain how exactly it works.</p>
<p>This is a post from <a href="http://javablog.be" >JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/devoxx-08-major-servlet-30-features/" >Devoxx 08: Major Servlet 3.0 features</a></p>
]]></content:encoded>
			<wfw:commentRss>http://javablog.be/java/devoxx-08-major-servlet-30-features/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Devoxx 08: what&#8217;s new in Java 7?</title>
		<link>http://javablog.be/java/devoxx-java/devoxx-08-whats-new-in-java-7/</link>
		<comments>http://javablog.be/java/devoxx-java/devoxx-08-whats-new-in-java-7/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 14:46:05 +0000</pubDate>
		<dc:creator>Wim Bervoets</dc:creator>
		
		<category><![CDATA[devoxx]]></category>

		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://javablog.be/?p=73</guid>
		<description><![CDATA[What's new in Java 7<p>This is a post from <a href="http://javablog.be">JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/devoxx-java/devoxx-08-whats-new-in-java-7/">Devoxx 08: what&#8217;s new in Java 7?</a></p>
]]></description>
			<content:encoded><![CDATA[<p>In the thursday keynote at Devoxx, Mark Reinhold (from Sun) presented the new features slated for the Java 7 release. (the expected release date of Java 7 is early 2010)</p>
<p>One of the most important new features will be the modularization of Java SE7. Modularization is needed because both Java and the JDK have become quite big. This for example gives issues when trying to run it on smaller (mobile) devices. Cutting the JDK into modules will avoid loading unnecessary classes, which on their turn result in shorter start-up times for applications. To print a simple string &#8220;Hello world&#8221;, Java needs over 300 classes in the current version!.</p>
<p>A list of the other new features can be found <a href="http://hamletdarcy.blogspot.com/2008/12/java-7-update-from-mark-reinhold-at.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://hamletdarcy.blogspot.com/2008/12/java-7-update-from-mark-reinhold-at.html');">here!</a></p>
<p>This is a post from <a href="http://javablog.be" >JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/devoxx-java/devoxx-08-whats-new-in-java-7/" >Devoxx 08: what&#8217;s new in Java 7?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://javablog.be/java/devoxx-java/devoxx-08-whats-new-in-java-7/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Devoxx 08: Scrum in practice</title>
		<link>http://javablog.be/java/devoxx-java/devoxx-08-scrum-in-practice/</link>
		<comments>http://javablog.be/java/devoxx-java/devoxx-08-scrum-in-practice/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 20:50:17 +0000</pubDate>
		<dc:creator>Wim Bervoets</dc:creator>
		
		<category><![CDATA[devoxx]]></category>

		<category><![CDATA[agile]]></category>

		<category><![CDATA[scrum]]></category>

		<guid isPermaLink="false">http://javablog.be/?p=68</guid>
		<description><![CDATA[An introduction to the SCRUM Agile Methodology<p>This is a post from <a href="http://javablog.be">JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/devoxx-java/devoxx-08-scrum-in-practice/">Devoxx 08: Scrum in practice</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Yesterday we gave <a href="http://javablog.be/java/devoxx-java/devoxx-08-xtreme-programming" >an overview of Xtreme Prgramming</a>. Today we&#8217;ll dive into the SCRUM Agile methodology.</p>
<h2>Scrum roles</h2>
<p>Scrum defines three different roles: the Product Owner, the Team and the Scrum master.</p>
<h3>Product owner</h3>
<p>The product owner, who&#8217;s responsible for the project, has the following tasks:</p>
<ul>
<li>he defines the product vision and features</li>
<li>he plans releases (release dates &amp; contents of a release)</li>
<li>he prioritizes the needed features in a release according to business/market value</li>
<li>he&#8217;s able to change features and priority of the tasks before the start of every iteration (not during the iteration)</li>
<li>at the end of a release he accepts or rejects the work results</li>
<li>he&#8217;s responsible for the return on investment of the product.</li>
</ul>
<h3>Team</h3>
<p>The team is responsible for the success of every iteration done in a release. Ideally the team consists out of 5 to 9 members. Different profiles are needed: developers, testers, QA guys, infrastructure guys, &#8230;</p>
<p>What does the team needs todo?</p>
<ul>
<li>they need to select the iteration goal and specify work results</li>
<li>they have the right to do everything within the boundaries of the project guidelines to reach the iteration goal</li>
<li>they organize themselves and their work</li>
<li>they demo the work results to the product owner and stakeholders</li>
</ul>
<h3>Scrum master</h3>
<p>The scrum master makes sure that the SCRUM process is followed and understood.<br />
Besides that he also:</p>
<ul>
<li>helps the dev team to improve its productivity by facilitating creativety and empowerment</li>
<li>helps the team improve engineering practices &amp; tools so each increment of functionality is potentially shippable</li>
<li>helps the customer directly drive the functionality developped</li>
<li>enables close cooperation between all roles</li>
</ul>
<h2>Scrum process</h2>
<p>The full scope of the project is put into a <strong>Product Backlog</strong>; the list of features to be implemented. This product backlog is input for the <strong>Sprint planning meeting</strong>.</p>
<p>The <strong>sprint backlog</strong> defines the scope of one iteration and is derived from the product backlog. It&#8217;s defined during the Sprint planning meeting. In this meeting the product owner presents to the team a prioritized product backlog. The team gives estimates of the stories selected for this sprint.</p>
<p>Stories are compared to each other and relative points are given based on the complexity of the stories. (higher points =&gt; more complexity). The Product owner and Team negotiate the Sprint goal and the team commits to develop a set of features. Based on these stories the team plans out smaller subtasks.</p>
<p>During the <strong>sprint</strong> the scope is fixed. It&#8217;s the task of the scrum master to protect the team from scope changes. (only the team itself is allowed to change the scope of the sprint!)</p>
<p>Generally a sprint takes 2 to 4 weeks. During the sprint, there is a <strong>daily scrum meeting</strong>; a short standup meeting where every team member will talk about what he&#8217;s busy until next meeting, what he did yesterday and any problems he encountered.</p>
<p>The sprint produces an increment of potentially shippable functionality containing analysis, design, coding, testing and docs.</p>
<p>During the Sprint a <strong>burndown chart</strong> is created: it displays the amount of work done &amp; work remaining across time. (start with max. number of story points at day 1; then substract story points when a story is fully finished during the sprint time). This allows you to see the progress rate and estimated completion date. One can also see if the team is faster/slower then the &#8220;steady pace&#8221;. (purple line)</p>
<p><div class="wp-caption aligncenter" style="width: 437px"><img title="Burn down chart" src="http://assets.devx.com/articlefigs/17361.jpg" alt="Burn down chart" width="427" height="255" /><p class="wp-caption-text">Burn down chart</p></div></p>
<p>When the Sprint is finished; there is a <strong>sprint review meeting</strong> (a demo to the stakeholders) and a <strong>sprint retrospective meeting</strong> (a lessons learned meeting)</p>
<p>During the Sprint review meeting the team gives a demo to the product owner with the output of the iteration. Ideally this should be done in a pre-prod or production environment.</p>
<p>Present only what is &#8220;really&#8221; done (clean, refactored, unit-tsted, built, acceptance-tested); otherwise you&#8217;ll give a false impression that more is done then what&#8217;s reality.</p>
<p>A Sprint retrospective is a kind of Lessons learned meeting: continous improvement by collecting what went well &amp; what went wrong during the Sprint.</p>
<p>You can also revise the development process to make it more effective &amp; enjoable for the next sprint. (eg. processes, practices, communication, environment, artefacts, tools,&#8230;)</p>
<p>A <strong>release </strong>consists of one or more sprints. The contents of a release are based on the continuously updated product backlog. It&#8217;s the product owners responsibality to fill in the release, taking into account the actual team velocity. (eg. this team can do 25 points per sprint).</p>
<p>Release planning can be done <strong>Time driven</strong> (if your release should be ready on a fixed deadline) or <strong>feature driven</strong>. (select the highest priority items first).</p>
<h2>Scrum from theory to practice</h2>
<p>You may have difficulty going from theory to practice due to any of the following reasons:</p>
<ul>
<li>transitioning to an agile culture</li>
<li>finding a product owner</li>
<li>lack of communication between people</li>
<li> cross organizational boundaries</li>
</ul>
<p>Scrum doesn&#8217;t pretend to solve those issues in your organization, but will make them visible a lot earlier in the project.</p>
<p>An ideal product owner should be able to:</p>
<ul>
<li>coordinate the various user requirements</li>
<li>articulate the vision of the project</li>
<li>make scope decisions</li>
<li>be a project sponsor: negotiates &amp; manages the budget</li>
<li>define priorities and releases</li>
<li>allocate time for collaboration with the team</li>
</ul>
<p>For cross department communication, try to get domain/technical experts assigned on the project full-time (can also be part-time if full time is not possible).</p>
<p>This is a post from <a href="http://javablog.be" >JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/devoxx-java/devoxx-08-scrum-in-practice/" >Devoxx 08: Scrum in practice</a></p>
]]></content:encoded>
			<wfw:commentRss>http://javablog.be/java/devoxx-java/devoxx-08-scrum-in-practice/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Devoxx 08: Xtreme Programming</title>
		<link>http://javablog.be/java/devoxx-java/devoxx-08-xtreme-programming/</link>
		<comments>http://javablog.be/java/devoxx-java/devoxx-08-xtreme-programming/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 23:02:46 +0000</pubDate>
		<dc:creator>Wim Bervoets</dc:creator>
		
		<category><![CDATA[devoxx]]></category>

		<category><![CDATA[scrum]]></category>

		<category><![CDATA[xp]]></category>

		<guid isPermaLink="false">http://javablog.be/?p=63</guid>
		<description><![CDATA[This university session was covering two main topics: an introduction to Xtreme Programming and an overview of the very popular SCRUM agile methodology.<p>This is a post from <a href="http://javablog.be">JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/devoxx-java/devoxx-08-xtreme-programming/">Devoxx 08: Xtreme Programming</a></p>
]]></description>
			<content:encoded><![CDATA[<p>This is a post from <a href="http://javablog.be" >JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/devoxx-java/devoxx-08-xtreme-programming/" >Devoxx 08: Xtreme Programming</a></p>
]]></content:encoded>
			<wfw:commentRss>http://javablog.be/java/devoxx-java/devoxx-08-xtreme-programming/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Top picks for Devoxx 2008 University day 2</title>
		<link>http://javablog.be/java/devoxx-java/top-picks-for-devoxx-2008-university-day-2/</link>
		<comments>http://javablog.be/java/devoxx-java/top-picks-for-devoxx-2008-university-day-2/#comments</comments>
		<pubDate>Sun, 07 Dec 2008 19:19:51 +0000</pubDate>
		<dc:creator>Wim Bervoets</dc:creator>
		
		<category><![CDATA[devoxx]]></category>

		<category><![CDATA[android]]></category>

		<category><![CDATA[comet]]></category>

		<category><![CDATA[flex]]></category>

		<category><![CDATA[html5]]></category>

		<category><![CDATA[websockets]]></category>

		<guid isPermaLink="false">http://javablog.be/?p=61</guid>
		<description><![CDATA[My top picks for the 2nd Devoxx day<p>This is a post from <a href="http://javablog.be">JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/devoxx-java/top-picks-for-devoxx-2008-university-day-2/">Top picks for Devoxx 2008 University day 2</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Here are my Top picks for Devoxx 2008 University day 2:</p>
<h2><a href="http://www.devoxx.com/display/JV08/Comet%2C+Never+More" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.devoxx.com/display/JV08/Comet%2C+Never+More');">Comet: Never more!</a></h2>
<p>The title of this talk is a little bit mysterious if you don&#8217;t know what Comet is about, but the content is looking very interesting.</p>
<p>The first part of the talk will be about HTML5 WebSockets and Server Side Events. WebSockets will enable full-duplex HTTP communication, and bring an end to the &#8220;click and wait&#8221; paradigm traditionally associated with the Web.</p>
<p>Attendees will also learn how WebSockets can be used to deliver information from a set of TCP-based backend services, such as Apache ActiveMQ and Jabber to a variety of clients (e.g. Java, Silverlight, and Flash) other than JavaScript.</p>
<p>The second half of this university session will be about deploying and scaling &#8220;real-time&#8221; Web Applications. Eg. the server and network architecture, performance requirements and scalability of a bi-directional Web application will be discussed.</p>
<p>Check out <a href="http://www.jroller.com/jonasjacobi/entry/kaazing_world_tour_learn_about" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.jroller.com/jonasjacobi/entry/kaazing_world_tour_learn_about');">Jonas Jacobi&#8217;s blog</a> for more info!</p>
<h2><a href="http://www.devoxx.com/display/JV08/Filthy+Rich+Clients%2C+beyond+Java" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.devoxx.com/display/JV08/Filthy+Rich+Clients%2C+beyond+Java');">Filthy Rich Clients: beyond Java</a></h2>
<p>Interested in the new Google Android phone? Then you certainly should not miss this univerity session by Romain Guy.</p>
<p><a href="http://www.curious-creature.org/2008/12/05/official-android-development-phones/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.curious-creature.org/2008/12/05/official-android-development-phones/');">Romain Guy</a>, who&#8217;s now working on the UI design of the Android phones as a Google engineer, always manages to impress the crowd with cool demos and knows what it takes to design a intuitive user-interface.<br />
(which is more important than most programmers think!)</p>
<p><a href="http://graphics-geek.blogspot.com/2008/11/minmax.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://graphics-geek.blogspot.com/2008/11/minmax.html');">Chet Haase</a>, who works on animation and UI components for the Flex SDK team at Adobe Systems, will likewise describe how to achieve beautiful Filthy Rich Client applications for Flex.</p>
<p>This is a post from <a href="http://javablog.be" >JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/devoxx-java/top-picks-for-devoxx-2008-university-day-2/" >Top picks for Devoxx 2008 University day 2</a></p>
]]></content:encoded>
			<wfw:commentRss>http://javablog.be/java/devoxx-java/top-picks-for-devoxx-2008-university-day-2/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
