<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Simples Assim &#187; JBossESB</title>
	<atom:link href="http://fernandoribeiro.eti.br/tag/jbossesb/feed/" rel="self" type="application/rss+xml" />
	<link>http://fernandoribeiro.eti.br</link>
	<description></description>
	<lastBuildDate>Tue, 07 Feb 2012 02:12:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='fernandoribeiro.eti.br' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Simples Assim &#187; JBossESB</title>
		<link>http://fernandoribeiro.eti.br</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://fernandoribeiro.eti.br/osd.xml" title="Simples Assim" />
	<atom:link rel='hub' href='http://fernandoribeiro.eti.br/?pushpress=hub'/>
		<item>
		<title>Sending Messages to the DLQ in JBossESB 4.7</title>
		<link>http://fernandoribeiro.eti.br/2010/01/25/sending-messages-to-the-dlq-in-jbossesb-4-7-2/</link>
		<comments>http://fernandoribeiro.eti.br/2010/01/25/sending-messages-to-the-dlq-in-jbossesb-4-7-2/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 03:00:20 +0000</pubDate>
		<dc:creator>Fernando Ribeiro</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[JBossESB]]></category>

		<guid isPermaLink="false">http://fernandoribeiro.eti.br/?p=5456</guid>
		<description><![CDATA[The page 65 of the Programmers Guide says that if you are trying to deliver the message (&#8230;) it will send the message to the DeadLetterService, but doesn&#8217;t say how to do so.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernandoribeiro.eti.br&amp;blog=830982&amp;post=5456&amp;subd=simplesassim&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The page 65 of the <a href="http://www.jboss.org/file-access/default/members/jbossesb/freezone/docs/4.7/manuals/pdf/ProgrammersGuide.pdf">Programmers Guide</a> says that <em>if you are trying to deliver the message </em>(&#8230;)<em> it will send the message to the DeadLetterService</em>, but doesn&#8217;t say how to do so.</p>
<p><pre class="brush: java;">import org.jboss.soa.esb.actions.AbstractActionPipelineProcessor;
import org.jboss.soa.esb.addressing.EPR;
import org.jboss.soa.esb.addressing.eprs.LogicalEPR;
import org.jboss.soa.esb.client.ServiceInvoker;
import org.jboss.soa.esb.message.Message;

public static final DQLSampleAction extends AbstractActionPipelineProcessor {
  private static final EPR DLQ_EPR = new LogicalEPR(ServiceInvoker.INTERNAL_SERVICE_CATEGORY, ServiceInvoker.DEAD_LETTER_SERVICE_NAME);

  public Message process(final Message msg) {
    msg.getHeader().getCall().setReplyTo(DLQ_EPR);

    return msg;
  }

}</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/simplesassim.wordpress.com/5456/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/simplesassim.wordpress.com/5456/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/simplesassim.wordpress.com/5456/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/simplesassim.wordpress.com/5456/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/simplesassim.wordpress.com/5456/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/simplesassim.wordpress.com/5456/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/simplesassim.wordpress.com/5456/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/simplesassim.wordpress.com/5456/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/simplesassim.wordpress.com/5456/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/simplesassim.wordpress.com/5456/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/simplesassim.wordpress.com/5456/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/simplesassim.wordpress.com/5456/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/simplesassim.wordpress.com/5456/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/simplesassim.wordpress.com/5456/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernandoribeiro.eti.br&amp;blog=830982&amp;post=5456&amp;subd=simplesassim&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fernandoribeiro.eti.br/2010/01/25/sending-messages-to-the-dlq-in-jbossesb-4-7-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">fribeiro</media:title>
		</media:content>
	</item>
		<item>
		<title>Splitters in JBossESB</title>
		<link>http://fernandoribeiro.eti.br/2010/01/14/splitters-in-jbossesb/</link>
		<comments>http://fernandoribeiro.eti.br/2010/01/14/splitters-in-jbossesb/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 19:41:41 +0000</pubDate>
		<dc:creator>Fernando Ribeiro</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[JBossESB]]></category>

		<guid isPermaLink="false">http://fernandoribeiro.eti.br/?p=5396</guid>
		<description><![CDATA[Definitely missed. http://architecture-journal.blogspot.com/2009/08/splitter-pattern-no-jboss-esb.html https://jira.jboss.org/jira/browse/JBESB-2805 (vote for it!)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernandoribeiro.eti.br&amp;blog=830982&amp;post=5396&amp;subd=simplesassim&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Definitely missed.</p>
<p><a href="http://architecture-journal.blogspot.com/2009/08/splitter-pattern-no-jboss-esb.html">http://architecture-journal.blogspot.com/2009/08/splitter-pattern-no-jboss-esb.html</a></p>
<p><a href="https://jira.jboss.org/jira/browse/JBESB-2805">https://jira.jboss.org/jira/browse/JBESB-2805</a> (<a href="https://jira.jboss.org/jira/secure/ViewIssue.jspa?id=12392955&amp;vote=vote">vote</a> for it!)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/simplesassim.wordpress.com/5396/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/simplesassim.wordpress.com/5396/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/simplesassim.wordpress.com/5396/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/simplesassim.wordpress.com/5396/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/simplesassim.wordpress.com/5396/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/simplesassim.wordpress.com/5396/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/simplesassim.wordpress.com/5396/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/simplesassim.wordpress.com/5396/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/simplesassim.wordpress.com/5396/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/simplesassim.wordpress.com/5396/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/simplesassim.wordpress.com/5396/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/simplesassim.wordpress.com/5396/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/simplesassim.wordpress.com/5396/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/simplesassim.wordpress.com/5396/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernandoribeiro.eti.br&amp;blog=830982&amp;post=5396&amp;subd=simplesassim&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fernandoribeiro.eti.br/2010/01/14/splitters-in-jbossesb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">fribeiro</media:title>
		</media:content>
	</item>
		<item>
		<title>Feature Request for JBossESB 4.7</title>
		<link>http://fernandoribeiro.eti.br/2009/12/29/feature-request-for-jbossesb-4-7-2/</link>
		<comments>http://fernandoribeiro.eti.br/2009/12/29/feature-request-for-jbossesb-4-7-2/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 23:29:22 +0000</pubDate>
		<dc:creator>Fernando Ribeiro</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[JBossESB]]></category>

		<guid isPermaLink="false">http://fernandoribeiro.eti.br/?p=5360</guid>
		<description><![CDATA[https://jira.jboss.org/jira/browse/JBESB-3091 (vote for it!)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernandoribeiro.eti.br&amp;blog=830982&amp;post=5360&amp;subd=simplesassim&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="https://jira.jboss.org/jira/browse/JBESB-3091">https://jira.jboss.org/jira/browse/JBESB-3091</a> (<a href="https://jira.jboss.org/jira/secure/ViewIssue.jspa?id=12401124&amp;vote=vote">vote</a> for it!)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/simplesassim.wordpress.com/5360/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/simplesassim.wordpress.com/5360/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/simplesassim.wordpress.com/5360/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/simplesassim.wordpress.com/5360/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/simplesassim.wordpress.com/5360/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/simplesassim.wordpress.com/5360/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/simplesassim.wordpress.com/5360/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/simplesassim.wordpress.com/5360/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/simplesassim.wordpress.com/5360/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/simplesassim.wordpress.com/5360/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/simplesassim.wordpress.com/5360/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/simplesassim.wordpress.com/5360/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/simplesassim.wordpress.com/5360/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/simplesassim.wordpress.com/5360/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernandoribeiro.eti.br&amp;blog=830982&amp;post=5360&amp;subd=simplesassim&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fernandoribeiro.eti.br/2009/12/29/feature-request-for-jbossesb-4-7-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">fribeiro</media:title>
		</media:content>
	</item>
		<item>
		<title>Custom Apache Xalan Extensions for JBossESB</title>
		<link>http://fernandoribeiro.eti.br/2009/12/29/custom-apache-xalan-extensions-for-jbossesb/</link>
		<comments>http://fernandoribeiro.eti.br/2009/12/29/custom-apache-xalan-extensions-for-jbossesb/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 04:59:49 +0000</pubDate>
		<dc:creator>Fernando Ribeiro</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[JBossESB]]></category>

		<guid isPermaLink="false">http://fernandoribeiro.eti.br/?p=5350</guid>
		<description><![CDATA[MessagePropertyExtension https://jira.jboss.org/jira/browse/JBESB-3090 (vote for it!)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernandoribeiro.eti.br&amp;blog=830982&amp;post=5350&amp;subd=simplesassim&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://github.com/fribeiro1/MessagePropertyExtension">MessagePropertyExtension</a></li>
</ul>
<p><a href="https://jira.jboss.org/jira/browse/JBESB-3090">https://jira.jboss.org/jira/browse/JBESB-3090</a> (<a href="https://jira.jboss.org/jira/secure/ViewIssue.jspa?id=12401087&amp;vote=vote">vote</a> for it!)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/simplesassim.wordpress.com/5350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/simplesassim.wordpress.com/5350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/simplesassim.wordpress.com/5350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/simplesassim.wordpress.com/5350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/simplesassim.wordpress.com/5350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/simplesassim.wordpress.com/5350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/simplesassim.wordpress.com/5350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/simplesassim.wordpress.com/5350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/simplesassim.wordpress.com/5350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/simplesassim.wordpress.com/5350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/simplesassim.wordpress.com/5350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/simplesassim.wordpress.com/5350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/simplesassim.wordpress.com/5350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/simplesassim.wordpress.com/5350/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernandoribeiro.eti.br&amp;blog=830982&amp;post=5350&amp;subd=simplesassim&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fernandoribeiro.eti.br/2009/12/29/custom-apache-xalan-extensions-for-jbossesb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">fribeiro</media:title>
		</media:content>
	</item>
		<item>
		<title>Bug in JBossESB 4.7</title>
		<link>http://fernandoribeiro.eti.br/2009/12/28/bug-in-jbossesb-4-7-2/</link>
		<comments>http://fernandoribeiro.eti.br/2009/12/28/bug-in-jbossesb-4-7-2/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 21:31:57 +0000</pubDate>
		<dc:creator>Fernando Ribeiro</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[JBossESB]]></category>

		<guid isPermaLink="false">http://fernandoribeiro.eti.br/?p=5346</guid>
		<description><![CDATA[https://jira.jboss.org/jira/browse/JBESB-3088 (vote for it!)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernandoribeiro.eti.br&amp;blog=830982&amp;post=5346&amp;subd=simplesassim&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="https://jira.jboss.org/jira/browse/JBESB-3088">https://jira.jboss.org/jira/browse/JBESB-3088</a> (<a href="https://jira.jboss.org/jira/secure/ViewIssue.jspa?id=12401077&amp;vote=vote">vote</a> for it!)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/simplesassim.wordpress.com/5346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/simplesassim.wordpress.com/5346/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/simplesassim.wordpress.com/5346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/simplesassim.wordpress.com/5346/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/simplesassim.wordpress.com/5346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/simplesassim.wordpress.com/5346/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/simplesassim.wordpress.com/5346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/simplesassim.wordpress.com/5346/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/simplesassim.wordpress.com/5346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/simplesassim.wordpress.com/5346/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/simplesassim.wordpress.com/5346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/simplesassim.wordpress.com/5346/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/simplesassim.wordpress.com/5346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/simplesassim.wordpress.com/5346/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernandoribeiro.eti.br&amp;blog=830982&amp;post=5346&amp;subd=simplesassim&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fernandoribeiro.eti.br/2009/12/28/bug-in-jbossesb-4-7-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">fribeiro</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Publish a JBossESB 4.7 Service as a Web Service</title>
		<link>http://fernandoribeiro.eti.br/2009/12/24/how-to-publish-a-jbossesb-4-7-service-as-a-web-service/</link>
		<comments>http://fernandoribeiro.eti.br/2009/12/24/how-to-publish-a-jbossesb-4-7-service-as-a-web-service/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 21:25:39 +0000</pubDate>
		<dc:creator>Fernando Ribeiro</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[JBossESB]]></category>

		<guid isPermaLink="false">http://fernandoribeiro.eti.br/?p=5323</guid>
		<description><![CDATA[Refer to page 44 of the Programmers Guide.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernandoribeiro.eti.br&amp;blog=830982&amp;post=5323&amp;subd=simplesassim&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><pre class="brush: xml;">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;jbossesb ...&gt;
  &lt;services&gt;
    &lt;service category=&quot;Sample&quot; name=&quot;SampleService&quot; description=&quot;Sample Service&quot;&gt;
      &lt;listeners&gt;
        &lt;http-gateway name=&quot;HTTP&quot; /&gt;
      &lt;/listeners&gt;
      &lt;actions inXsd=&quot;/xsd/Sample.xsd&quot; outXsd=&quot;/xsd/SampleResponse.xsd&quot; faultXsd=&quot;/xsd/SampleFault.xsd&quot;&gt;
        ...
      &lt;/actions&gt;
    &lt;/service&gt;
  &lt;/services&gt;
&lt;/jbossesb&gt;</pre></p>
<p>Refer to page 44 of the <a href="http://www.jboss.org/file-access/default/members/jbossesb/freezone/docs/4.7/manuals/pdf/ProgrammersGuide.pdf">Programmers Guide</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/simplesassim.wordpress.com/5323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/simplesassim.wordpress.com/5323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/simplesassim.wordpress.com/5323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/simplesassim.wordpress.com/5323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/simplesassim.wordpress.com/5323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/simplesassim.wordpress.com/5323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/simplesassim.wordpress.com/5323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/simplesassim.wordpress.com/5323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/simplesassim.wordpress.com/5323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/simplesassim.wordpress.com/5323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/simplesassim.wordpress.com/5323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/simplesassim.wordpress.com/5323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/simplesassim.wordpress.com/5323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/simplesassim.wordpress.com/5323/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernandoribeiro.eti.br&amp;blog=830982&amp;post=5323&amp;subd=simplesassim&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fernandoribeiro.eti.br/2009/12/24/how-to-publish-a-jbossesb-4-7-service-as-a-web-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">fribeiro</media:title>
		</media:content>
	</item>
		<item>
		<title>Bug in JBossESB 4.7</title>
		<link>http://fernandoribeiro.eti.br/2009/12/24/bug-in-jbossesb-4-7/</link>
		<comments>http://fernandoribeiro.eti.br/2009/12/24/bug-in-jbossesb-4-7/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 03:32:12 +0000</pubDate>
		<dc:creator>Fernando Ribeiro</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[JBossESB]]></category>

		<guid isPermaLink="false">http://fernandoribeiro.eti.br/?p=5313</guid>
		<description><![CDATA[https://jira.jboss.org/jira/browse/JBESB-3085 (vote for it!)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernandoribeiro.eti.br&amp;blog=830982&amp;post=5313&amp;subd=simplesassim&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="https://jira.jboss.org/jira/browse/JBESB-3085">https://jira.jboss.org/jira/browse/JBESB-3085</a> (<a href="https://jira.jboss.org/jira/secure/ViewIssue.jspa?id=12400988&amp;vote=vote">vote</a> for it!)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/simplesassim.wordpress.com/5313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/simplesassim.wordpress.com/5313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/simplesassim.wordpress.com/5313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/simplesassim.wordpress.com/5313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/simplesassim.wordpress.com/5313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/simplesassim.wordpress.com/5313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/simplesassim.wordpress.com/5313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/simplesassim.wordpress.com/5313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/simplesassim.wordpress.com/5313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/simplesassim.wordpress.com/5313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/simplesassim.wordpress.com/5313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/simplesassim.wordpress.com/5313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/simplesassim.wordpress.com/5313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/simplesassim.wordpress.com/5313/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernandoribeiro.eti.br&amp;blog=830982&amp;post=5313&amp;subd=simplesassim&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fernandoribeiro.eti.br/2009/12/24/bug-in-jbossesb-4-7/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">fribeiro</media:title>
		</media:content>
	</item>
		<item>
		<title>Feature Request for JBossESB 4.7</title>
		<link>http://fernandoribeiro.eti.br/2009/12/23/feature-request-for-jbossesb-4-7/</link>
		<comments>http://fernandoribeiro.eti.br/2009/12/23/feature-request-for-jbossesb-4-7/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 02:45:55 +0000</pubDate>
		<dc:creator>Fernando Ribeiro</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[JBossESB]]></category>

		<guid isPermaLink="false">http://fernandoribeiro.eti.br/?p=5305</guid>
		<description><![CDATA[https://jira.jboss.org/jira/browse/JBESB-3084 (vote for it!)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernandoribeiro.eti.br&amp;blog=830982&amp;post=5305&amp;subd=simplesassim&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="https://jira.jboss.org/jira/browse/JBESB-3084">https://jira.jboss.org/jira/browse/JBESB-3084</a> (<a href="https://jira.jboss.org/jira/secure/ViewIssue.jspa?id=12400986&amp;vote=vote">vote</a> for it!)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/simplesassim.wordpress.com/5305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/simplesassim.wordpress.com/5305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/simplesassim.wordpress.com/5305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/simplesassim.wordpress.com/5305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/simplesassim.wordpress.com/5305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/simplesassim.wordpress.com/5305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/simplesassim.wordpress.com/5305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/simplesassim.wordpress.com/5305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/simplesassim.wordpress.com/5305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/simplesassim.wordpress.com/5305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/simplesassim.wordpress.com/5305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/simplesassim.wordpress.com/5305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/simplesassim.wordpress.com/5305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/simplesassim.wordpress.com/5305/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernandoribeiro.eti.br&amp;blog=830982&amp;post=5305&amp;subd=simplesassim&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fernandoribeiro.eti.br/2009/12/23/feature-request-for-jbossesb-4-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">fribeiro</media:title>
		</media:content>
	</item>
		<item>
		<title>From HTTP to ESB &#8211; JBossESB 4.7&#8242;s New Servlet based HTTP Gateway</title>
		<link>http://fernandoribeiro.eti.br/2009/12/23/from-http-to-esb-jbossesb-4-7s-new-servlet-based-http-gateway/</link>
		<comments>http://fernandoribeiro.eti.br/2009/12/23/from-http-to-esb-jbossesb-4-7s-new-servlet-based-http-gateway/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 02:28:27 +0000</pubDate>
		<dc:creator>Fernando Ribeiro</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[JBossESB]]></category>

		<guid isPermaLink="false">http://fernandoribeiro.eti.br/2009/12/23/from-http-to-esb-jbossesb-4-7s-new-servlet-based-http-gateway/</guid>
		<description><![CDATA[A very nice addition. http://jbossesb.blogspot.com/2009/12/from-http-to-esb-jboss-esb-47s-new.html<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernandoribeiro.eti.br&amp;blog=830982&amp;post=5303&amp;subd=simplesassim&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A very nice addition.</p>
<p><a href="http://jbossesb.blogspot.com/2009/12/from-http-to-esb-jboss-esb-47s-new.html">http://jbossesb.blogspot.com/2009/12/from-http-to-esb-jboss-esb-47s-new.html</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/simplesassim.wordpress.com/5303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/simplesassim.wordpress.com/5303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/simplesassim.wordpress.com/5303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/simplesassim.wordpress.com/5303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/simplesassim.wordpress.com/5303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/simplesassim.wordpress.com/5303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/simplesassim.wordpress.com/5303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/simplesassim.wordpress.com/5303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/simplesassim.wordpress.com/5303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/simplesassim.wordpress.com/5303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/simplesassim.wordpress.com/5303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/simplesassim.wordpress.com/5303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/simplesassim.wordpress.com/5303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/simplesassim.wordpress.com/5303/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernandoribeiro.eti.br&amp;blog=830982&amp;post=5303&amp;subd=simplesassim&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fernandoribeiro.eti.br/2009/12/23/from-http-to-esb-jbossesb-4-7s-new-servlet-based-http-gateway/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">fribeiro</media:title>
		</media:content>
	</item>
		<item>
		<title>JBoss Packaging Maven Plugin</title>
		<link>http://fernandoribeiro.eti.br/2009/12/23/jboss-packaging-maven-plugin/</link>
		<comments>http://fernandoribeiro.eti.br/2009/12/23/jboss-packaging-maven-plugin/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 02:04:16 +0000</pubDate>
		<dc:creator>Fernando Ribeiro</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[JBossESB]]></category>
		<category><![CDATA[Maven]]></category>

		<guid isPermaLink="false">http://fernandoribeiro.eti.br/?p=5300</guid>
		<description><![CDATA[http://mojo.codehaus.org/jboss-packaging-maven-plugin/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernandoribeiro.eti.br&amp;blog=830982&amp;post=5300&amp;subd=simplesassim&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://mojo.codehaus.org/jboss-packaging-maven-plugin/">http://mojo.codehaus.org/jboss-packaging-maven-plugin/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/simplesassim.wordpress.com/5300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/simplesassim.wordpress.com/5300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/simplesassim.wordpress.com/5300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/simplesassim.wordpress.com/5300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/simplesassim.wordpress.com/5300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/simplesassim.wordpress.com/5300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/simplesassim.wordpress.com/5300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/simplesassim.wordpress.com/5300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/simplesassim.wordpress.com/5300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/simplesassim.wordpress.com/5300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/simplesassim.wordpress.com/5300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/simplesassim.wordpress.com/5300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/simplesassim.wordpress.com/5300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/simplesassim.wordpress.com/5300/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernandoribeiro.eti.br&amp;blog=830982&amp;post=5300&amp;subd=simplesassim&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fernandoribeiro.eti.br/2009/12/23/jboss-packaging-maven-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">fribeiro</media:title>
		</media:content>
	</item>
	</channel>
</rss>
