<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>SOA Tips 'n' Tricks</title>
	<atom:link href="http://soatipsntricks.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://soatipsntricks.wordpress.com</link>
	<description>Tips 'n' Tricks from the world of IBM WebSphere SOA Products</description>
	<lastBuildDate>Sun, 05 Jul 2009 12:20:18 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<image>
		<url>http://www.gravatar.com/blavatar/80e20c24c36085df6996a7f2334b101c?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>SOA Tips 'n' Tricks</title>
		<link>http://soatipsntricks.wordpress.com</link>
	</image>
			<item>
		<title>Emulating modelled faults in WebSphere Integration Developer</title>
		<link>http://soatipsntricks.wordpress.com/2009/07/05/emulating-modelled-faults-in-websphere-integration-developer/</link>
		<comments>http://soatipsntricks.wordpress.com/2009/07/05/emulating-modelled-faults-in-websphere-integration-developer/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 12:20:18 +0000</pubDate>
		<dc:creator>davidgeorge</dc:creator>
				<category><![CDATA[Enterprise Service Bus]]></category>
		<category><![CDATA[Process Server]]></category>
		<category><![CDATA[WebSphere]]></category>
		<category><![CDATA[emulation]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[wid]]></category>

		<guid isPermaLink="false">http://soatipsntricks.wordpress.com/?p=256</guid>
		<description><![CDATA[Since version 6.1, WebSphere Integration Developer has come with the ability to create test projects containing test suites and programmatic emulators, allowing developers to create repeatable automated tests for their modules. Projects can contain any number of suites, test cases and variations to cover all the behaviours of the module.
One scenario often overlooked in user-defined [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=soatipsntricks.wordpress.com&blog=504053&post=256&subd=soatipsntricks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Since version 6.1, WebSphere Integration Developer has come with the ability to create test projects containing test suites and programmatic emulators, allowing developers to create repeatable automated tests for their modules. Projects can contain any number of suites, test cases and variations to cover all the behaviours of the module.</p>
<p>One scenario often overlooked in user-defined test suites is the one where the partner reference returns a modelled fault.</p>
<p>For example:</p>
<p><img class="size-full wp-image-255 alignnone" title="Interface with fault" src="http://soatipsntricks.files.wordpress.com/2009/07/1-interface.png?w=575&#038;h=169" alt="Example interface with a modelled fault" width="575" height="169" /></p>
<p>Fortunately, it is possible to return a fault using a programmatic emulator. In this example we will use Java, but the same behaviour can be accomplished using a visual snippet.</p>
<p>First create the payload for the fault. If the payload is a String or other Java type, you can simply create it and assign it to a variable. If the object is a business object then locate the BOFactory and create it as you would any other SDO DataObject</p>
<pre>BOFactory boFactory =
  (BOFactory) ServiceManager.INSTANCE.locateService("com/ibm/websphere/bo/BOFactory");

DataObject reservationFault =
  boFactory.create("http://LB_Example","ReservationFault");</pre>
<p>Once you have the object set any attributes that are required.</p>
<pre>reservationFault.setString("faultCode", "100");</pre>
<p>Next create a Java ServiceBusinessException. The exception has four constructor methods, and we want the one that accepts a String and an Object. The string will be name of the fault being returned, and the object will be the payload created above.</p>
<p>Finally, you throw (not return) the ServiceBusinessException</p>
<pre>ServiceBusinessException sbe =
  new ServiceBusinessException(reservationFault,"unknownEventFault");

throw sbe;</pre>
<p>For completeness, here is the same code represented visually.</p>
<p><img class="size-full wp-image-259 alignnone" title="Visual fault emulator" src="http://soatipsntricks.files.wordpress.com/2009/07/2-visual.png?w=589&#038;h=239" alt="Fault emulator as visual snippet" width="589" height="239" /></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/soatipsntricks.wordpress.com/256/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/soatipsntricks.wordpress.com/256/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/soatipsntricks.wordpress.com/256/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/soatipsntricks.wordpress.com/256/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/soatipsntricks.wordpress.com/256/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/soatipsntricks.wordpress.com/256/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/soatipsntricks.wordpress.com/256/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/soatipsntricks.wordpress.com/256/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/soatipsntricks.wordpress.com/256/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/soatipsntricks.wordpress.com/256/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=soatipsntricks.wordpress.com&blog=504053&post=256&subd=soatipsntricks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://soatipsntricks.wordpress.com/2009/07/05/emulating-modelled-faults-in-websphere-integration-developer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f2bd46404cf3e59291fdb23bf12dd745?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">davidgeorge</media:title>
		</media:content>

		<media:content url="http://soatipsntricks.files.wordpress.com/2009/07/1-interface.png" medium="image">
			<media:title type="html">Interface with fault</media:title>
		</media:content>

		<media:content url="http://soatipsntricks.files.wordpress.com/2009/07/2-visual.png" medium="image">
			<media:title type="html">Visual fault emulator</media:title>
		</media:content>
	</item>
		<item>
		<title>Changing a SOAP Endpoint on an Outgoing Message using JAX-WS</title>
		<link>http://soatipsntricks.wordpress.com/2009/06/25/changing-a-soap-endpoint-on-an-outgoing-message-using-jax-ws/</link>
		<comments>http://soatipsntricks.wordpress.com/2009/06/25/changing-a-soap-endpoint-on-an-outgoing-message-using-jax-ws/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 17:48:43 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
				<category><![CDATA[Application Server]]></category>
		<category><![CDATA[Enterprise Service Bus]]></category>
		<category><![CDATA[Process Server]]></category>
		<category><![CDATA[SOAP/HTTP]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[WebSphere]]></category>
		<category><![CDATA[esb]]></category>
		<category><![CDATA[handler]]></category>
		<category><![CDATA[jax-ws]]></category>
		<category><![CDATA[soap]]></category>
		<category><![CDATA[webservices]]></category>
		<category><![CDATA[wps]]></category>

		<guid isPermaLink="false">http://soatipsntricks.wordpress.com/?p=251</guid>
		<description><![CDATA[This tip comes from Arancha Ocana Diaz-Ufano, who did all the hard work to figure it out!
In WebSphere ESB, there are many ways of changing the endpoint of a SOAP message outbound from a mediation flow, and the normal way is to use the dynamic endpoint support.  To be clear, this is recommended way.
However, there [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=soatipsntricks.wordpress.com&blog=504053&post=251&subd=soatipsntricks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This tip comes from Arancha Ocana Diaz-Ufano, who did all the hard work to figure it out!</p>
<p>In WebSphere ESB, there are many ways of changing the endpoint of a SOAP message outbound from a mediation flow, and the normal way is to use the <a href="http://publib.boulder.ibm.com/infocenter/dmndhelp/v6r2mx/topic/com.ibm.websphere.wesb620.doc/ref/rwesb_dynamicoverridesmo.html">dynamic endpoint support</a>.  To be clear, <strong>this is recommended way</strong>.</p>
<p>However, there is another technique, and that&#8217;s to use a JAX-WS handler (assuming you&#8217;re using a JAX-WS Web Services binding) on the outbound message. This might be useful if, for example, you absolutely cannot modify a mediation flow that&#8217;s been given to you, you cannot modify the endpoint at administration time (for example, from the administration console), or you want to do the override in a generic fashion across a large number of mediation flows.</p>
<p>The key is knowing the magic incantation to put in your JAX-WS handler. And here it is:</p>
<pre>mySOAPMessageContext.put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, "http://myhost:9080/MyEndPoint");</pre>
<p>Thanks again to Arancha for allowing us to publish this tip.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/soatipsntricks.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/soatipsntricks.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/soatipsntricks.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/soatipsntricks.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/soatipsntricks.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/soatipsntricks.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/soatipsntricks.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/soatipsntricks.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/soatipsntricks.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/soatipsntricks.wordpress.com/251/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=soatipsntricks.wordpress.com&blog=504053&post=251&subd=soatipsntricks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://soatipsntricks.wordpress.com/2009/06/25/changing-a-soap-endpoint-on-an-outgoing-message-using-jax-ws/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a6743880175c8767ceeb624bc474f52d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewferrier</media:title>
		</media:content>
	</item>
		<item>
		<title>Michal Kuzak Joins SOA Tips &#8216;n&#8217; Tricks</title>
		<link>http://soatipsntricks.wordpress.com/2009/06/16/michal-kuzak-joins-soa-tips-n-tricks/</link>
		<comments>http://soatipsntricks.wordpress.com/2009/06/16/michal-kuzak-joins-soa-tips-n-tricks/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 13:25:18 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
				<category><![CDATA[Meta]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[michalkuzak]]></category>
		<category><![CDATA[wps]]></category>

		<guid isPermaLink="false">http://soatipsntricks.wordpress.com/?p=249</guid>
		<description><![CDATA[

Two new joiners in as many weeks!
My ex-IBM colleague Michal Kuzak has also agreed to join the SOA Tips ‘n’ Tricks team, along with David George. He’s an independent WebSphere Process Server consultant, and will no doubt have many tips &#8216;n&#8217; tricks to share.
As always, please remember that the postings on this blog are our [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=soatipsntricks.wordpress.com&blog=504053&post=249&subd=soatipsntricks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div>
<div>
<p>Two new joiners in as many weeks!</p>
<p>My ex-IBM colleague <a href="http://www.linkedin.com/pub/michal-kuzak/2/693/972">Michal Kuzak</a> has also agreed to join the SOA Tips ‘n’ Tricks team, <a href="http://soatipsntricks.wordpress.com/2009/06/02/david-george-joins-soa-tips-n-tricks/">along with David George</a>. He’s an independent WebSphere Process Server consultant, and will no doubt have many tips &#8216;n&#8217; tricks to share.</p>
<p>As always, please remember that the postings on this blog are our own and don’t necessarily represent our employers&#8217; positions, strategies or opinions.</p></div>
</div>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/soatipsntricks.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/soatipsntricks.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/soatipsntricks.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/soatipsntricks.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/soatipsntricks.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/soatipsntricks.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/soatipsntricks.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/soatipsntricks.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/soatipsntricks.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/soatipsntricks.wordpress.com/249/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=soatipsntricks.wordpress.com&blog=504053&post=249&subd=soatipsntricks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://soatipsntricks.wordpress.com/2009/06/16/michal-kuzak-joins-soa-tips-n-tricks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a6743880175c8767ceeb624bc474f52d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewferrier</media:title>
		</media:content>
	</item>
		<item>
		<title>David George Joins SOA Tips &#8216;n&#8217; Tricks</title>
		<link>http://soatipsntricks.wordpress.com/2009/06/02/david-george-joins-soa-tips-n-tricks/</link>
		<comments>http://soatipsntricks.wordpress.com/2009/06/02/david-george-joins-soa-tips-n-tricks/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 13:16:02 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
				<category><![CDATA[Meta]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[davidgeorge]]></category>
		<category><![CDATA[processserver]]></category>
		<category><![CDATA[wid]]></category>
		<category><![CDATA[wps]]></category>

		<guid isPermaLink="false">http://soatipsntricks.wordpress.com/?p=245</guid>
		<description><![CDATA[I&#8217;m pleased to say that my colleague David George has agreed to join the SOA Tips &#8216;n&#8217; Tricks team. He&#8217;s a WebSphere Process Server consultant, and will be blogging about it, WebSphere Integration Developer, and other related subjects. Like myself, David is part of IBM Software Services and works with IBM customers on a regular [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=soatipsntricks.wordpress.com&blog=504053&post=245&subd=soatipsntricks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;m pleased to say that my colleague David George has agreed to join the SOA Tips &#8216;n&#8217; Tricks team. He&#8217;s a WebSphere Process Server consultant, and will be blogging about it, WebSphere Integration Developer, and other related subjects. Like myself, David is part of IBM Software Services and works with IBM customers on a regular basis, so has a wealth of experience to share.</p>
<p>As always, please remember that the postings on this blog are our own and don’t necessarily represent IBM’s positions, strategies or opinions.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/soatipsntricks.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/soatipsntricks.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/soatipsntricks.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/soatipsntricks.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/soatipsntricks.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/soatipsntricks.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/soatipsntricks.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/soatipsntricks.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/soatipsntricks.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/soatipsntricks.wordpress.com/245/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=soatipsntricks.wordpress.com&blog=504053&post=245&subd=soatipsntricks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://soatipsntricks.wordpress.com/2009/06/02/david-george-joins-soa-tips-n-tricks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a6743880175c8767ceeb624bc474f52d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewferrier</media:title>
		</media:content>
	</item>
		<item>
		<title>WebSphere Application Server 7 Internals</title>
		<link>http://soatipsntricks.wordpress.com/2009/05/22/websphere-application-server-7-internals/</link>
		<comments>http://soatipsntricks.wordpress.com/2009/05/22/websphere-application-server-7-internals/#comments</comments>
		<pubDate>Fri, 22 May 2009 14:53:25 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
				<category><![CDATA[Application Server]]></category>
		<category><![CDATA[7.0]]></category>
		<category><![CDATA[applicationserver]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[internals]]></category>
		<category><![CDATA[was]]></category>
		<category><![CDATA[WebSphere]]></category>

		<guid isPermaLink="false">http://soatipsntricks.wordpress.com/?p=240</guid>
		<description><![CDATA[Sorry that there haven&#8217;t been many posts here recently. To whet your appetite, I&#8217;m currently preparing a series of articles with a working title of &#8216;Mediation Flow Creation Guidelines&#8217;, which will aim to provide some guidance on well-worn ways to develop mediation flows efficiently.
In the meantime, I&#8217;d just like to mention a new book coming [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=soatipsntricks.wordpress.com&blog=504053&post=240&subd=soatipsntricks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Sorry that there haven&#8217;t been many posts here recently. To whet your appetite, I&#8217;m currently preparing a series of articles with a working title of &#8216;Mediation Flow Creation Guidelines&#8217;, which will aim to provide some guidance on well-worn ways to develop mediation flows efficiently.</p>
<p>In the meantime, I&#8217;d just like to mention a new book coming out soon called <a href="http://www.amazon.co.uk/Pro-WebSphere-Application-Server-Internals/dp/1430219580/ref=sr_1_1?ie=UTF8&amp;qid=1243003425&amp;sr=8-1">WebSphere Application Server 7 Internals</a>. I&#8217;ve been lucky enough to take a look at some preview chapters, and I have to say the content is set to be excellent; Colin has done a great job of explaining many of the more detailed and nitty-gritty topics involved in WebSphere Application Server, which underpins several IBM products, including the one I specialise in, WebSphere ESB. I&#8217;m sure it&#8217;s set to be a handy tome.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/soatipsntricks.wordpress.com/240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/soatipsntricks.wordpress.com/240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/soatipsntricks.wordpress.com/240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/soatipsntricks.wordpress.com/240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/soatipsntricks.wordpress.com/240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/soatipsntricks.wordpress.com/240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/soatipsntricks.wordpress.com/240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/soatipsntricks.wordpress.com/240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/soatipsntricks.wordpress.com/240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/soatipsntricks.wordpress.com/240/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=soatipsntricks.wordpress.com&blog=504053&post=240&subd=soatipsntricks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://soatipsntricks.wordpress.com/2009/05/22/websphere-application-server-7-internals/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a6743880175c8767ceeb624bc474f52d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewferrier</media:title>
		</media:content>
	</item>
		<item>
		<title>Using Message Logger for Lazy Logging in WebSphere ESB and Process Server 6.2</title>
		<link>http://soatipsntricks.wordpress.com/2009/03/09/using-message-logger-for-lazy-logging-in-websphere-esb-and-process-server-62/</link>
		<comments>http://soatipsntricks.wordpress.com/2009/03/09/using-message-logger-for-lazy-logging-in-websphere-esb-and-process-server-62/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 16:21:02 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
				<category><![CDATA[Enterprise Service Bus]]></category>
		<category><![CDATA[Process Server]]></category>
		<category><![CDATA[WebSphere]]></category>
		<category><![CDATA[esb]]></category>
		<category><![CDATA[logging]]></category>
		<category><![CDATA[mediation]]></category>
		<category><![CDATA[mediationflow]]></category>
		<category><![CDATA[messagelogger]]></category>
		<category><![CDATA[wid]]></category>
		<category><![CDATA[wps]]></category>

		<guid isPermaLink="false">http://soatipsntricks.wordpress.com/?p=234</guid>
		<description><![CDATA[If you&#8217;re creating a mediation flow in WebSphere ESB and Process Server 6.2, it&#8217;s now even easier to do &#8216;lazy&#8217; (drop-and-forget) logging for debugging purposes (Note: I&#8217;m calling it &#8216;lazy&#8217; deliberately. I am not suggesting you should do this in a production system &#8211; it&#8217;s for quick-and-dirty testing).
Simply drop a Message Logger primitive onto the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=soatipsntricks.wordpress.com&blog=504053&post=234&subd=soatipsntricks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>If you&#8217;re creating a mediation flow in WebSphere ESB and Process Server 6.2, it&#8217;s now even easier to do &#8216;lazy&#8217; (drop-and-forget) logging for debugging purposes (<strong>Note</strong>: I&#8217;m calling it &#8216;lazy&#8217; deliberately. I am not suggesting you should do this in a production system &#8211; it&#8217;s for quick-and-dirty testing).</p>
<p>Simply drop a Message Logger primitive onto the mediation flow, and change the type from &#8216;Database&#8217; to &#8216;Custom&#8217;:</p>
<p><img class="alignnone size-full wp-image-236" title="2009-03-09_154556" src="http://soatipsntricks.files.wordpress.com/2009/03/2009-03-09_154556.png?w=625&#038;h=549" alt="2009-03-09_154556" width="625" height="549" /></p>
<p>The default handler, formatter, and filter classes shown will be used to do the logging. This means that files named <strong>MessageLogN.log</strong> will appear in your system&#8217;s temporary folder (on Windows, for example, this is normally <strong>C:\Documents and Settings\<em>YourUsername</em>\Local Settings\Temp</strong>). These will contain lines like this:</p>
<pre>3/9/09 3:08 PM,EBC7634C-011F-4000-E000-02BCC0A80A8A,MessageLogger1,LogTest,&lt;?xml version="1.0" encoding="UTF-8"?&gt;
&lt;body xsi:type="i1:operation1RequestMsg" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:i1="wsdl.http://LogTest/i1" xmlns:i1_1="http://LogTest/i1"&gt;
  &lt;i1_1:operation1&gt;
    &lt;input1&gt;some data&lt;/input1&gt;
  &lt;/i1_1:operation1&gt;
&lt;/body&gt;
,6</pre>
<p>The six fields you see in the comma-delimited line are:</p>
<ol>
<li>Timestamp</li>
<li>Service Message Object message ID</li>
<li>Mediation primitive name</li>
<li>Module name</li>
<li>Actual message itself &#8211; i.e. the Service Message Object serialized as XML.</li>
<li>Service Message Object version</li>
</ol>
<p>This can be really handy for quickly instrumenting a mediation flow.</p>
<p>If you want to get more sophisticated, you can override the handler, formatter, and filter classes with your own, and in any production system, you&#8217;d probably want to do that. <a href="http://java.sun.com/j2se/1.4.2/docs/guide/util/logging/overview.html">This document</a> from the Java documentation explains more.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/soatipsntricks.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/soatipsntricks.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/soatipsntricks.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/soatipsntricks.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/soatipsntricks.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/soatipsntricks.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/soatipsntricks.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/soatipsntricks.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/soatipsntricks.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/soatipsntricks.wordpress.com/234/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=soatipsntricks.wordpress.com&blog=504053&post=234&subd=soatipsntricks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://soatipsntricks.wordpress.com/2009/03/09/using-message-logger-for-lazy-logging-in-websphere-esb-and-process-server-62/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a6743880175c8767ceeb624bc474f52d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewferrier</media:title>
		</media:content>

		<media:content url="http://soatipsntricks.files.wordpress.com/2009/03/2009-03-09_154556.png" medium="image">
			<media:title type="html">2009-03-09_154556</media:title>
		</media:content>
	</item>
		<item>
		<title>Auto Starting Applications with WebSphere</title>
		<link>http://soatipsntricks.wordpress.com/2009/02/17/auto-starting-applications-with-websphere/</link>
		<comments>http://soatipsntricks.wordpress.com/2009/02/17/auto-starting-applications-with-websphere/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 15:56:25 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
				<category><![CDATA[Application Server]]></category>
		<category><![CDATA[Enterprise Service Bus]]></category>
		<category><![CDATA[Process Server]]></category>
		<category><![CDATA[WebSphere]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[applicationserver]]></category>
		<category><![CDATA[autostart]]></category>
		<category><![CDATA[esb]]></category>
		<category><![CDATA[ibm]]></category>
		<category><![CDATA[j2ee]]></category>
		<category><![CDATA[start]]></category>
		<category><![CDATA[was]]></category>
		<category><![CDATA[wesb]]></category>
		<category><![CDATA[wps]]></category>

		<guid isPermaLink="false">http://soatipsntricks.wordpress.com/?p=226</guid>
		<description><![CDATA[There is a handy feature of WebSphere Application Server which allows you to control whether applications start automatically when the server is (re)started. By default, all applications (which are Mediation Modules or Modules in WebSphere ESB and Process Server terminology) start automatically when the server starts, but you can turn this off on an application-by-application [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=soatipsntricks.wordpress.com&blog=504053&post=226&subd=soatipsntricks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>There is a handy feature of WebSphere Application Server which allows you to control whether applications start automatically when the server is (re)started. By default, all applications (which are Mediation Modules or Modules in WebSphere ESB and Process Server terminology) start automatically when the server starts, but you can turn this off on an application-by-application basis. This is particularly useful to speed up server startup time, or if the applications consume resources as soon as they are started.</p>
<p>You can enable or disable Auto Start using the admin console &#8211; simply navigate to <strong>Applications / Enterprise Applications / <em>Your application</em> / Target specific application status</strong>:</p>
<p><img class="size-full wp-image-227 alignleft" title="autostart" src="http://soatipsntricks.files.wordpress.com/2009/02/autostart.png?w=939&#038;h=235" alt="autostart" width="939" height="235" /></p>
<p>If you have the application installed on multiple servers in a Network Deployment topology, you can select a different Auto Start status for each server.</p>
<p>Thanks to Victoria Amor for the help with this tip.</p>
<p><img src="/DOCUME~1/ferriera/LOCALS~1/Temp/moz-screenshot.jpg" alt="" /></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/soatipsntricks.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/soatipsntricks.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/soatipsntricks.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/soatipsntricks.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/soatipsntricks.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/soatipsntricks.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/soatipsntricks.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/soatipsntricks.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/soatipsntricks.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/soatipsntricks.wordpress.com/226/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=soatipsntricks.wordpress.com&blog=504053&post=226&subd=soatipsntricks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://soatipsntricks.wordpress.com/2009/02/17/auto-starting-applications-with-websphere/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a6743880175c8767ceeb624bc474f52d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewferrier</media:title>
		</media:content>

		<media:content url="http://soatipsntricks.files.wordpress.com/2009/02/autostart.png" medium="image">
			<media:title type="html">autostart</media:title>
		</media:content>

		<media:content url="/DOCUME~1/ferriera/LOCALS~1/Temp/moz-screenshot.jpg" medium="image" />
	</item>
		<item>
		<title>WS-Addressing Headers in WebSphere ESB v6.2</title>
		<link>http://soatipsntricks.wordpress.com/2009/02/05/ws-addressing-headers-in-websphere-esb-v62/</link>
		<comments>http://soatipsntricks.wordpress.com/2009/02/05/ws-addressing-headers-in-websphere-esb-v62/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 11:09:02 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
				<category><![CDATA[Enterprise Service Bus]]></category>
		<category><![CDATA[SOAP/HTTP]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[WebSphere]]></category>
		<category><![CDATA[6.2]]></category>
		<category><![CDATA[addressing]]></category>
		<category><![CDATA[esb]]></category>
		<category><![CDATA[webservices]]></category>
		<category><![CDATA[wps]]></category>
		<category><![CDATA[ws-addressing]]></category>

		<guid isPermaLink="false">http://soatipsntricks.wordpress.com/?p=223</guid>
		<description><![CDATA[I wrote previously about how WS-Addressing headers could be accessed in a WebSphere ESB mediation flow, by writing a JAX-RPC handler to intercept them and insert them into a custom SOAP header.
However, in WebSphere ESB 6.2, this is much easier &#8211; these headers will now automatically appear as part of the ServiceMessageObject at /headers/WSAHeader. They [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=soatipsntricks.wordpress.com&blog=504053&post=223&subd=soatipsntricks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://soatipsntricks.wordpress.com/2008/09/09/accessing-ws-addressing-headers-inside-a-mediation-flow/">I wrote previously</a> about how WS-Addressing headers could be accessed in a WebSphere ESB mediation flow, by writing a JAX-RPC handler to intercept them and insert them into a custom SOAP header.</p>
<p>However, in WebSphere ESB 6.2, this is much easier &#8211; these headers will now automatically appear as part of the ServiceMessageObject at <code>/headers/WSAHeader</code>. They are effectively read-only; any changes that you make will not affect outgoing messages.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/soatipsntricks.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/soatipsntricks.wordpress.com/223/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/soatipsntricks.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/soatipsntricks.wordpress.com/223/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/soatipsntricks.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/soatipsntricks.wordpress.com/223/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/soatipsntricks.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/soatipsntricks.wordpress.com/223/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/soatipsntricks.wordpress.com/223/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/soatipsntricks.wordpress.com/223/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=soatipsntricks.wordpress.com&blog=504053&post=223&subd=soatipsntricks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://soatipsntricks.wordpress.com/2009/02/05/ws-addressing-headers-in-websphere-esb-v62/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a6743880175c8767ceeb624bc474f52d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewferrier</media:title>
		</media:content>
	</item>
		<item>
		<title>Specifying Transitions for WSRR Promotion</title>
		<link>http://soatipsntricks.wordpress.com/2009/01/27/specifying-transitions-for-wsrr-promotion/</link>
		<comments>http://soatipsntricks.wordpress.com/2009/01/27/specifying-transitions-for-wsrr-promotion/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 16:20:20 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
				<category><![CDATA[Service Registry and Repository]]></category>
		<category><![CDATA[WebSphere]]></category>
		<category><![CDATA[governance]]></category>
		<category><![CDATA[registry]]></category>
		<category><![CDATA[repository]]></category>
		<category><![CDATA[transition]]></category>
		<category><![CDATA[wsrr]]></category>

		<guid isPermaLink="false">http://soatipsntricks.wordpress.com/?p=215</guid>
		<description><![CDATA[If you&#8217;re using the promotion feature of WebSphere Services Registry and Repository (WSRR) to copy content from one registry instance to another on governance state changes, you&#8217;ll need to specify which transitions are used for promotion. This is described here. However, what may not be entirely clear are the names to be used for the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=soatipsntricks.wordpress.com&blog=504053&post=215&subd=soatipsntricks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>If you&#8217;re using the promotion feature of <a href="http://www-01.ibm.com/software/integration/wsrr/">WebSphere Services Registry and Repository</a> (WSRR) to copy content from one registry instance to another on governance state changes, you&#8217;ll need to specify which transitions are used for promotion. This is described <a href="http://publib.boulder.ibm.com/infocenter/sr/v6r2/index.jsp">here</a>. However, what may not be entirely clear are the names to be used for the transitions. These must map to the operation name of the governance transition, and not to the transition name itself. For example, the &#8216;Plan&#8217; transition of the default governance lifecycle is defined in SACL like this:</p>
<pre>&lt;sacl:stateMachineDefinition ...
 targetNamespace="<span style="color:#339966;">http://www.ibm.com/xmlns/prod/serviceregistry/6/0/governance/DefaultLifecycle</span>"&gt;
    ...
    &lt;sacl:transition name="<span style="color:#ff0000;">Transition1</span>"&gt;
      &lt;sacl:sourceState&gt;InitialState1&lt;/sacl:sourceState&gt;
      &lt;sacl:operation name="<span style="color:#339966;">Plan</span>" portType="_:DefaultLifecycle"/&gt;
      &lt;sacl:targetState&gt;State1&lt;/sacl:targetState&gt;
    &lt;/sacl:transition&gt;</pre>
<p>Therefore, the transition is defined like this in the Promotion Properties:</p>
<pre>  &lt;transitions&gt;
    &lt;transition
     name="<span style="color:#339966;">http://www.ibm.com/xmlns/prod/serviceregistry/6/0/governance/DefaultLifecycle</span>#<span style="color:#339966;">Plan</span>"&gt;
     ...
    &lt;/transition&gt;
  &lt;/transitions&gt;</pre>
<p>Note the use of <span style="color:#339966;">Plan </span>rather than <span style="color:#ff0000;">Transition1</span>.</p>
<p>Thanks to Steve Groeger and Martin Smithson for their help with this tip.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/soatipsntricks.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/soatipsntricks.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/soatipsntricks.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/soatipsntricks.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/soatipsntricks.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/soatipsntricks.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/soatipsntricks.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/soatipsntricks.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/soatipsntricks.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/soatipsntricks.wordpress.com/215/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=soatipsntricks.wordpress.com&blog=504053&post=215&subd=soatipsntricks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://soatipsntricks.wordpress.com/2009/01/27/specifying-transitions-for-wsrr-promotion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a6743880175c8767ceeb624bc474f52d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewferrier</media:title>
		</media:content>
	</item>
		<item>
		<title>SOA Tips &#8216;n&#8217; Tricks Joins Twitter</title>
		<link>http://soatipsntricks.wordpress.com/2009/01/26/soa-tips-n-tricks-joins-twitter/</link>
		<comments>http://soatipsntricks.wordpress.com/2009/01/26/soa-tips-n-tricks-joins-twitter/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 11:23:42 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
				<category><![CDATA[Enterprise Service Bus]]></category>
		<category><![CDATA[Other Blogs]]></category>
		<category><![CDATA[WebSphere]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[esb]]></category>
		<category><![CDATA[posting]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[wesb]]></category>

		<guid isPermaLink="false">http://soatipsntricks.wordpress.com/?p=210</guid>
		<description><![CDATA[I (Andrew Ferrier &#8211; the primary author of this blog) recently joined Twitter. However, I was bothered that folks who were interested in me and my ramblings wouldn&#8217;t be interested in my day job &#8211; i.e. the technical content on this blog regarding WebSphere ESB and related products. On the other hand, folks interested in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=soatipsntricks.wordpress.com&blog=504053&post=210&subd=soatipsntricks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I (Andrew Ferrier &#8211; the primary author of this blog) recently joined <a href="http://twitter.com/">Twitter</a>. However, I was bothered that folks who were interested in me and my ramblings wouldn&#8217;t be interested in my day job &#8211; i.e. the technical content on this blog regarding WebSphere ESB and related products. On the other hand, folks interested in that may not know me personally, and may not want to read my potentially controversial personal ramblings. I don&#8217;t think it&#8217;s appropriate to mix the two.</p>
<p>To that end, SOA Tips &#8216;n&#8217; Tricks has started posting on Twitter. You can see the feed on the sidebar of this blog, and <a href="http://twitter.com/soatipsntricks">follow it on Twitter here</a>. At the time of writing, the Twitter account automatically re-publishes links to all posts on the blog, as well as the WebSphere ESB support feed. However, I expect to be posting more unique-to-Twitter micro-blog entries as time progresses.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/soatipsntricks.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/soatipsntricks.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/soatipsntricks.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/soatipsntricks.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/soatipsntricks.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/soatipsntricks.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/soatipsntricks.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/soatipsntricks.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/soatipsntricks.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/soatipsntricks.wordpress.com/210/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=soatipsntricks.wordpress.com&blog=504053&post=210&subd=soatipsntricks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://soatipsntricks.wordpress.com/2009/01/26/soa-tips-n-tricks-joins-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a6743880175c8767ceeb624bc474f52d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewferrier</media:title>
		</media:content>
	</item>
	</channel>
</rss>