<?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>cismet Gadgets</title>
	<atom:link href="http://blogs.cismet.de/gadgets/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.cismet.de/gadgets</link>
	<description>Just another blogs.cismet.de weblog</description>
	<lastBuildDate>Thu, 27 May 2010 09:33:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>JSR Logging</title>
		<link>http://blogs.cismet.de/gadgets/2008/02/14/jsr-logging/</link>
		<comments>http://blogs.cismet.de/gadgets/2008/02/14/jsr-logging/#comments</comments>
		<pubDate>Thu, 14 Feb 2008 16:20:27 +0000</pubDate>
		<dc:creator>Thorsten</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Netbeans]]></category>
		<category><![CDATA[Tip]]></category>

		<guid isPermaLink="false">http://blogs.cismet.de/gadgets/2008/02/14/jsr-logging/</guid>
		<description><![CDATA[Here is the promised example of java.util.logging logs working with beanmill: Handler socket = new ObjectOrientedSocketHandler&#40;&#34;localhost&#34;, 4445&#41;; Logger logger = Logger.getLogger&#40;&#34;de.cismet.nameyourlogger&#34;&#41;; logger.setLevel&#40;Level.ALL&#41;; logger.addHandler&#40;socket&#41;; for &#40;int i=0;i&#38;lt;1000;++i&#41; &#123; logger.log&#40;Level.SEVERE, &#34;log this !!! &#34;&#41;; &#125; you need the class ObjectOrientedSocketHandler which is included originally in the lumbermill project (The codebase for beanmill). Click on more to see [...]]]></description>
			<content:encoded><![CDATA[<p>Here is the promised example of java.util.logging logs working with beanmill:</p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;color: #767A00;">Handler socket <span style="color: #339933;color: #CCC;">=</span> <span style="color: #000000; font-weight: bold;color: #B83A24;">new</span> ObjectOrientedSocketHandler<span style="color: #009900;color: #CCC;">&#40;</span><span style="color: #0000ff;color: #666666;">&quot;localhost&quot;</span>, <span style="color: #cc66cc;color: #DDD;">4445</span><span style="color: #009900;color: #CCC;">&#41;</span><span style="color: #339933;color: #CCC;">;</span>
        Logger logger <span style="color: #339933;color: #CCC;">=</span> Logger.<span style="color: #006633;">getLogger</span><span style="color: #009900;color: #CCC;">&#40;</span><span style="color: #0000ff;color: #666666;">&quot;de.cismet.nameyourlogger&quot;</span><span style="color: #009900;color: #CCC;">&#41;</span><span style="color: #339933;color: #CCC;">;</span>
        logger.<span style="color: #006633;">setLevel</span><span style="color: #009900;color: #CCC;">&#40;</span>Level.<span style="color: #006633;">ALL</span><span style="color: #009900;color: #CCC;">&#41;</span><span style="color: #339933;color: #CCC;">;</span>
        logger.<span style="color: #006633;">addHandler</span><span style="color: #009900;color: #CCC;">&#40;</span>socket<span style="color: #009900;color: #CCC;">&#41;</span><span style="color: #339933;color: #CCC;">;</span>
        <span style="color: #000000; font-weight: bold;color: #B83A24;">for</span> <span style="color: #009900;color: #CCC;">&#40;</span><span style="color: #000066; font-weight: bold;color: #343832;">int</span> i<span style="color: #339933;color: #CCC;">=</span><span style="color: #cc66cc;color: #DDD;">0</span><span style="color: #339933;color: #CCC;">;</span>i<span style="color: #339933;color: #CCC;">&amp;</span>lt<span style="color: #339933;color: #CCC;">;</span><span style="color: #cc66cc;color: #DDD;">1000</span><span style="color: #339933;color: #CCC;">;++</span>i<span style="color: #009900;color: #CCC;">&#41;</span> <span style="color: #009900;color: #CCC;">&#123;</span>
            logger.<span style="color: #006633;">log</span><span style="color: #009900;color: #CCC;">&#40;</span>Level.<span style="color: #006633;">SEVERE</span>, <span style="color: #0000ff;color: #666666;">&quot;log this !!! &quot;</span><span style="color: #009900;color: #CCC;">&#41;</span><span style="color: #339933;color: #CCC;">;</span>
        <span style="color: #009900;color: #CCC;">&#125;</span></pre></div></div>

<p>you need the class ObjectOrientedSocketHandler which is included originally in the <a href="http://traxel.com/lumbermill/">lumbermill </a>project (The codebase for beanmill).</p>
<p>Click on more to see the code of the ObjectOrientedSocketHandler and embed it in your project if you want.</p>
<p><span id="more-16"></span></p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;color: #767A00;"><span style="color: #666666; font-style: italic;color: #CDC;">/*
  This file is part of Lumbermill.
&nbsp;
  Lumbermill is free software; you can redistribute it
  and/or modify it under the terms of the GNU General Public
  License as published by the Free Software Foundation;
  either version 2 of the License, or (at your option) any
  later version.
&nbsp;
  Lumbermill is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied
  warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  PURPOSE.  See the GNU General Public License for more
  details.
&nbsp;
  You should have received a copy of the GNU General Public
  License along with Lumbermill; if not, write to the Free
  Software Foundation, Inc., 59 Temple Place, Suite 330,
  Boston, MA 02111-1307 USA
*/</span>
&nbsp;
<span style="color: #000000; font-weight: bold;color: #B83A24;">import</span> <span style="color: #006699;">java.io.IOException</span><span style="color: #339933;color: #CCC;">;</span>
<span style="color: #000000; font-weight: bold;color: #B83A24;">import</span> <span style="color: #006699;">java.io.ObjectOutputStream</span><span style="color: #339933;color: #CCC;">;</span>
<span style="color: #000000; font-weight: bold;color: #B83A24;">import</span> <span style="color: #006699;">java.io.OutputStream</span><span style="color: #339933;color: #CCC;">;</span>
<span style="color: #000000; font-weight: bold;color: #B83A24;">import</span> <span style="color: #006699;">java.net.Socket</span><span style="color: #339933;color: #CCC;">;</span>
<span style="color: #000000; font-weight: bold;color: #B83A24;">import</span> <span style="color: #006699;">java.net.SocketException</span><span style="color: #339933;color: #CCC;">;</span>
<span style="color: #000000; font-weight: bold;color: #B83A24;">import</span> <span style="color: #006699;">java.util.logging.ErrorManager</span><span style="color: #339933;color: #CCC;">;</span>
<span style="color: #000000; font-weight: bold;color: #B83A24;">import</span> <span style="color: #006699;">java.util.logging.Handler</span><span style="color: #339933;color: #CCC;">;</span>
<span style="color: #000000; font-weight: bold;color: #B83A24;">import</span> <span style="color: #006699;">java.util.logging.LogRecord</span><span style="color: #339933;color: #CCC;">;</span>
&nbsp;
<span style="color: #008000; font-style: italic; font-weight: bold;">/**
 * This is an object oriented version of
 * java.util.logging.SocketHandler.  Some wild-eyed
 * programming theorists are beginning to see the
 * world of programming in terms of objects instead
 * of the strings that Sun's SocketHandler transmits.
 * Hopefully if anyone from Sun reads this they
 * have a sufficient sense of humour to laugh at it.
 * It's a joke, just a little good-natured ribbing.
 */</span>
<span style="color: #000000; font-weight: bold;color: #B83A24;">public</span> <span style="color: #000000; font-weight: bold;color: #B83A24;">class</span> ObjectOrientedSocketHandler
    <span style="color: #000000; font-weight: bold;color: #B83A24;">extends</span> Handler <span style="color: #009900;color: #CCC;">&#123;</span>
&nbsp;
    <span style="color: #666666; font-style: italic;color: #CDC;">// ------------------------------------</span>
    <span style="color: #666666; font-style: italic;color: #CDC;">// Instance Definition</span>
    <span style="color: #666666; font-style: italic;color: #CDC;">// ------------------------------------</span>
&nbsp;
    <span style="color: #000000; font-weight: bold;color: #B83A24;">private</span> <span style="color: #000000; font-weight: bold;color: #B83A24;">final</span> <span style="color: #003399;color: #8FB394;">ObjectOutputStream</span> STREAM<span style="color: #339933;color: #CCC;">;</span>
&nbsp;
    <span style="color: #666666; font-style: italic;color: #CDC;">// ------------------------------------</span>
    <span style="color: #666666; font-style: italic;color: #CDC;">// Instance Initialization</span>
    <span style="color: #666666; font-style: italic;color: #CDC;">// ------------------------------------</span>
&nbsp;
    <span style="color: #000000; font-weight: bold;color: #B83A24;">public</span> ObjectOrientedSocketHandler<span style="color: #009900;color: #CCC;">&#40;</span> <span style="color: #003399;color: #8FB394;">String</span> host,
                                        <span style="color: #000066; font-weight: bold;color: #343832;">int</span> port <span style="color: #009900;color: #CCC;">&#41;</span> <span style="color: #009900;color: #CCC;">&#123;</span>
        <span style="color: #003399;color: #8FB394;">Socket</span> socket<span style="color: #339933;color: #CCC;">;</span>
        <span style="color: #003399;color: #8FB394;">OutputStream</span> outStream<span style="color: #339933;color: #CCC;">;</span>
        <span style="color: #003399;color: #8FB394;">ObjectOutputStream</span> stream <span style="color: #339933;color: #CCC;">=</span> <span style="color: #000066; font-weight: bold;color: #577A61;">null</span><span style="color: #339933;color: #CCC;">;</span>
&nbsp;
        <span style="color: #000000; font-weight: bold;color: #B83A24;">try</span> <span style="color: #009900;color: #CCC;">&#123;</span>
            socket <span style="color: #339933;color: #CCC;">=</span> <span style="color: #000000; font-weight: bold;color: #B83A24;">new</span> <span style="color: #003399;color: #8FB394;">Socket</span><span style="color: #009900;color: #CCC;">&#40;</span> host, port <span style="color: #009900;color: #CCC;">&#41;</span><span style="color: #339933;color: #CCC;">;</span>
            outStream <span style="color: #339933;color: #CCC;">=</span> socket.<span style="color: #006633;">getOutputStream</span><span style="color: #009900;color: #CCC;">&#40;</span><span style="color: #009900;color: #CCC;">&#41;</span><span style="color: #339933;color: #CCC;">;</span>
            stream <span style="color: #339933;color: #CCC;">=</span> <span style="color: #000000; font-weight: bold;color: #B83A24;">new</span> <span style="color: #003399;color: #8FB394;">ObjectOutputStream</span><span style="color: #009900;color: #CCC;">&#40;</span> outStream <span style="color: #009900;color: #CCC;">&#41;</span><span style="color: #339933;color: #CCC;">;</span>
        <span style="color: #009900;color: #CCC;">&#125;</span> <span style="color: #000000; font-weight: bold;color: #B83A24;">catch</span><span style="color: #009900;color: #CCC;">&#40;</span> <span style="color: #003399;color: #8FB394;">IOException</span> e <span style="color: #009900;color: #CCC;">&#41;</span> <span style="color: #009900;color: #CCC;">&#123;</span>
            reportError<span style="color: #009900;color: #CCC;">&#40;</span> e.<span style="color: #006633;">getMessage</span><span style="color: #009900;color: #CCC;">&#40;</span><span style="color: #009900;color: #CCC;">&#41;</span>,
                         e,
                         ErrorManager.<span style="color: #006633;">OPEN_FAILURE</span> <span style="color: #009900;color: #CCC;">&#41;</span><span style="color: #339933;color: #CCC;">;</span>
        <span style="color: #009900;color: #CCC;">&#125;</span>
&nbsp;
        STREAM <span style="color: #339933;color: #CCC;">=</span> stream<span style="color: #339933;color: #CCC;">;</span>
    <span style="color: #009900;color: #CCC;">&#125;</span>
&nbsp;
    <span style="color: #666666; font-style: italic;color: #CDC;">// ------------------------------------</span>
    <span style="color: #666666; font-style: italic;color: #CDC;">// Handler Implementation</span>
    <span style="color: #666666; font-style: italic;color: #CDC;">// ------------------------------------</span>
&nbsp;
    <span style="color: #000000; font-weight: bold;color: #B83A24;">public</span> <span style="color: #000066; font-weight: bold;color: #343832;">void</span> close<span style="color: #009900;color: #CCC;">&#40;</span><span style="color: #009900;color: #CCC;">&#41;</span> <span style="color: #009900;color: #CCC;">&#123;</span>
        <span style="color: #000000; font-weight: bold;color: #B83A24;">try</span> <span style="color: #009900;color: #CCC;">&#123;</span>
            STREAM.<span style="color: #006633;">close</span><span style="color: #009900;color: #CCC;">&#40;</span><span style="color: #009900;color: #CCC;">&#41;</span><span style="color: #339933;color: #CCC;">;</span>
        <span style="color: #009900;color: #CCC;">&#125;</span> <span style="color: #000000; font-weight: bold;color: #B83A24;">catch</span><span style="color: #009900;color: #CCC;">&#40;</span> <span style="color: #003399;color: #8FB394;">IOException</span> e <span style="color: #009900;color: #CCC;">&#41;</span> <span style="color: #009900;color: #CCC;">&#123;</span>
            reportError<span style="color: #009900;color: #CCC;">&#40;</span> e.<span style="color: #006633;">getMessage</span><span style="color: #009900;color: #CCC;">&#40;</span><span style="color: #009900;color: #CCC;">&#41;</span>,
                         e,
                         ErrorManager.<span style="color: #006633;">CLOSE_FAILURE</span> <span style="color: #009900;color: #CCC;">&#41;</span><span style="color: #339933;color: #CCC;">;</span>
        <span style="color: #009900;color: #CCC;">&#125;</span>
    <span style="color: #009900;color: #CCC;">&#125;</span>
&nbsp;
    <span style="color: #000000; font-weight: bold;color: #B83A24;">public</span> <span style="color: #000066; font-weight: bold;color: #343832;">void</span> flush<span style="color: #009900;color: #CCC;">&#40;</span><span style="color: #009900;color: #CCC;">&#41;</span> <span style="color: #009900;color: #CCC;">&#123;</span>
        <span style="color: #000000; font-weight: bold;color: #B83A24;">try</span> <span style="color: #009900;color: #CCC;">&#123;</span>
            STREAM.<span style="color: #006633;">flush</span><span style="color: #009900;color: #CCC;">&#40;</span><span style="color: #009900;color: #CCC;">&#41;</span><span style="color: #339933;color: #CCC;">;</span>
        <span style="color: #009900;color: #CCC;">&#125;</span> <span style="color: #000000; font-weight: bold;color: #B83A24;">catch</span><span style="color: #009900;color: #CCC;">&#40;</span> <span style="color: #003399;color: #8FB394;">IOException</span> e <span style="color: #009900;color: #CCC;">&#41;</span> <span style="color: #009900;color: #CCC;">&#123;</span>
            reportError<span style="color: #009900;color: #CCC;">&#40;</span> e.<span style="color: #006633;">getMessage</span><span style="color: #009900;color: #CCC;">&#40;</span><span style="color: #009900;color: #CCC;">&#41;</span>,
                         e,
                         ErrorManager.<span style="color: #006633;">FLUSH_FAILURE</span> <span style="color: #009900;color: #CCC;">&#41;</span><span style="color: #339933;color: #CCC;">;</span>
        <span style="color: #009900;color: #CCC;">&#125;</span>
    <span style="color: #009900;color: #CCC;">&#125;</span>
&nbsp;
    <span style="color: #000000; font-weight: bold;color: #B83A24;">public</span> <span style="color: #000066; font-weight: bold;color: #343832;">void</span> publish<span style="color: #009900;color: #CCC;">&#40;</span> LogRecord record <span style="color: #009900;color: #CCC;">&#41;</span> <span style="color: #009900;color: #CCC;">&#123;</span>
        <span style="color: #000000; font-weight: bold;color: #B83A24;">try</span> <span style="color: #009900;color: #CCC;">&#123;</span>
            STREAM.<span style="color: #006633;">writeObject</span><span style="color: #009900;color: #CCC;">&#40;</span> record <span style="color: #009900;color: #CCC;">&#41;</span><span style="color: #339933;color: #CCC;">;</span>
            STREAM.<span style="color: #006633;">flush</span><span style="color: #009900;color: #CCC;">&#40;</span><span style="color: #009900;color: #CCC;">&#41;</span><span style="color: #339933;color: #CCC;">;</span>
        <span style="color: #009900;color: #CCC;">&#125;</span> <span style="color: #000000; font-weight: bold;color: #B83A24;">catch</span><span style="color: #009900;color: #CCC;">&#40;</span> <span style="color: #003399;color: #8FB394;">IOException</span> e <span style="color: #009900;color: #CCC;">&#41;</span> <span style="color: #009900;color: #CCC;">&#123;</span>
            reportError<span style="color: #009900;color: #CCC;">&#40;</span> e.<span style="color: #006633;">getMessage</span><span style="color: #009900;color: #CCC;">&#40;</span><span style="color: #009900;color: #CCC;">&#41;</span>,
                         e,
                         ErrorManager.<span style="color: #006633;">WRITE_FAILURE</span> <span style="color: #009900;color: #CCC;">&#41;</span><span style="color: #339933;color: #CCC;">;</span>
        <span style="color: #009900;color: #CCC;">&#125;</span>
    <span style="color: #009900;color: #CCC;">&#125;</span>
<span style="color: #009900;color: #CCC;">&#125;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://blogs.cismet.de/gadgets/2008/02/14/jsr-logging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beanmill Source Code Available</title>
		<link>http://blogs.cismet.de/gadgets/2008/01/24/beanmill-source-code-available/</link>
		<comments>http://blogs.cismet.de/gadgets/2008/01/24/beanmill-source-code-available/#comments</comments>
		<pubDate>Thu, 24 Jan 2008 08:49:26 +0000</pubDate>
		<dc:creator>Thorsten</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Netbeans]]></category>

		<guid isPermaLink="false">http://blogs.cismet.de/gadgets/2008/01/24/beanmill-source-code-available/</guid>
		<description><![CDATA[Tom asked for the source code of the beanmill plugin. So I put a link on the beanmill page. There are 2 projects. A normal Java Project and a Module Suite. The Java Project is a fork of the Lumbermill project. We eliminated a memory leak (thanks Sebastian) and add some functionalities. We will refactor [...]]]></description>
			<content:encoded><![CDATA[<p>Tom asked for the <a href="http://www.cismet.de/downloads/beanmill.zip" title="Sources">source</a> code of the <a href="http://blogs.cismet.de/gadgets/beanmill/" title="Beanmill">beanmill plugin</a>. So I put a <a href="http://www.cismet.de/downloads/beanmill.zip">link </a>on the <a href="http://blogs.cismet.de/gadgets/beanmill/">beanmill page</a>.</p>
<p>There are 2 projects. A normal Java Project and a Module Suite. The Java Project is a fork of the Lumbermill project. We eliminated a memory leak (thanks Sebastian) and add some functionalities. We will refactor the lumbermill code soon to fulfill our coding conventions. So stay tuned. There will be a update soon.</p>
<p>The Project Suite uses this project with a Library Wrapper. If you have question don&#8217;t hesitate to contact us.</p>
<p>Have a good one</p>
<p>Thorsten</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.cismet.de/gadgets/2008/01/24/beanmill-source-code-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wow &#8211; Plug-in of the podcast</title>
		<link>http://blogs.cismet.de/gadgets/2008/01/17/wow-plug-in-of-the-podcast/</link>
		<comments>http://blogs.cismet.de/gadgets/2008/01/17/wow-plug-in-of-the-podcast/#comments</comments>
		<pubDate>Thu, 17 Jan 2008 14:01:12 +0000</pubDate>
		<dc:creator>Thorsten</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Netbeans]]></category>

		<guid isPermaLink="false">http://blogs.cismet.de/gadgets/2008/01/17/wow-plug-in-of-the-podcast/</guid>
		<description><![CDATA[Hi folks. We are proud to announce that our Beanmill Plugin is the &#8220;Plug-in of the podcast&#8221; of the Netbeans Podcast Episode #39 of the famous Blog of Roman Strobl. Have fun Thorsten]]></description>
			<content:encoded><![CDATA[<p>Hi folks. We are proud to announce that our <a href="http://blogs.cismet.de/gadgets/beanmill/" title="Beanmill">Beanmill Plugin</a> is the &#8220;Plug-in of the podcast&#8221; of the <a href="http://blogs.sun.com/roumen/entry/netbeans_podcast_episode_39" title="Netbeans podcast">Netbeans Podcast Episode #39</a> of the famous <a href="http://blogs.sun.com/roumen/" title="Roumen's Weblog">Blog</a> of Roman Strobl.</p>
<p>Have  fun</p>
<p>Thorsten</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.cismet.de/gadgets/2008/01/17/wow-plug-in-of-the-podcast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bugs in Beanmill</title>
		<link>http://blogs.cismet.de/gadgets/2008/01/08/bugs-in-beanmill/</link>
		<comments>http://blogs.cismet.de/gadgets/2008/01/08/bugs-in-beanmill/#comments</comments>
		<pubDate>Tue, 08 Jan 2008 21:38:06 +0000</pubDate>
		<dc:creator>Thorsten</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Netbeans]]></category>

		<guid isPermaLink="false">http://blogs.cismet.de/gadgets/2008/01/08/bugs-in-beanmill/</guid>
		<description><![CDATA[Did you find a bug in Beanmill? Do you have an issue? Just file it in our bugtrackingsystem. Have fun Thorsten]]></description>
			<content:encoded><![CDATA[<p>Did you find a bug in <a href="http://blogs.cismet.de/gadgets/beanmill">Beanmill</a>? Do you have an issue?</p>
<p>Just file it in our <a href="http://bugs.cismet.de/mantis">bugtrackingsystem</a>.</p>
<p>Have fun</p>
<p>Thorsten</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.cismet.de/gadgets/2008/01/08/bugs-in-beanmill/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beanmill Logging Viewer</title>
		<link>http://blogs.cismet.de/gadgets/2008/01/04/beanmill-logging-viewer/</link>
		<comments>http://blogs.cismet.de/gadgets/2008/01/04/beanmill-logging-viewer/#comments</comments>
		<pubDate>Fri, 04 Jan 2008 16:38:58 +0000</pubDate>
		<dc:creator>Thorsten</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Netbeans]]></category>

		<guid isPermaLink="false">http://blogs.cismet.de/gadgets/2008/01/04/beanmill-logging-viewer/</guid>
		<description><![CDATA[Just get it]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogs.cismet.de/gadgets/beanmill/"><img src="http://plugins.netbeans.org/nbpluginportal/files/images/1198233199350_beanmillSmall.png" align="top" border="0" height="203" width="402" /></a></p>
<p><a href="http://blogs.cismet.de/gadgets/beanmill/">Just get it</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.cismet.de/gadgets/2008/01/04/beanmill-logging-viewer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gadgets Site Relaunch</title>
		<link>http://blogs.cismet.de/gadgets/2008/01/04/erster-eintrag/</link>
		<comments>http://blogs.cismet.de/gadgets/2008/01/04/erster-eintrag/#comments</comments>
		<pubDate>Fri, 04 Jan 2008 10:37:54 +0000</pubDate>
		<dc:creator>Thorsten</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.cismet.de/gadgets/2008/01/04/erster-eintrag/</guid>
		<description><![CDATA[Hi. We are proud to announce the relaunch of the cismet gadgets site. We put our new Logging Viewer for Netbeans 6.0 online.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.cismet.de/images/cismetLogo152.png" height="30" width="152" /></p>
<p>Hi. We are proud to announce the relaunch of the cismet gadgets site.<a href="http://blogs.cismet.de/gadgets/files/test.swf" title="test.swf"></a></p>
<p>We put our new Logging Viewer for Netbeans 6.0 <a href="http://blogs.cismet.de/gadgets/beanmill/">online</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.cismet.de/gadgets/2008/01/04/erster-eintrag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

