<?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>Capi's Corner &#187; free</title>
	<atom:link href="http://www.dont-panic.cc/capi/tag/free/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dont-panic.cc/capi</link>
	<description>Development, Network, Security, Ideas &#038; Opinions</description>
	<lastBuildDate>Sat, 10 Dec 2011 19:31:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Terminal-Server NX 2.0 &#8220;Free-Forever&#8221; Released</title>
		<link>http://www.dont-panic.cc/capi/2006/06/23/terminal-server-nx-20-free-forever-released/</link>
		<comments>http://www.dont-panic.cc/capi/2006/06/23/terminal-server-nx-20-free-forever-released/#comments</comments>
		<pubDate>Fri, 23 Jun 2006 09:15:59 +0000</pubDate>
		<dc:creator>Martin Carpella</dc:creator>
				<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[gpl]]></category>
		<category><![CDATA[nx]]></category>
		<category><![CDATA[remote-access]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[terminal-services]]></category>

		<guid isPermaLink="false">http://www.dont-panic.cc/capi/archives/45</guid>
		<description><![CDATA[NoMachine has announced the release of version 2.0 of thei terminal-server product NX, codenamed &#8220;Free-Forever&#8221;. They have released more of their products under GPL and provide now a restricted version under the codename &#8220;NX Desktop Server free-forever&#8221;: NoMachine provides a free-for-download and free-forever NX Desktop Server which allows 2 user sessions providing access to any [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nomachine.com">NoMachine</a> has <a href="http://www.nomachine.com/news-read.php?idnews=174">announced</a> the release of version 2.0 of thei terminal-server product NX, codenamed &#8220;Free-Forever&#8221;.</p>
<p>They have released more of their products under GPL and provide now a restricted version  under the codename &#8220;<font class="t_1black">NX Desktop Server free-forever&#8221;:</font></p>
<blockquote><p><font class="t_1black">NoMachine provides a free-for-download and free-forever NX  Desktop Server which allows 2 user sessions providing access to any desktop or any network type.</font></p></blockquote>
<p><font class="t_1black">The 2-user sessions should be quite sufficient for many purposes.</font></p>
<p>[Source: <a href="http://www.golem.de/0606/46076.html">Golem.de</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dont-panic.cc/capi/2006/06/23/terminal-server-nx-20-free-forever-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DWR &#8211; Easy AJAX for Java</title>
		<link>http://www.dont-panic.cc/capi/2006/05/03/dwr-easy-ajax-for-java/</link>
		<comments>http://www.dont-panic.cc/capi/2006/05/03/dwr-easy-ajax-for-java/#comments</comments>
		<pubDate>Wed, 03 May 2006 16:29:20 +0000</pubDate>
		<dc:creator>Martin Carpella</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[dwr]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[library]]></category>
		<category><![CDATA[rpc]]></category>

		<guid isPermaLink="false">http://www.dont-panic.cc/capi/archives/42</guid>
		<description><![CDATA[DWR is a really fantastic library for Java: it allows to write JavaScript applications in web browsers that will directly and almost transparently call Java-methods of objects that live in the Java-Servlet-Container (e.g. Tomcat) as part of the web-application. DWR, which is short for &#8220;Direct Web Remoting&#8221;, acts as a JavaScript-to-Java RPC marshaller on the [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://getahead.ltd.uk/dwr">DWR</a></strong> is a really fantastic library for Java: it allows to write JavaScript applications in web browsers that will directly and almost transparently call Java-methods of objects that live in the Java-Servlet-Container (e.g. Tomcat) as part of the web-application.</p>
<p><span id="more-42"></span>DWR, which is short for &#8220;Direct Web Remoting&#8221;, acts as a JavaScript-to-Java RPC marshaller on the client side, using the common <a href="http://en.wikipedia.org/wiki/Ajax_%28programming%29">Ajax</a> XMLHttpRequest object, hiding any marshalling. In fact, it is as simple as adding dwr.jar to your web-application&#8217;s WEB-INF/lib directory and configuring an XML file to define which Java-objects are exposed remotely.</p>
<p>It also provides a web-interface for debugging your exposed objects by providing a way to call its methods manually without the need of your own testing-JavaScript application.</p>
<p>Ajax is a buzz word at the moment, despite the fact that the technologies it comprises of are quite old and well established. Regardless of how you think about Ajax and the hype around it (and Web2.0), there is one simple case where every web-developer should consider the usage of Ajax: input form validation. And DWR makes semi-clientside/serverside validation of forms a pure fun to code. While the data is still submitted to the server for validation (allowing you to fully utilize existing validation code of your Java web-application) from the user&#8217;s point-of-view the server-round-trip is spared, improving usability and user-experience.<br />
Anyone knows if this library has been ported to .NET? <img src='http://www.dont-panic.cc/capi/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.dont-panic.cc/capi/2006/05/03/dwr-easy-ajax-for-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

