<?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>Financial Market Data Web Services - Xignite Blog &#187; Technology</title>
	<atom:link href="http://xignite.web-services-blog.com/category/tech/feed/" rel="self" type="application/rss+xml" />
	<link>http://xignite.web-services-blog.com</link>
	<description>It&#039;s not the data.  It&#039;s the delivery.</description>
	<lastBuildDate>Wed, 04 Aug 2010 22:56:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>5 Minute Developer:  How to Build a Real-Time Stock Quote Widget in 5 Minutes</title>
		<link>http://xignite.web-services-blog.com/2010/03/5-minute-developer-how-to-build-a-real-time-stock-quote-widget-in-5-minutes/</link>
		<comments>http://xignite.web-services-blog.com/2010/03/5-minute-developer-how-to-build-a-real-time-stock-quote-widget-in-5-minutes/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 14:00:22 +0000</pubDate>
		<dc:creator>ChasCooper</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[real-time]]></category>
		<category><![CDATA[stock quotes]]></category>
		<category><![CDATA[web service]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://xignite.web-services-blog.com/?p=987</guid>
		<description><![CDATA[In 5 minutes, you can create a real-time stock quote widget with Level I stock market data using Xignite web services.  Although you can do this in any language or IDE, this example uses PHP and Eclipse.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F03%2F5-minute-developer-how-to-build-a-real-time-stock-quote-widget-in-5-minutes%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F03%2F5-minute-developer-how-to-build-a-real-time-stock-quote-widget-in-5-minutes%2F&amp;source=xignite&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>In the next 5 minutes, you could get $5 worth of plumbing services, $30 worth of legal advice or $17 worth of psychotherapy.  Or, you could just spend your next five minutes building a <a href="http://www.xignite.com/stock-quote/web-service/2000306.html">real-time stock quote widget</a>.  Don’t think it can be done in 5 minutes?  Check out a <a href="http://www.xignite.com/stock-quote/web-service/2000306.html">video showing us doing it</a> in less time.</p>
<p>Here’s how you can do the same thing using PHP and Eclipse, although the same basic process can be used for any language and any IDE:<br />
<span id="more-987"></span></p>
<p><strong>Step 1:</strong> <a href="http://www.xignite.com/stock-quote/real-time-stock-quotes-data--20003003.html">Subscribe to XigniteRealTime</a> to get access to real-time, Level I stock quotes.  If you’re not ready to subscribe yet, you can also <a href="https://www.xignite.com/MyAccount/Register.aspx">sign up for a free trial</a> and get access to other real-time stock quote web services such as <a href="http://www.xignite.com/xNASDAQLastSale.asmx">XigniteNASDAQLastSale</a> and <a href="http://www.xignite.com/xBATSLastSale.asmx">XigniteBATSLastSale</a>.  You’ll need to make a few adjustments to the sample code below to point to a different web service, but nothing major.</p>
<p><strong>Step 2:</strong> Start a new PHP project in Eclipse.</p>
<p><strong>Step 3:</strong> Create your index.php page with the following code:</p>
<p><span style="color: #339966">&lt;html&gt;&lt;title&gt;</span>Get Real-Time Quote<span style="color: #339966">&lt;/title&gt;&lt;body&gt;&lt;form&gt;</span></p>
<p><span style="color: #339966">&lt;input <span style="color: #993366">type</span>=</span><em><span style="color: #0000ff">&#8220;text&#8221;</span></em><span style="color: #339966"> <span style="color: #993366">name</span>=</span><em><span style="color: #0000ff">&#8220;symbol&#8221;</span></em><span style="color: #339966"> /&gt;</span></p>
<p><span style="color: #339966">&lt;input <span style="color: #993366">type</span>=</span><em><span style="color: #0000ff">&#8220;submit&#8221;</span></em><span style="color: #339966"> <span style="color: #993366">value</span>=</span><em><span style="color: #0000ff">&#8220;Go&#8221;</span></em><span style="color: #339966"> /&gt;</span></p>
<p><span style="color: #339966">&lt;/form&gt;&lt;/body&gt;&lt;/html&gt;</span></p>
<p><span style="color: #ff0000">&lt;?php</span></p>
<p><span style="color: #993366">$client</span> = <span style="color: #0000ff">new</span> SoapClient(<span style="color: #339966">&#8216;http://www.xignite.com/xRealTime.asmx?WSDL&#8217;</span>);</p>
<p><span style="color: #993366">$quote</span> = <span style="color: #993366">$client</span>-&gt;GetRealQuote(<span style="color: #0000ff">array</span>(<span style="color: #339966">&#8216;Exchange&#8217;</span> =&gt; <span style="color: #339966">&#8220;INET&#8221;</span>, <span style="color: #339966">&#8216;Symbol&#8217;</span> =&gt; <span style="color: #993366">$_GET</span>[<span style="color: #339966">"Symbol"</span>], <span style="color: #339966">&#8216;IncludeBidAsk&#8217;</span> =&gt; <span style="color: #339966">&#8220;false&#8221;</span>));</p>
<p><span style="color: #0000ff">echo</span> <span style="color: #339966">&#8220;Last price: &#8220;</span>, <span style="color: #993366">$quote</span>-&gt;GetRealQuoteResult-&gt;Last;</p>
<p><span style="color: #ff0000">?&gt;</span></p>
<p><strong>Step 4:</strong> Open a browser and load your index.php page to give your new stock quote widget a spin.</p>
<p><strong>Congratulations!</strong> You just built a real-time stock quote widget in PHP and made a plumber, a lawyer and a psychotherapist very disappointed in you for such a ridiculous waste of your time.</p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="mailto:?subject=5%20Minute%20Developer%3A%20%20How%20to%20Build%20a%20Real-Time%20Stock%20Quote%20Widget%20in%205%20Minutes&amp;body=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F03%2F5-minute-developer-how-to-build-a-real-time-stock-quote-widget-in-5-minutes%2F" title="email"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=5%20Minute%20Developer%3A%20%20How%20to%20Build%20a%20Real-Time%20Stock%20Quote%20Widget%20in%205%20Minutes%20-%20http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F03%2F5-minute-developer-how-to-build-a-real-time-stock-quote-widget-in-5-minutes%2F" title="Twitter"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F03%2F5-minute-developer-how-to-build-a-real-time-stock-quote-widget-in-5-minutes%2F&amp;t=5%20Minute%20Developer%3A%20%20How%20to%20Build%20a%20Real-Time%20Stock%20Quote%20Widget%20in%205%20Minutes" title="Facebook"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F03%2F5-minute-developer-how-to-build-a-real-time-stock-quote-widget-in-5-minutes%2F&amp;title=5%20Minute%20Developer%3A%20%20How%20to%20Build%20a%20Real-Time%20Stock%20Quote%20Widget%20in%205%20Minutes&amp;source=Financial+Market+Data+Web+Services+-+Xignite+Blog+It%26%23039%3Bs+not+the+data.++It%26%23039%3Bs+the+delivery.&amp;summary=In%205%20minutes%2C%20you%20can%20create%20a%20real-time%20stock%20quote%20widget%20with%20Level%20I%20stock%20market%20data%20using%20Xignite%20web%20services.%20%20Although%20you%20can%20do%20this%20in%20any%20language%20or%20IDE%2C%20this%20example%20uses%20PHP%20and%20Eclipse." title="LinkedIn"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F03%2F5-minute-developer-how-to-build-a-real-time-stock-quote-widget-in-5-minutes%2F&amp;title=5%20Minute%20Developer%3A%20%20How%20to%20Build%20a%20Real-Time%20Stock%20Quote%20Widget%20in%205%20Minutes&amp;bodytext=In%205%20minutes%2C%20you%20can%20create%20a%20real-time%20stock%20quote%20widget%20with%20Level%20I%20stock%20market%20data%20using%20Xignite%20web%20services.%20%20Although%20you%20can%20do%20this%20in%20any%20language%20or%20IDE%2C%20this%20example%20uses%20PHP%20and%20Eclipse." title="Digg"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F03%2F5-minute-developer-how-to-build-a-real-time-stock-quote-widget-in-5-minutes%2F&amp;title=5%20Minute%20Developer%3A%20%20How%20to%20Build%20a%20Real-Time%20Stock%20Quote%20Widget%20in%205%20Minutes" title="StumbleUpon"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F03%2F5-minute-developer-how-to-build-a-real-time-stock-quote-widget-in-5-minutes%2F" title="Technorati"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F03%2F5-minute-developer-how-to-build-a-real-time-stock-quote-widget-in-5-minutes%2F%205%20Minute%20Developer%3A%20%20How%20to%20Build%20a%20Real-Time%20Stock%20Quote%20Widget%20in%205%20Minutes" title="Suggest to Techmeme via Twitter"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F03%2F5-minute-developer-how-to-build-a-real-time-stock-quote-widget-in-5-minutes%2F&amp;title=5%20Minute%20Developer%3A%20%20How%20to%20Build%20a%20Real-Time%20Stock%20Quote%20Widget%20in%205%20Minutes&amp;notes=In%205%20minutes%2C%20you%20can%20create%20a%20real-time%20stock%20quote%20widget%20with%20Level%20I%20stock%20market%20data%20using%20Xignite%20web%20services.%20%20Although%20you%20can%20do%20this%20in%20any%20language%20or%20IDE%2C%20this%20example%20uses%20PHP%20and%20Eclipse." title="del.icio.us"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F03%2F5-minute-developer-how-to-build-a-real-time-stock-quote-widget-in-5-minutes%2F&amp;title=5%20Minute%20Developer%3A%20%20How%20to%20Build%20a%20Real-Time%20Stock%20Quote%20Widget%20in%205%20Minutes&amp;annotation=In%205%20minutes%2C%20you%20can%20create%20a%20real-time%20stock%20quote%20widget%20with%20Level%20I%20stock%20market%20data%20using%20Xignite%20web%20services.%20%20Although%20you%20can%20do%20this%20in%20any%20language%20or%20IDE%2C%20this%20example%20uses%20PHP%20and%20Eclipse." title="Google Bookmarks"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F03%2F5-minute-developer-how-to-build-a-real-time-stock-quote-widget-in-5-minutes%2F&amp;title=5%20Minute%20Developer%3A%20%20How%20to%20Build%20a%20Real-Time%20Stock%20Quote%20Widget%20in%205%20Minutes" title="Live"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=5%20Minute%20Developer%3A%20%20How%20to%20Build%20a%20Real-Time%20Stock%20Quote%20Widget%20in%205%20Minutes&amp;link=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F03%2F5-minute-developer-how-to-build-a-real-time-stock-quote-widget-in-5-minutes%2F" title="FriendFeed"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://xignite.web-services-blog.com/2010/03/5-minute-developer-how-to-build-a-real-time-stock-quote-widget-in-5-minutes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Minute Developer:  How to Build a Currency Converter in 5 Minutes</title>
		<link>http://xignite.web-services-blog.com/2010/02/5-minute-developer-how-to-build-a-currency-converter-in-5-minutes/</link>
		<comments>http://xignite.web-services-blog.com/2010/02/5-minute-developer-how-to-build-a-currency-converter-in-5-minutes/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 14:00:31 +0000</pubDate>
		<dc:creator>ChasCooper</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[currencies]]></category>
		<category><![CDATA[forex]]></category>
		<category><![CDATA[real-time]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[web services]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://xignite.web-services-blog.com/?p=853</guid>
		<description><![CDATA[In 5 minutes, build a real-time forex currency converter application using Visual Studio, C# and Xignite's XigniteCurrencies web service.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F02%2F5-minute-developer-how-to-build-a-currency-converter-in-5-minutes%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F02%2F5-minute-developer-how-to-build-a-currency-converter-in-5-minutes%2F&amp;source=xignite&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Every five minutes, a business in the U.S. <a rel="nofollow" href="http://crm.cr.nps.gov/archive/24-08/24-08-5.pdf" target="_blank">catches fire</a>, someone in the UK <a rel="nofollow" href="http://www.telegraph.co.uk/news/uknews/6230569/Swear-words-heard-once-every-five-minutes.html" target="_blank">swears</a>, and a clock that took 5 years and £1 million to build before being unveiled by none other than Stephen Hawking, finally <a rel="nofollow" href="http://news.bbc.co.uk/2/hi/7625815.stm" target="_blank">tells the time accurately</a> for a second or two.</p>
<p>What will you do with your next 5 minutes?</p>
<p>Here’s a thought:  Why not build a <a href="http://www.xignite.com/forex/web-service/2000106.html">real-time forex currency</a> converter?  Sound like fun?  If so, give it a try using the steps below.  Or, if you&#8217;d rather leave all the fun to someone else, why not just <a href="http://www.xignite.com/forex/web-service/2000106.html" target="_self">watch a video of us doing it</a>?</p>
<p>Here&#8217;s how it&#8217;s done:  <span id="more-853"></span></p>
<p><strong>Step 1:</strong> Start a new Windows application project in Visual Studio.</p>
<p><strong>Step 2: </strong>Create a Web reference to http://www.xignite.com/xCurrencies.asmx?WSDL and call it XigniteCurrenciesService.</p>
<p><strong>Step 3: </strong>On the Form1 design, drag and drop 3 text boxes, 2 labels, and a button, arranging them as shown in the picture.  From left to right, give the text boxes the following names and default text:  inputBaseAmount defaulting to 1000, inputBaseSymbol defaulting to USD, inputQuoteSymbol defaulting to EUR.  One label should have a big equal sign in it and the other should have the name of labelQuoteAmount and zero for its text property.  The button should read “Convert.”</p>
<p style="text-align: center"><img class="aligncenter" src="http://cdn.xignite.com/blog/02_01_10/5min_currency_converter_v1a.png" alt="Real-Time Forex Currency Converter Built in 5 Minutes" align="center" /></p>
<p><strong>Step 4: </strong>Double-click the button to create its click event handler, and give it the following 3 lines of code:</p>
<p style="text-align: left">XigniteCurrenciesService.XigniteCurrencies XigniteCurrenciesWebService = new XigniteCurrenciesService.XigniteCurrencies();</p>
<p style="text-align: left">XigniteCurrenciesService.ExchangeConversion Quote = XigniteCurrenciesWebService.ConvertRealTimeValue(inputBaseSymbol.Text, inputQuoteSymbol.Text, double.Parse(inputBaseAmount.Text));</p>
<p style="text-align: left">labelQuoteAmount.Text = Quote.Result.ToString();</p>
<p><strong>Step 5: </strong>Compile and run.</p>
<p><strong>Authentication trouble? </strong>If you get an authentication error, it means you&#8217;re not being authenticated from a cookie or your IP address.  Don&#8217;t worry.  Just add 3 more lines after the first line of code to pass your authentication key through SOAP.  Be sure to replace MYAUTHENTICATIONKEY with your own Xignite account authentication key. (Don’t have an authentication key? Just <a href="http://www.xignite.com/forex/getting-started/2000111.html" target="_self">sign up</a> to get one. Your e-mail will be your initial authentication key.)<strong></strong></p>
<p style="text-align: left"><strong></strong>XigniteCurrenciesService.Header objHeader = new XigniteCurrenciesService.Header();</p>
<p style="text-align: left">objHeader.Username = &#8220;MYAUTHENTICATIONKEY&#8221;;</p>
<p style="text-align: left">XigniteCurrenciesWebService.HeaderValue = objHeader;</p>
<p><strong>Congratulations! </strong> You just spent the last five minutes far more productively than one U.S. business, one citizen of the UK, and one very expensive but very inaccurate clock.</p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="mailto:?subject=5%20Minute%20Developer%3A%20%20How%20to%20Build%20a%20Currency%20Converter%20in%205%20Minutes&amp;body=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F02%2F5-minute-developer-how-to-build-a-currency-converter-in-5-minutes%2F" title="email"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=5%20Minute%20Developer%3A%20%20How%20to%20Build%20a%20Currency%20Converter%20in%205%20Minutes%20-%20http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F02%2F5-minute-developer-how-to-build-a-currency-converter-in-5-minutes%2F" title="Twitter"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F02%2F5-minute-developer-how-to-build-a-currency-converter-in-5-minutes%2F&amp;t=5%20Minute%20Developer%3A%20%20How%20to%20Build%20a%20Currency%20Converter%20in%205%20Minutes" title="Facebook"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F02%2F5-minute-developer-how-to-build-a-currency-converter-in-5-minutes%2F&amp;title=5%20Minute%20Developer%3A%20%20How%20to%20Build%20a%20Currency%20Converter%20in%205%20Minutes&amp;source=Financial+Market+Data+Web+Services+-+Xignite+Blog+It%26%23039%3Bs+not+the+data.++It%26%23039%3Bs+the+delivery.&amp;summary=In%205%20minutes%2C%20build%20a%20real-time%20forex%20currency%20converter%20application%20using%20Visual%20Studio%2C%20C%23%20and%20Xignite%27s%20XigniteCurrencies%20web%20service." title="LinkedIn"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F02%2F5-minute-developer-how-to-build-a-currency-converter-in-5-minutes%2F&amp;title=5%20Minute%20Developer%3A%20%20How%20to%20Build%20a%20Currency%20Converter%20in%205%20Minutes&amp;bodytext=In%205%20minutes%2C%20build%20a%20real-time%20forex%20currency%20converter%20application%20using%20Visual%20Studio%2C%20C%23%20and%20Xignite%27s%20XigniteCurrencies%20web%20service." title="Digg"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F02%2F5-minute-developer-how-to-build-a-currency-converter-in-5-minutes%2F&amp;title=5%20Minute%20Developer%3A%20%20How%20to%20Build%20a%20Currency%20Converter%20in%205%20Minutes" title="StumbleUpon"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F02%2F5-minute-developer-how-to-build-a-currency-converter-in-5-minutes%2F" title="Technorati"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F02%2F5-minute-developer-how-to-build-a-currency-converter-in-5-minutes%2F%205%20Minute%20Developer%3A%20%20How%20to%20Build%20a%20Currency%20Converter%20in%205%20Minutes" title="Suggest to Techmeme via Twitter"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F02%2F5-minute-developer-how-to-build-a-currency-converter-in-5-minutes%2F&amp;title=5%20Minute%20Developer%3A%20%20How%20to%20Build%20a%20Currency%20Converter%20in%205%20Minutes&amp;notes=In%205%20minutes%2C%20build%20a%20real-time%20forex%20currency%20converter%20application%20using%20Visual%20Studio%2C%20C%23%20and%20Xignite%27s%20XigniteCurrencies%20web%20service." title="del.icio.us"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F02%2F5-minute-developer-how-to-build-a-currency-converter-in-5-minutes%2F&amp;title=5%20Minute%20Developer%3A%20%20How%20to%20Build%20a%20Currency%20Converter%20in%205%20Minutes&amp;annotation=In%205%20minutes%2C%20build%20a%20real-time%20forex%20currency%20converter%20application%20using%20Visual%20Studio%2C%20C%23%20and%20Xignite%27s%20XigniteCurrencies%20web%20service." title="Google Bookmarks"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F02%2F5-minute-developer-how-to-build-a-currency-converter-in-5-minutes%2F&amp;title=5%20Minute%20Developer%3A%20%20How%20to%20Build%20a%20Currency%20Converter%20in%205%20Minutes" title="Live"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=5%20Minute%20Developer%3A%20%20How%20to%20Build%20a%20Currency%20Converter%20in%205%20Minutes&amp;link=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F02%2F5-minute-developer-how-to-build-a-currency-converter-in-5-minutes%2F" title="FriendFeed"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://xignite.web-services-blog.com/2010/02/5-minute-developer-how-to-build-a-currency-converter-in-5-minutes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Winds Of Change Are Blowing In The Clouds Favor</title>
		<link>http://xignite.web-services-blog.com/2010/01/the-winds-of-change-are-blowing-in-the-clouds-favor/</link>
		<comments>http://xignite.web-services-blog.com/2010/01/the-winds-of-change-are-blowing-in-the-clouds-favor/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 14:35:25 +0000</pubDate>
		<dc:creator>Landon Long</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://xignite.web-services-blog.com/?p=758</guid>
		<description><![CDATA[A few years back, if you asked your IT professionals about Cloud Computing, you probably would have received a blank stare, followed up with an &#8220;I love my servers&#8221; comment. At that time, even the term &#8220;Cloud Computing&#8221; was plagued by confusion, uncertainty and a fair amount of misinformation. Early misconceptions were further reinforced by [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F01%2Fthe-winds-of-change-are-blowing-in-the-clouds-favor%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F01%2Fthe-winds-of-change-are-blowing-in-the-clouds-favor%2F&amp;source=xignite&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>A few years back, if you asked your IT professionals about Cloud Computing, you probably would have received a blank stare, followed up with an &#8220;I love my servers&#8221; comment. At that time, even the term &#8220;<a title="Wikipedia: Cloud Computing" rel="no-follow" href="http://en.wikipedia.org/wiki/Cloud_computing" target="_blank">Cloud Computing</a>&#8221; was plagued by confusion, uncertainty and a fair amount of misinformation. <img src="http://cdn.xignite.com/blog/01_25_10/data_from_the_cloud_v1a.jpg" alt="" width="215" height="200" align="left" />Early misconceptions were further reinforced by the many &#8216;cloud flavors&#8217; being lumped into one term, SaaS, PaaS, utility computing, virtualized computing, managed services, resource computing, elastic computing and so on. Many concluded that Cloud Computing was more a buzzword than a definable technology.</p>
<p>Today, that is no longer the case, with an overwhelming consensus affirming that the winds of change are blowing in the clouds favor. The <em>desire</em> to move into the clouds is quickly turning into a <em>necessity</em>, with a wide range of internal and external forces leading the charge. Redundancy, efficiency, availability, simplicity, stability or plain &amp; simple economics, every entity has its own unique set of reasons for moving into the clouds. With its inherent time and cost benefits, It&#8217;s no surprise that there is a growing wave of support for Cloud Computing, with some of that support coming from some unlikely places. <span id="more-758"></span></p>
<p>Recently, a once reserved <a title="Gartner Website" rel="no-follow" href="http://www.gartner.com/technology/home.jsp" target="_blank">Gartner</a> highlighted the benefits of cloud computing, <a title="Information Week: Global CIO Blog" rel="no-follow" href="http://www.informationweek.com/blog/main/archives/2010/01/gartner_virtual.html" target="_blank">stating</a>; &#8220;The technologies that CIOs are prioritizing in 2010 are technologies that can be implemented quickly and without significant upfront expense, instead of investing millions of dollars to get millions in benefits, with these technologies, up front investments are measured in thousands of dollars to get those same benefits&#8221;. <a href="http://nebula.nasa.gov"><img class="alignright" src="http://cdn.xignite.com/blog/01_25_10/nasa_nebula_site_screenshot_v2a.jpg" alt="NASA's NEBULA Cloud Computing Website" width="214" height="153" align="right" /></a> In the <a title="Gartner: 2010 CIO Report" rel="no-follow" href="http://www.gartner.com/it/page.jsp?id=1283413" target="_blank">same report</a>, where the opinions of 1586 CIO&#8217;s were polled, it was discovered that there has been a dramatic shift in global technical priorities. Amazingly, the #1 technological priority for the past five years has all but dropped off the list, being replaced by Virtualization &amp; Cloud Computing.</p>
<p>In addition to the CIO&#8217;s of the world, another area where Cloud Computing is gaining serious momentum is within the U.S. Government. It is clear that one of the world&#8217;s largest political entities is doing more than assessing the clouds viability, but rather, running down the path towards broad adoption. In a <a title="Information Week: 10 Questions for Federal CIO Vivek Kundra" rel="no-follow" href="http://www.informationweek.com/news/government/cloud-saas/showArticle.jhtml?articleID=217900204" target="_blank">revealing interview with Information Week</a>, Obama&#8217;s Federal CIO, Vivek Kundra stated: &#8220;The cloud computing investment in the 2010 budget reflects the administration&#8217;s desire to drive down costs, drive innovation across the federal government, [and] make sure we&#8217;re making available technologies to the workforce&#8221;.</p>
<p>While the executive branch of the Government is currently in the late planning to early implementation stages, other agencies within the government have already moved into the clouds. <a href="http://www.aps.gov"><img src="http://cdn.xignite.com/blog/01_25_10/apps_gov_screenshot_v2a.jpg" alt="GSA's Apps.gov Cloud Computing Marketplace" width="196" height="166" align="left" /></a>Among the front-runners are NASA&#8217;s <a title="NASA: NEBULA Cloud Computing Project" rel="no-follow" href="http://nebula.nasa.gov/" target="_blank">NEBULA</a> Cloud Computing Project, the Defense Information Systems Agencies <a title="DISA: DoD's RACE Cloud" rel="no-follow" href="http://www.disa.mil/news/pressreleases/2009/race_100509.html" target="_blank">DoD RACE Cloud</a>, the Department of Homeland Security <a title="Information Week: DHS Cloud Strategy" rel="no-follow" href="http://www.informationweek.com/news/government/cloud-saas/showArticle.jhtml?articleID=222002709" target="_blank">Cloud Strategy</a>, and a handful of other agency-drive initiatives. One of the more exciting initiatives is the <a title="PDF: GSA's Cloud Computing Initiative" rel="no-follow" href="http://image.lifeservant.com/siteuploadfiles/VSYM/99B5C5E7-8B46-4D14-A53EB8FD1CEEB2BC/FABFD60A-C29A-8FCE-482300C7B6472EF6.pdf" target="_blank">GSA&#8217;s approach</a> to centralizing approved Cloud Computing Vendors, as well as plans for the agency to become the central clearinghouse for government backed private, public and semi-public cloud based applications and computing capabilities. <a href="http://www.aps.gov"></a>To jump-start this effort, the Obama Administration, in conjunction with the GSA, launched <a title="GSA: APPS.gov Website" rel="no-follow" href="http://www.apps.gov" target="_blank">www.APPS.gov</a>, an all new centralized government storefront for everything cloud service related. It is apparent that cloud based technologies are becoming so prolific, even the U.S. Government is getting on-board!</p>
<p>While private, public and governmental initiatives are a good sign of progress in the Cloud Services segment, other sure-fire indicators include innovation and investment. In addition to the hundreds of millions invested by leading <a title="The Standard: 10 Cloud Computing Companies to Watch" rel="no-follow" href="http://www.thestandard.com/news/2009/05/17/10-cloud-computing-companies-watch" target="_blank">cloud service providers</a> like Amazon, Google and others, Microsoft and HP have put their hats into the ring with a USD $250 million investment in Cloud Computing. This <a title="Sys-Con: HP &amp; Microsoft Announce Cloud Computing Partnership" rel="no-follow" href="http://cloudcomputing.sys-con.com/node/1246164" target="_blank">extended partnership</a> is aimed at building a new cloud based &#8216;infrastructure-to-application&#8217; service that will &#8220;transform the way large enterprises deliver services to their customers&#8221;, tackling both the expansion and innovation of cloud services in a single leap. According to Microsoft&#8217;s CEO, <a title="Microsoft: Steve Balmer on HP/Microsoft Partnership" rel="no-follow" href="http://www.microsoft.com/Presspass/press/2010/jan10/01-13InfToAppPR.mspx" target="_blank">Steve Balmer</a>; “This agreement, which spans hardware, software and services, will enable business customers to optimize performance with push-button simplicity at the lowest-possible total cost of ownership”.</p>
<p>Worldwide, there are countless examples of how Cloud Services are re-shaping the way we think about our computing needs, but some industries are moving slower than others towards adopting this <a title="Inside Market Data: Appetite for Disruption" rel="no-follow" href="http://www.dealingwithtechnology.com/public/showPage.html?page=871695" target="_blank">disruptive technology</a>.<a href="http://www.xignite.com"><img src="http://cdn.xignite.com/blog/01_25_10/xignite_screenshot_v1a.jpg" alt="Xignite On-Demand Financial Market Data" width="225" height="171" align="right" /></a> The Financial Data Industry, with its transpiring low latency arms race and troubling regulatory concerns, has all but shunned the Cloud Computing paradigm, citing a host of philosophical concerns, and boasting the perceived benefits of over-spending on data acquisition technologies.</p>
<p>It&#8217;s no surprise that the one <a title="Xignite: On-Demand Financial Market Data" rel="no-follow" href="http://www.xignite.com" target="_blank">Financial Data Provider</a> that has integrated Cloud Computing technologies into its delivery model, is <a title="Xignite: Market Data Customers Embrace the Cloud" rel="no-follow" href="http://www.xignite.com/News/PressRelease.aspx?articleid=188" target="_blank">growing at break-neck speeds</a>.  It&#8217;s on-demand delivery method provides professional financial market data to customers in more than 5o countries around the globe, saving serious time and money in the process. While some data vendors are holding tight to their legacy delivery methods, it&#8217;s good to know that there is at least one <a title="Xignite: On-Demand Financial Market Data" rel="no-follow" href="http://www.xignite.com" target="_blank">Financial Data Provider</a> that can see into the clouds, and is embracing the future with open arms.</p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="mailto:?subject=The%20Winds%20Of%20Change%20Are%20Blowing%20In%20The%20Clouds%20Favor&amp;body=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F01%2Fthe-winds-of-change-are-blowing-in-the-clouds-favor%2F" title="email"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=The%20Winds%20Of%20Change%20Are%20Blowing%20In%20The%20Clouds%20Favor%20-%20http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F01%2Fthe-winds-of-change-are-blowing-in-the-clouds-favor%2F" title="Twitter"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F01%2Fthe-winds-of-change-are-blowing-in-the-clouds-favor%2F&amp;t=The%20Winds%20Of%20Change%20Are%20Blowing%20In%20The%20Clouds%20Favor" title="Facebook"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F01%2Fthe-winds-of-change-are-blowing-in-the-clouds-favor%2F&amp;title=The%20Winds%20Of%20Change%20Are%20Blowing%20In%20The%20Clouds%20Favor&amp;source=Financial+Market+Data+Web+Services+-+Xignite+Blog+It%26%23039%3Bs+not+the+data.++It%26%23039%3Bs+the+delivery.&amp;summary=A%20few%20years%20back%2C%20if%20you%20asked%20your%20IT%20professionals%20about%20Cloud%20Computing%2C%20you%20probably%20would%20have%20received%20a%20blank%20stare%2C%20followed%20up%20with%20an%20%22I%20love%20my%20servers%22%20comment.%20At%20that%20time%2C%20even%20the%20term%20%22Cloud%20Computing%22%20was%20plagued%20by%20confusion%2C%20uncer" title="LinkedIn"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F01%2Fthe-winds-of-change-are-blowing-in-the-clouds-favor%2F&amp;title=The%20Winds%20Of%20Change%20Are%20Blowing%20In%20The%20Clouds%20Favor&amp;bodytext=A%20few%20years%20back%2C%20if%20you%20asked%20your%20IT%20professionals%20about%20Cloud%20Computing%2C%20you%20probably%20would%20have%20received%20a%20blank%20stare%2C%20followed%20up%20with%20an%20%22I%20love%20my%20servers%22%20comment.%20At%20that%20time%2C%20even%20the%20term%20%22Cloud%20Computing%22%20was%20plagued%20by%20confusion%2C%20uncer" title="Digg"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F01%2Fthe-winds-of-change-are-blowing-in-the-clouds-favor%2F&amp;title=The%20Winds%20Of%20Change%20Are%20Blowing%20In%20The%20Clouds%20Favor" title="StumbleUpon"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F01%2Fthe-winds-of-change-are-blowing-in-the-clouds-favor%2F" title="Technorati"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F01%2Fthe-winds-of-change-are-blowing-in-the-clouds-favor%2F%20The%20Winds%20Of%20Change%20Are%20Blowing%20In%20The%20Clouds%20Favor" title="Suggest to Techmeme via Twitter"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F01%2Fthe-winds-of-change-are-blowing-in-the-clouds-favor%2F&amp;title=The%20Winds%20Of%20Change%20Are%20Blowing%20In%20The%20Clouds%20Favor&amp;notes=A%20few%20years%20back%2C%20if%20you%20asked%20your%20IT%20professionals%20about%20Cloud%20Computing%2C%20you%20probably%20would%20have%20received%20a%20blank%20stare%2C%20followed%20up%20with%20an%20%22I%20love%20my%20servers%22%20comment.%20At%20that%20time%2C%20even%20the%20term%20%22Cloud%20Computing%22%20was%20plagued%20by%20confusion%2C%20uncer" title="del.icio.us"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F01%2Fthe-winds-of-change-are-blowing-in-the-clouds-favor%2F&amp;title=The%20Winds%20Of%20Change%20Are%20Blowing%20In%20The%20Clouds%20Favor&amp;annotation=A%20few%20years%20back%2C%20if%20you%20asked%20your%20IT%20professionals%20about%20Cloud%20Computing%2C%20you%20probably%20would%20have%20received%20a%20blank%20stare%2C%20followed%20up%20with%20an%20%22I%20love%20my%20servers%22%20comment.%20At%20that%20time%2C%20even%20the%20term%20%22Cloud%20Computing%22%20was%20plagued%20by%20confusion%2C%20uncer" title="Google Bookmarks"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F01%2Fthe-winds-of-change-are-blowing-in-the-clouds-favor%2F&amp;title=The%20Winds%20Of%20Change%20Are%20Blowing%20In%20The%20Clouds%20Favor" title="Live"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=The%20Winds%20Of%20Change%20Are%20Blowing%20In%20The%20Clouds%20Favor&amp;link=http%3A%2F%2Fxignite.web-services-blog.com%2F2010%2F01%2Fthe-winds-of-change-are-blowing-in-the-clouds-favor%2F" title="FriendFeed"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://xignite.web-services-blog.com/2010/01/the-winds-of-change-are-blowing-in-the-clouds-favor/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Causing Depth &amp; Disruption Wherever We Go!</title>
		<link>http://xignite.web-services-blog.com/2009/12/causing-depth-disruption-wherever-we-go/</link>
		<comments>http://xignite.web-services-blog.com/2009/12/causing-depth-disruption-wherever-we-go/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 01:22:14 +0000</pubDate>
		<dc:creator>ChasCooper</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Customers]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[equity options]]></category>
		<category><![CDATA[web services]]></category>

		<guid isPermaLink="false">http://xignite.web-services-blog.com/?p=711</guid>
		<description><![CDATA[I really liked how Max Bowie characterized Xignite as “disruptive” in a piece he published in Inside Market Data earlier this week, entitled “Appetite for Disruption.” He was covering our latest release of equity options web services XigniteOptions and XigniteRealTimeOptions, but his “disruptive” moniker couldn’t be more appropriate for all of Xignite as a company. [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F12%2Fcausing-depth-disruption-wherever-we-go%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F12%2Fcausing-depth-disruption-wherever-we-go%2F&amp;source=xignite&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>I really liked how Max Bowie characterized Xignite as “disruptive” in a piece he published in Inside Market Data earlier this week, entitled “<a rel="nofollow" href="http://www.insidemarketdata.com/public/showPage.html?page=871695" target="_blank">Appetite for Disruption</a>.” He was covering our latest release of <a href="http://www.xignite.com/xOptions.asmx">equity options</a> web services <a href="http://www.xignite.com/xOptions.asmx">XigniteOptions</a> and <a href="http://www.xignite.com/xRealTimeOptions.asmx">XigniteRealTimeOptions</a>, but his “disruptive” moniker couldn’t be more appropriate for all of Xignite as a company.</p>
<p>He dubbed us as “disruptive” because our equity options services changed the economics of getting options data so much that customers like <a rel="nofollow" href="http://www.iverit.net" target="_blank">iVerit</a> are now able to create new businesses delivering this high-volume, high-expense market data at rates affordable even to small private investors over small, affordable devices like the iPhone.</p>
<p>But the truth is that virtually every time we launch a new web service, we see this pattern of disruptive technology creating new opportunities to penetrate existing markets much more deeply. That’s because it&#8217;s the on-demand delivery model itself, not any particular web service, that creates the order-of-magnitude changes in economics that cause disruption and new opportunities to deepen existing markets.</p>
<p>So thanks to Max for giving us a rep as a high-tech company running amok causing market depth and disruption wherever we go.</p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="mailto:?subject=Causing%20Depth%20%26amp%3B%20Disruption%20Wherever%20We%20Go%21&amp;body=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F12%2Fcausing-depth-disruption-wherever-we-go%2F" title="email"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Causing%20Depth%20%26amp%3B%20Disruption%20Wherever%20We%20Go%21%20-%20http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F12%2Fcausing-depth-disruption-wherever-we-go%2F" title="Twitter"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F12%2Fcausing-depth-disruption-wherever-we-go%2F&amp;t=Causing%20Depth%20%26amp%3B%20Disruption%20Wherever%20We%20Go%21" title="Facebook"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F12%2Fcausing-depth-disruption-wherever-we-go%2F&amp;title=Causing%20Depth%20%26amp%3B%20Disruption%20Wherever%20We%20Go%21&amp;source=Financial+Market+Data+Web+Services+-+Xignite+Blog+It%26%23039%3Bs+not+the+data.++It%26%23039%3Bs+the+delivery.&amp;summary=I%20really%20liked%20how%20Max%20Bowie%20characterized%20Xignite%20as%20%E2%80%9Cdisruptive%E2%80%9D%20in%20a%20piece%20he%20published%20in%20Inside%20Market%20Data%20earlier%20this%20week%2C%20entitled%20%E2%80%9CAppetite%20for%20Disruption.%E2%80%9D%20He%20was%20covering%20our%20latest%20release%20of%20equity%20options%20web%20services%20XigniteO" title="LinkedIn"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F12%2Fcausing-depth-disruption-wherever-we-go%2F&amp;title=Causing%20Depth%20%26amp%3B%20Disruption%20Wherever%20We%20Go%21&amp;bodytext=I%20really%20liked%20how%20Max%20Bowie%20characterized%20Xignite%20as%20%E2%80%9Cdisruptive%E2%80%9D%20in%20a%20piece%20he%20published%20in%20Inside%20Market%20Data%20earlier%20this%20week%2C%20entitled%20%E2%80%9CAppetite%20for%20Disruption.%E2%80%9D%20He%20was%20covering%20our%20latest%20release%20of%20equity%20options%20web%20services%20XigniteO" title="Digg"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F12%2Fcausing-depth-disruption-wherever-we-go%2F&amp;title=Causing%20Depth%20%26amp%3B%20Disruption%20Wherever%20We%20Go%21" title="StumbleUpon"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F12%2Fcausing-depth-disruption-wherever-we-go%2F" title="Technorati"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F12%2Fcausing-depth-disruption-wherever-we-go%2F%20Causing%20Depth%20%26amp%3B%20Disruption%20Wherever%20We%20Go%21" title="Suggest to Techmeme via Twitter"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F12%2Fcausing-depth-disruption-wherever-we-go%2F&amp;title=Causing%20Depth%20%26amp%3B%20Disruption%20Wherever%20We%20Go%21&amp;notes=I%20really%20liked%20how%20Max%20Bowie%20characterized%20Xignite%20as%20%E2%80%9Cdisruptive%E2%80%9D%20in%20a%20piece%20he%20published%20in%20Inside%20Market%20Data%20earlier%20this%20week%2C%20entitled%20%E2%80%9CAppetite%20for%20Disruption.%E2%80%9D%20He%20was%20covering%20our%20latest%20release%20of%20equity%20options%20web%20services%20XigniteO" title="del.icio.us"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F12%2Fcausing-depth-disruption-wherever-we-go%2F&amp;title=Causing%20Depth%20%26amp%3B%20Disruption%20Wherever%20We%20Go%21&amp;annotation=I%20really%20liked%20how%20Max%20Bowie%20characterized%20Xignite%20as%20%E2%80%9Cdisruptive%E2%80%9D%20in%20a%20piece%20he%20published%20in%20Inside%20Market%20Data%20earlier%20this%20week%2C%20entitled%20%E2%80%9CAppetite%20for%20Disruption.%E2%80%9D%20He%20was%20covering%20our%20latest%20release%20of%20equity%20options%20web%20services%20XigniteO" title="Google Bookmarks"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F12%2Fcausing-depth-disruption-wherever-we-go%2F&amp;title=Causing%20Depth%20%26amp%3B%20Disruption%20Wherever%20We%20Go%21" title="Live"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Causing%20Depth%20%26amp%3B%20Disruption%20Wherever%20We%20Go%21&amp;link=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F12%2Fcausing-depth-disruption-wherever-we-go%2F" title="FriendFeed"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://xignite.web-services-blog.com/2009/12/causing-depth-disruption-wherever-we-go/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xignite Launches New Global Currency/Forex Section</title>
		<link>http://xignite.web-services-blog.com/2009/10/xignite-launches-new-global-currency-forex-section/</link>
		<comments>http://xignite.web-services-blog.com/2009/10/xignite-launches-new-global-currency-forex-section/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 19:00:28 +0000</pubDate>
		<dc:creator>Landon Long</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[forex]]></category>
		<category><![CDATA[forex exchange rates]]></category>
		<category><![CDATA[forex historical]]></category>
		<category><![CDATA[forex on-demand]]></category>
		<category><![CDATA[forex real-time]]></category>
		<category><![CDATA[forex tick-by-tick]]></category>
		<category><![CDATA[forex web service]]></category>
		<category><![CDATA[global currency data]]></category>
		<category><![CDATA[global forex data]]></category>
		<category><![CDATA[xignitecurrencies]]></category>

		<guid isPermaLink="false">http://xignite.web-services-blog.com/?p=520</guid>
		<description><![CDATA[What does the Albanian Lek, Dominican Peso, Indonesian Rupiah and 140 other global currencies have in common? They can all be found in the newly updated XigniteCurrencies section. Redesigned from the ground up, the new currencies section has been expanded to provide you with all the tools and information needed to get up and running with Global Currency Data.
 ]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F10%2Fxignite-launches-new-global-currency-forex-section%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F10%2Fxignite-launches-new-global-currency-forex-section%2F&amp;source=xignite&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>What does the Albanian Lek, Dominican Peso, Indonesian Rupiah and 140 other global currencies have in common?  They can all be found in the newly updated <a title="XigniteCurrencies" href="http://www.xignite.com/forex/20001.html" target="_blank">XigniteCurrencies</a> section.  Redesigned from the ground up, the new currencies section has been expanded to provide the tools and information necessary to get up and running with Global Currency Data.</p>
<p><a href="http://www.xignite.com/forex/currency-data/2000102.html"><img class="   alignnone" src="http://cdn.xignite.com/drip/currencies_1/drip_2/xignite_currency_map_v2b.jpg" alt="XigniteCurrencies Data Coverage Map" width="448" height="203" /></a></p>
<p>In addition to covering over 85% of the world&#8217;s currencies, there are several improvements that we are very excited about.  First, we have expanded the section to include two new areas, one dedicated to providing detailed <a title="product information" href="http://www.xignite.com/forex/20001.html" target="_blank">product information</a>, and the other dedicated to providing comprehensive <a title="developer resources" href="http://www.xignite.com/forex/web-service/2000106.html" target="_blank">developer resources</a>.  We have simplified the sites navigation, while also adding cool new features including several educational videos, expanded product information and an entirely new set of <a title="interactive demo applications" href="http://www.xignite.com/forex/live-forex-data/2000104.html" target="_blank">interactive demo applications</a>.  We have even created a <a title="step-by-step video" href="http://www.xignite.com/forex/web-service/2000106.html" target="_blank">step-by-step video </a>on how to get up and running with a simple real-time currency converter.  If you haven’t visited the section recently, you should give it a peek.</p>
<table border="0" width="450" align="center">
<tbody>
<tr>
<td width="225" align="center" valign="top"><strong>Product Resources<br />
</strong><a href="http://www.xignite.com/forex/20001.html"><strong><img class="alignnone" src="http://cdn.xignite.com/blog/10_01_09/demo_small_v1a.jpg" alt="" width="200" height="80" /></strong></a><br />
- <a title="Currency Overview" href="http://www.xignite.com/forex/20001.html" target="_blank">Currency Overview</a> -<br />
- <a title="What is On-Demand" href="http://www.xignite.com/forex/data-feed/2000103.html" target="_blank">What Is On-Demand</a> -<br />
- <a title="Live Forex Application Demos" href="http://www.xignite.com/forex/live-forex-data/2000104.html" target="_blank">Live Forex Demos</a> -<br />
- <a title="Global Forex Data Coverage" href="http://www.xignite.com/forex/currency-data/2000102.html" target="_blank">Global Data Coverage</a> - </td>
<td width="225" align="center" valign="top"><strong>Developer Resources</strong><br />
<a href="http://www.xignite.com/forex/web-service/2000106.html"><img class="alignnone" src="http://cdn.xignite.com/blog/10_01_09/getting_started_small_v1a.jpg" alt="" width="200" height="80" /></a><br />
- <a title="Currency Converter How-To Video" href="http://www.xignite.com/forex/web-service/2000106.html">How-To Video</a> -<br />
- <a title="Getting Started" href="http://www.xignite.com/forex/getting-started/2000111.html" target="_blank">Getting Started</a> -<br />
- <a title="Forex WSDL File" href="http://www.xignite.com/xCurrencies.asmx?WSDL" target="_blank">Forex WSDL File</a> -<br />
- <a title="XigniteCurrencies Operations" href="http://www.xignite.com/xCurrencies.asmx" target="_blank">Web Service Operations</a> -</td>
</tr>
</tbody>
</table>
<p>What&#8217;s most exciting are the countless ways our global currency data can be used. Our customers have proven that it doesn’t matter if you’re an Aviation Catering Company, Armored Transportation Service, National Menswear Retail Chain, Global Automotive Manufacturer or Cool Online Gaming Startup, with XigniteCurrencies, the applications are truly endless.</p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="mailto:?subject=Xignite%20Launches%20New%20Global%20Currency%2FForex%20Section&amp;body=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F10%2Fxignite-launches-new-global-currency-forex-section%2F" title="email"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Xignite%20Launches%20New%20Global%20Currency%2FForex%20Section%20-%20http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F10%2Fxignite-launches-new-global-currency-forex-section%2F" title="Twitter"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F10%2Fxignite-launches-new-global-currency-forex-section%2F&amp;t=Xignite%20Launches%20New%20Global%20Currency%2FForex%20Section" title="Facebook"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F10%2Fxignite-launches-new-global-currency-forex-section%2F&amp;title=Xignite%20Launches%20New%20Global%20Currency%2FForex%20Section&amp;source=Financial+Market+Data+Web+Services+-+Xignite+Blog+It%26%23039%3Bs+not+the+data.++It%26%23039%3Bs+the+delivery.&amp;summary=What%20does%20the%20Albanian%20Lek%2C%20Dominican%20Peso%2C%20Indonesian%20Rupiah%20and%20140%20other%20global%20currencies%20have%20in%20common%3F%20They%20can%20all%20be%20found%20in%20the%20newly%20updated%20XigniteCurrencies%20section.%20Redesigned%20from%20the%20ground%20up%2C%20the%20new%20currencies%20section%20has%20been%20expanded%20to%20provide%20you%20with%20all%20the%20tools%20and%20information%20needed%20to%20get%20up%20and%20running%20with%20Global%20Currency%20Data.%0D%0A%20" title="LinkedIn"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F10%2Fxignite-launches-new-global-currency-forex-section%2F&amp;title=Xignite%20Launches%20New%20Global%20Currency%2FForex%20Section&amp;bodytext=What%20does%20the%20Albanian%20Lek%2C%20Dominican%20Peso%2C%20Indonesian%20Rupiah%20and%20140%20other%20global%20currencies%20have%20in%20common%3F%20They%20can%20all%20be%20found%20in%20the%20newly%20updated%20XigniteCurrencies%20section.%20Redesigned%20from%20the%20ground%20up%2C%20the%20new%20currencies%20section%20has%20been%20expanded%20to%20provide%20you%20with%20all%20the%20tools%20and%20information%20needed%20to%20get%20up%20and%20running%20with%20Global%20Currency%20Data.%0D%0A%20" title="Digg"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F10%2Fxignite-launches-new-global-currency-forex-section%2F&amp;title=Xignite%20Launches%20New%20Global%20Currency%2FForex%20Section" title="StumbleUpon"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F10%2Fxignite-launches-new-global-currency-forex-section%2F" title="Technorati"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F10%2Fxignite-launches-new-global-currency-forex-section%2F%20Xignite%20Launches%20New%20Global%20Currency%2FForex%20Section" title="Suggest to Techmeme via Twitter"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F10%2Fxignite-launches-new-global-currency-forex-section%2F&amp;title=Xignite%20Launches%20New%20Global%20Currency%2FForex%20Section&amp;notes=What%20does%20the%20Albanian%20Lek%2C%20Dominican%20Peso%2C%20Indonesian%20Rupiah%20and%20140%20other%20global%20currencies%20have%20in%20common%3F%20They%20can%20all%20be%20found%20in%20the%20newly%20updated%20XigniteCurrencies%20section.%20Redesigned%20from%20the%20ground%20up%2C%20the%20new%20currencies%20section%20has%20been%20expanded%20to%20provide%20you%20with%20all%20the%20tools%20and%20information%20needed%20to%20get%20up%20and%20running%20with%20Global%20Currency%20Data.%0D%0A%20" title="del.icio.us"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F10%2Fxignite-launches-new-global-currency-forex-section%2F&amp;title=Xignite%20Launches%20New%20Global%20Currency%2FForex%20Section&amp;annotation=What%20does%20the%20Albanian%20Lek%2C%20Dominican%20Peso%2C%20Indonesian%20Rupiah%20and%20140%20other%20global%20currencies%20have%20in%20common%3F%20They%20can%20all%20be%20found%20in%20the%20newly%20updated%20XigniteCurrencies%20section.%20Redesigned%20from%20the%20ground%20up%2C%20the%20new%20currencies%20section%20has%20been%20expanded%20to%20provide%20you%20with%20all%20the%20tools%20and%20information%20needed%20to%20get%20up%20and%20running%20with%20Global%20Currency%20Data.%0D%0A%20" title="Google Bookmarks"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F10%2Fxignite-launches-new-global-currency-forex-section%2F&amp;title=Xignite%20Launches%20New%20Global%20Currency%2FForex%20Section" title="Live"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Xignite%20Launches%20New%20Global%20Currency%2FForex%20Section&amp;link=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F10%2Fxignite-launches-new-global-currency-forex-section%2F" title="FriendFeed"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://xignite.web-services-blog.com/2009/10/xignite-launches-new-global-currency-forex-section/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2009 SIFMA TMC: Smaller Show . . . Bigger Buzz</title>
		<link>http://xignite.web-services-blog.com/2009/07/2009-sifma-tmc-smaller-show-bigger-buzz/</link>
		<comments>http://xignite.web-services-blog.com/2009/07/2009-sifma-tmc-smaller-show-bigger-buzz/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 16:02:25 +0000</pubDate>
		<dc:creator>Landon Long</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Customers]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[People]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[2009 sifma tmc]]></category>
		<category><![CDATA[booth 1411]]></category>
		<category><![CDATA[corporate actions]]></category>
		<category><![CDATA[forbes galleries]]></category>
		<category><![CDATA[new york hilton]]></category>
		<category><![CDATA[shot machine]]></category>
		<category><![CDATA[sifma show]]></category>
		<category><![CDATA[technology managment conference]]></category>
		<category><![CDATA[vip event]]></category>
		<category><![CDATA[xignite on-demand]]></category>

		<guid isPermaLink="false">http://xignite.web-services-blog.com/?p=466</guid>
		<description><![CDATA[Everyone has been talking about how much smaller this year’s SIFMA Technology Management Conference was when compared with previous years, fewer exhibitors and fewer attendees.  But for Xignite, this year’s show was the biggest ever.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F07%2F2009-sifma-tmc-smaller-show-bigger-buzz%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F07%2F2009-sifma-tmc-smaller-show-bigger-buzz%2F&amp;source=xignite&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p style="text-align: left;">Everyone has been talking about how much smaller this year’s <a title="2009 SIFMA TMC Website" href="http://events.sifma.org/2009/315/" target="_blank" rel="nofollow">SIFMA Technology Management Conference</a> was when compared with previous years, fewer exhibitors and fewer attendees.  But for Xignite, this year’s show was the biggest ever. If you missed us at this year’s SIFMA TMC, we hope to see you next year. Feel free to take a look at the 2009 Xignite SIFMA TMC Photo Gallery by <a title="2009 Xignite SIFMA Photo Gallery" href="http://www.flickr.com/photos/xignite/sets/72157620839214894/show" target="_blank">Clicking Here</a>.</p>
<p><a href="http://www.flickr.com/photos/xignite/sets/72157620839214894/show" target="_blank"><img src="http://farm3.static.flickr.com/2534/3680654560_d8901a9b3f.jpg?v=0" border="0" alt="Xignite at 2009 SIFMA TMC" width="444" height="332" /></a></p>
<p>Despite the fact that this year’s SIFMA Show was scaled down quite a bit, we were positively overwhelmed with demand at the Xignite booth.  Our staff of seven was slammed every minute they were on the floor, answering questions, giving product demos and handing out free Xignite goodies.  Even after show hours were over, our booth stayed filled with people wanting to talk about on-demand web services.  Even when walking the halls, I overheard many others talking about Xignite, our cool new products and exciting activities that we were sharing at the show.  In retrospect, I wish we had brought a staff of twelve to handle all the demand.</p>
<p><a href="http://www.flickr.com/photos/xignite/sets/72157620839214894/show" target="_blank"><img src="http://farm4.static.flickr.com/3632/3680671750_02e3c7fd15.jpg?v=0" border="0" alt="The Xignite Shot Machine" width="249" height="328" align="left" /></a>Maybe it was just the Xignite shot machine and free booze we passed out. For me, it was fun demonstrating how it’s a lot easier &amp; cheaper to get data “by the glass” (aka on-demand) rather than getting data “by the fire hose” (aka bulk files and data feeds).  If it was alcohol that brought the hordes a-knocking at our booth, that would give a whole new meaning to the phrase, “generating buzz.”</p>
<p>Or maybe we saw so much demand because people just couldn’t resist the power of our free t-shirts, pens, mouse pads and other freebies.  Maybe it was the awesome VIP Event that we hosted at the Forbes Galleries. Or perhaps everyone heard about us from the recent publicity surrounding Xignite, like the amazing coverage in Inside Market Data or product announcements surrounding <a title="Xignite On-Demand" href="http://www.xignite.com/Solutions/On-Demand-Market-Data-Web-Services.aspx" target="_blank">XigniteOnDemand</a> and <a title="Xignite Corporate Actions" href="http://www.xignite.com/xCorporateActions.asmx" target="_blank">XigniteCorporateActions</a>.</p>
<p>In truth, I don’t think any amount of publicity, bribery or booze could have generated the amount of buzz we saw.  Having talked to many at the show, I got a strong sense that people are more serious than ever about finding game-changing technology, like <a title="Xignite On-Demand Catalog" href="http://www.xignite.com/Products/ProductDirectory.aspx" target="_blank">on-demand web services</a>.  Over and over again I heard people looking for way to simplify data projects, dramatically cut costs and reduce the time it takes to delivery new data initiatives to market.  In these categories, Xignite is the only show in town.</p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="mailto:?subject=2009%20SIFMA%20TMC%3A%20Smaller%20Show%20.%20.%20.%20Bigger%20Buzz&amp;body=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F07%2F2009-sifma-tmc-smaller-show-bigger-buzz%2F" title="email"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=2009%20SIFMA%20TMC%3A%20Smaller%20Show%20.%20.%20.%20Bigger%20Buzz%20-%20http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F07%2F2009-sifma-tmc-smaller-show-bigger-buzz%2F" title="Twitter"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F07%2F2009-sifma-tmc-smaller-show-bigger-buzz%2F&amp;t=2009%20SIFMA%20TMC%3A%20Smaller%20Show%20.%20.%20.%20Bigger%20Buzz" title="Facebook"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F07%2F2009-sifma-tmc-smaller-show-bigger-buzz%2F&amp;title=2009%20SIFMA%20TMC%3A%20Smaller%20Show%20.%20.%20.%20Bigger%20Buzz&amp;source=Financial+Market+Data+Web+Services+-+Xignite+Blog+It%26%23039%3Bs+not+the+data.++It%26%23039%3Bs+the+delivery.&amp;summary=Everyone%20has%20been%20talking%20about%20how%20much%20smaller%20this%20year%E2%80%99s%20SIFMA%20Technology%20Management%20Conference%20was%20when%20compared%20with%20previous%20years%2C%20fewer%20exhibitors%20and%20fewer%20attendees.%20%20But%20for%20Xignite%2C%20this%20year%E2%80%99s%20show%20was%20the%20biggest%20ever." title="LinkedIn"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F07%2F2009-sifma-tmc-smaller-show-bigger-buzz%2F&amp;title=2009%20SIFMA%20TMC%3A%20Smaller%20Show%20.%20.%20.%20Bigger%20Buzz&amp;bodytext=Everyone%20has%20been%20talking%20about%20how%20much%20smaller%20this%20year%E2%80%99s%20SIFMA%20Technology%20Management%20Conference%20was%20when%20compared%20with%20previous%20years%2C%20fewer%20exhibitors%20and%20fewer%20attendees.%20%20But%20for%20Xignite%2C%20this%20year%E2%80%99s%20show%20was%20the%20biggest%20ever." title="Digg"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F07%2F2009-sifma-tmc-smaller-show-bigger-buzz%2F&amp;title=2009%20SIFMA%20TMC%3A%20Smaller%20Show%20.%20.%20.%20Bigger%20Buzz" title="StumbleUpon"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F07%2F2009-sifma-tmc-smaller-show-bigger-buzz%2F" title="Technorati"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F07%2F2009-sifma-tmc-smaller-show-bigger-buzz%2F%202009%20SIFMA%20TMC%3A%20Smaller%20Show%20.%20.%20.%20Bigger%20Buzz" title="Suggest to Techmeme via Twitter"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F07%2F2009-sifma-tmc-smaller-show-bigger-buzz%2F&amp;title=2009%20SIFMA%20TMC%3A%20Smaller%20Show%20.%20.%20.%20Bigger%20Buzz&amp;notes=Everyone%20has%20been%20talking%20about%20how%20much%20smaller%20this%20year%E2%80%99s%20SIFMA%20Technology%20Management%20Conference%20was%20when%20compared%20with%20previous%20years%2C%20fewer%20exhibitors%20and%20fewer%20attendees.%20%20But%20for%20Xignite%2C%20this%20year%E2%80%99s%20show%20was%20the%20biggest%20ever." title="del.icio.us"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F07%2F2009-sifma-tmc-smaller-show-bigger-buzz%2F&amp;title=2009%20SIFMA%20TMC%3A%20Smaller%20Show%20.%20.%20.%20Bigger%20Buzz&amp;annotation=Everyone%20has%20been%20talking%20about%20how%20much%20smaller%20this%20year%E2%80%99s%20SIFMA%20Technology%20Management%20Conference%20was%20when%20compared%20with%20previous%20years%2C%20fewer%20exhibitors%20and%20fewer%20attendees.%20%20But%20for%20Xignite%2C%20this%20year%E2%80%99s%20show%20was%20the%20biggest%20ever." title="Google Bookmarks"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F07%2F2009-sifma-tmc-smaller-show-bigger-buzz%2F&amp;title=2009%20SIFMA%20TMC%3A%20Smaller%20Show%20.%20.%20.%20Bigger%20Buzz" title="Live"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=2009%20SIFMA%20TMC%3A%20Smaller%20Show%20.%20.%20.%20Bigger%20Buzz&amp;link=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F07%2F2009-sifma-tmc-smaller-show-bigger-buzz%2F" title="FriendFeed"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://xignite.web-services-blog.com/2009/07/2009-sifma-tmc-smaller-show-bigger-buzz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Market Data Feeds vs. Web Services &#8211; Why buy the cow?</title>
		<link>http://xignite.web-services-blog.com/2009/01/market-data-feeds-vs-web-services-why-buy-the-cow/</link>
		<comments>http://xignite.web-services-blog.com/2009/01/market-data-feeds-vs-web-services-why-buy-the-cow/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 03:12:23 +0000</pubDate>
		<dc:creator>Joel York</dc:creator>
				<category><![CDATA[Products]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[data feed]]></category>
		<category><![CDATA[market data]]></category>
		<category><![CDATA[web service]]></category>

		<guid isPermaLink="false">http://xignite.web-services-blog.com/?p=175</guid>
		<description><![CDATA[Many of the folks visiting our website looking for market data have previous experience with more traditional (or as we like to say legacy) data feed technology, but have not used Web services.   Or, they are new to market data in general and have difficulty cutting through all the technical detail and marketing-speak to make [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F01%2Fmarket-data-feeds-vs-web-services-why-buy-the-cow%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F01%2Fmarket-data-feeds-vs-web-services-why-buy-the-cow%2F&amp;source=xignite&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Many of the folks visiting our website looking for market data have previous experience with more traditional (or as we like to say legacy) data feed technology, but have not used <a rel="no follow" href="http://en.wikipedia.org/wiki/Web_service" target="_blank">Web services</a>.   Or, they are new to market data in general and have difficulty cutting through all the technical detail and marketing-speak to make an honest appraisal of what is best for their application.  If this sounds like you, then take a look at this quick side-by-side comparison below.</p>
<p>To make a sound business decision, you need to ask yourself the practical question of &#8220;Why should I buy the cow, when I can get the milk through the fence?&#8221;  In truth, there can be very good reasons for buying the cow.  For example, you drink an awful lot of milk.  Or, maybe you are also a really big meat eater.  But, if your business isn&#8217;t dairy farming, then you are usually better off just buying the milk.</p>
<p><center><a href="http://xignite.web-services-blog.com/wp-content/uploads/2009/01/market-data-feed-large.bmp" target="_blank"><img class="size-full wp-image-185" title="market-data-feed" src="http://xignite.web-services-blog.com/wp-content/uploads/2009/01/market-data-feed.jpg" alt="Contrasting On-demand Web Services and Data Feeds" width="449" height="337" /></a>
<dd class="wp-caption-dd">Contrasting On-demand Web Services and Data Feeds</dd>
<dd class="wp-caption-dd">(click on the image to enlarge)</dd>
<p> </center>Following this analogy, let me state out front that Web services are NOT right for every application.  If you are developing an algorithmic trading program that requires very low latency custom pricing data, or you belong to a gigantic financial institution that has a massive, centrally provisioned data feed, a strategic SOA initiative, and an IT department chock full of C++ programmers just waiting around for their next integration project, then you probably don&#8217;t need web services.  However, if writing custom data parsers is not your forte and fooling around with market data is not the core competency of your business, but merely a means to a higher value end, then we may have just what you need.</p>
<p>One often confusing element that is worth clarifying is that on-demand Web services are not only Web services, they are also on-demand.  That is, many market data vendors bundle application programming interfaces (APIs) in wih their feed products (often as a free add-on).  And, some of these APIs may support Web service standards or at least provide XML formatted output.  However, this does not change the business economics of buying data in bulk and deploying and managing the infrastructure to host and distribute it yourself, versus accessing it one transaction at a time over the Internet.</p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="mailto:?subject=Market%20Data%20Feeds%20vs.%20Web%20Services%20-%20Why%20buy%20the%20cow%3F&amp;body=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F01%2Fmarket-data-feeds-vs-web-services-why-buy-the-cow%2F" title="email"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Market%20Data%20Feeds%20vs.%20Web%20Services%20-%20Why%20buy%20the%20cow%3F%20-%20http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F01%2Fmarket-data-feeds-vs-web-services-why-buy-the-cow%2F" title="Twitter"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F01%2Fmarket-data-feeds-vs-web-services-why-buy-the-cow%2F&amp;t=Market%20Data%20Feeds%20vs.%20Web%20Services%20-%20Why%20buy%20the%20cow%3F" title="Facebook"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F01%2Fmarket-data-feeds-vs-web-services-why-buy-the-cow%2F&amp;title=Market%20Data%20Feeds%20vs.%20Web%20Services%20-%20Why%20buy%20the%20cow%3F&amp;source=Financial+Market+Data+Web+Services+-+Xignite+Blog+It%26%23039%3Bs+not+the+data.++It%26%23039%3Bs+the+delivery.&amp;summary=Many%20of%20the%20folks%20visiting%20our%20website%20looking%20for%20market%20data%20have%20previous%20experience%20with%20more%20traditional%20%28or%20as%20we%20like%20to%20say%20legacy%29%20data%20feed%20technology%2C%20but%20have%20not%20used%20Web%20services.%C2%A0%C2%A0%20Or%2C%20they%20are%20new%20to%20market%20data%20in%20general%20and%20have%20" title="LinkedIn"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F01%2Fmarket-data-feeds-vs-web-services-why-buy-the-cow%2F&amp;title=Market%20Data%20Feeds%20vs.%20Web%20Services%20-%20Why%20buy%20the%20cow%3F&amp;bodytext=Many%20of%20the%20folks%20visiting%20our%20website%20looking%20for%20market%20data%20have%20previous%20experience%20with%20more%20traditional%20%28or%20as%20we%20like%20to%20say%20legacy%29%20data%20feed%20technology%2C%20but%20have%20not%20used%20Web%20services.%C2%A0%C2%A0%20Or%2C%20they%20are%20new%20to%20market%20data%20in%20general%20and%20have%20" title="Digg"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F01%2Fmarket-data-feeds-vs-web-services-why-buy-the-cow%2F&amp;title=Market%20Data%20Feeds%20vs.%20Web%20Services%20-%20Why%20buy%20the%20cow%3F" title="StumbleUpon"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F01%2Fmarket-data-feeds-vs-web-services-why-buy-the-cow%2F" title="Technorati"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F01%2Fmarket-data-feeds-vs-web-services-why-buy-the-cow%2F%20Market%20Data%20Feeds%20vs.%20Web%20Services%20-%20Why%20buy%20the%20cow%3F" title="Suggest to Techmeme via Twitter"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F01%2Fmarket-data-feeds-vs-web-services-why-buy-the-cow%2F&amp;title=Market%20Data%20Feeds%20vs.%20Web%20Services%20-%20Why%20buy%20the%20cow%3F&amp;notes=Many%20of%20the%20folks%20visiting%20our%20website%20looking%20for%20market%20data%20have%20previous%20experience%20with%20more%20traditional%20%28or%20as%20we%20like%20to%20say%20legacy%29%20data%20feed%20technology%2C%20but%20have%20not%20used%20Web%20services.%C2%A0%C2%A0%20Or%2C%20they%20are%20new%20to%20market%20data%20in%20general%20and%20have%20" title="del.icio.us"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F01%2Fmarket-data-feeds-vs-web-services-why-buy-the-cow%2F&amp;title=Market%20Data%20Feeds%20vs.%20Web%20Services%20-%20Why%20buy%20the%20cow%3F&amp;annotation=Many%20of%20the%20folks%20visiting%20our%20website%20looking%20for%20market%20data%20have%20previous%20experience%20with%20more%20traditional%20%28or%20as%20we%20like%20to%20say%20legacy%29%20data%20feed%20technology%2C%20but%20have%20not%20used%20Web%20services.%C2%A0%C2%A0%20Or%2C%20they%20are%20new%20to%20market%20data%20in%20general%20and%20have%20" title="Google Bookmarks"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F01%2Fmarket-data-feeds-vs-web-services-why-buy-the-cow%2F&amp;title=Market%20Data%20Feeds%20vs.%20Web%20Services%20-%20Why%20buy%20the%20cow%3F" title="Live"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Market%20Data%20Feeds%20vs.%20Web%20Services%20-%20Why%20buy%20the%20cow%3F&amp;link=http%3A%2F%2Fxignite.web-services-blog.com%2F2009%2F01%2Fmarket-data-feeds-vs-web-services-why-buy-the-cow%2F" title="FriendFeed"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://xignite.web-services-blog.com/2009/01/market-data-feeds-vs-web-services-why-buy-the-cow/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>All You Need Is A Good Clean SOAP Toolkit</title>
		<link>http://xignite.web-services-blog.com/2007/08/all-you-need-is-a-good-clean-soap-toolkit/</link>
		<comments>http://xignite.web-services-blog.com/2007/08/all-you-need-is-a-good-clean-soap-toolkit/#comments</comments>
		<pubDate>Fri, 24 Aug 2007 02:21:29 +0000</pubDate>
		<dc:creator>StephaneDubois</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://xignite.web-services-blog.com/?p=17</guid>
		<description><![CDATA[I am a late comer to the SOAP vs. REST debate, mainly because this blog started after the battle began raging. But a recent post by Raymond Yee&#8211;who is writing a book about mashups&#8211;suggested a reaction. Raymond&#8217;s main point is that SOAP requires a developer to have deep knowledge of the protocols (WSDL and SOAP) [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2007%2F08%2Fall-you-need-is-a-good-clean-soap-toolkit%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2007%2F08%2Fall-you-need-is-a-good-clean-soap-toolkit%2F&amp;source=xignite&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>I am a late comer to the SOAP vs. REST debate, mainly because this blog started after the battle began raging. But a recent <a href="http://blog.mashupguide.net/2007/08/15/a-rant-about-the-complexity-of-working-with-soap-services/" target="_blank">post</a> by Raymond Yee&#8211;who is writing a <a href="http://blog.mashupguide.net/" target="_blank">book</a> about mashups&#8211;suggested a reaction. </p>
<p>Raymond&#8217;s main point is that SOAP requires a developer to have deep knowledge of the protocols (WSDL and SOAP) to use web services effectively and that it is &quot;so much&nbsp; easier to get started with REST.&quot;</p>
<p>I disagree violently. The knowledge of SOAP and WSDL you need all depends on the SOAP toolkit you use.</p>
<p>I&#8217;ll take an analogy; Do we require internet users to know HTML to navigate the web? No we don&#8217;t. On the client side, the browser takes care of turning HTML into beautiful usable web pages. If end users had to read HTML pages in <strong>plain text</strong> they would find the web very obscure indeed. </p>
<p>On the server side, if you are writing your HTML by hand, you will definitely need to know the details of the protocol. But if you use a good advanced IDE that lets you write pages in a WYSIWYG fashion, you can build a web site without knowing anything about HTML.</p>
<p>So it all depends on the tools (client and server side) and how well they hide the protocol from you.</p>
<p>If you want to write a web service by hand, you will have to know SOAP and WSDL. If you use a good toolkit, all you have to do is write a function call and you have a web service. If you want to consume a web service without a good SOAP toolkit, you will have to learn the standards but not otherwise. </p>
<p>We have written dozens of web services which collectively have served billions of SOAP requests to hundreds of firms around the world yet we have never read the<a href="http://www.w3.org/TR/2007/REC-soap12-part0-20070427/" target="_blank"> SOAP specs</a> and we can barely read a WSDL by hand. All we had to do was to write meaningful function calls (which is an art in itself).</p>
<p>Our clients who use good SOAP toolkit can go from pointing to our WSDLs to consuming data in their application in less than 60 seconds without a hint of what the protocols are about. This is not something you can do with REST yet (WADL might be able to change that).</p>
<p>Clients who come to us with more primitive languages will tend to spend more time working out the details of the integration.</p>
<p>It seems that SOAP&#8217;s bad rap comes from those who just have not wanted to use more advanced SOAP toolkits. </p>
<p>It&#8217;s very sad indeed. It is as if back in 1996 we had abandoned the promise of the web and stopped building web pages because a bunch of people insisted in using a <strong>text editor</strong> instead of a browser to open HTML pages and complained about how <strong>unreadable</strong> this HTML was. Come on.</p>
<p>To his credit, Raymond is very open to being convinced. He wants to &quot;be shown where my thinking is wrong&nbsp; and how I can start using SOAP and WSDL with ease in PHP, Python, etc.&quot;</p>
<p>Unfortunately, and with due respect to the fantastic tools PHP and Pythons are, they are not on the top of my list of the &quot;better SOAP toolkits&quot;&#8211;at least in their editor form. We had to handhold too many developers using those to have them make the cut. I suppose that if you use a nice IDE on top of those, things are easier. But they don&#8217;t require you to know SOAP and WSDL to make them work.</p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="mailto:?subject=All%20You%20Need%20Is%20A%20Good%20Clean%20SOAP%20Toolkit&amp;body=http%3A%2F%2Fxignite.web-services-blog.com%2F2007%2F08%2Fall-you-need-is-a-good-clean-soap-toolkit%2F" title="email"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=All%20You%20Need%20Is%20A%20Good%20Clean%20SOAP%20Toolkit%20-%20http%3A%2F%2Fxignite.web-services-blog.com%2F2007%2F08%2Fall-you-need-is-a-good-clean-soap-toolkit%2F" title="Twitter"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fxignite.web-services-blog.com%2F2007%2F08%2Fall-you-need-is-a-good-clean-soap-toolkit%2F&amp;t=All%20You%20Need%20Is%20A%20Good%20Clean%20SOAP%20Toolkit" title="Facebook"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fxignite.web-services-blog.com%2F2007%2F08%2Fall-you-need-is-a-good-clean-soap-toolkit%2F&amp;title=All%20You%20Need%20Is%20A%20Good%20Clean%20SOAP%20Toolkit&amp;source=Financial+Market+Data+Web+Services+-+Xignite+Blog+It%26%23039%3Bs+not+the+data.++It%26%23039%3Bs+the+delivery.&amp;summary=I%20am%20a%20late%20comer%20to%20the%20SOAP%20vs.%20REST%20debate%2C%20mainly%20because%20this%20blog%20started%20after%20the%20battle%20began%20raging.%20But%20a%20recent%20post%20by%20Raymond%20Yee--who%20is%20writing%20a%20book%20about%20mashups--suggested%20a%20reaction.%20%0D%0A%0D%0ARaymond%27s%20main%20point%20is%20that%20SOAP%20requires" title="LinkedIn"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fxignite.web-services-blog.com%2F2007%2F08%2Fall-you-need-is-a-good-clean-soap-toolkit%2F&amp;title=All%20You%20Need%20Is%20A%20Good%20Clean%20SOAP%20Toolkit&amp;bodytext=I%20am%20a%20late%20comer%20to%20the%20SOAP%20vs.%20REST%20debate%2C%20mainly%20because%20this%20blog%20started%20after%20the%20battle%20began%20raging.%20But%20a%20recent%20post%20by%20Raymond%20Yee--who%20is%20writing%20a%20book%20about%20mashups--suggested%20a%20reaction.%20%0D%0A%0D%0ARaymond%27s%20main%20point%20is%20that%20SOAP%20requires" title="Digg"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2007%2F08%2Fall-you-need-is-a-good-clean-soap-toolkit%2F&amp;title=All%20You%20Need%20Is%20A%20Good%20Clean%20SOAP%20Toolkit" title="StumbleUpon"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fxignite.web-services-blog.com%2F2007%2F08%2Fall-you-need-is-a-good-clean-soap-toolkit%2F" title="Technorati"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fxignite.web-services-blog.com%2F2007%2F08%2Fall-you-need-is-a-good-clean-soap-toolkit%2F%20All%20You%20Need%20Is%20A%20Good%20Clean%20SOAP%20Toolkit" title="Suggest to Techmeme via Twitter"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fxignite.web-services-blog.com%2F2007%2F08%2Fall-you-need-is-a-good-clean-soap-toolkit%2F&amp;title=All%20You%20Need%20Is%20A%20Good%20Clean%20SOAP%20Toolkit&amp;notes=I%20am%20a%20late%20comer%20to%20the%20SOAP%20vs.%20REST%20debate%2C%20mainly%20because%20this%20blog%20started%20after%20the%20battle%20began%20raging.%20But%20a%20recent%20post%20by%20Raymond%20Yee--who%20is%20writing%20a%20book%20about%20mashups--suggested%20a%20reaction.%20%0D%0A%0D%0ARaymond%27s%20main%20point%20is%20that%20SOAP%20requires" title="del.icio.us"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fxignite.web-services-blog.com%2F2007%2F08%2Fall-you-need-is-a-good-clean-soap-toolkit%2F&amp;title=All%20You%20Need%20Is%20A%20Good%20Clean%20SOAP%20Toolkit&amp;annotation=I%20am%20a%20late%20comer%20to%20the%20SOAP%20vs.%20REST%20debate%2C%20mainly%20because%20this%20blog%20started%20after%20the%20battle%20began%20raging.%20But%20a%20recent%20post%20by%20Raymond%20Yee--who%20is%20writing%20a%20book%20about%20mashups--suggested%20a%20reaction.%20%0D%0A%0D%0ARaymond%27s%20main%20point%20is%20that%20SOAP%20requires" title="Google Bookmarks"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fxignite.web-services-blog.com%2F2007%2F08%2Fall-you-need-is-a-good-clean-soap-toolkit%2F&amp;title=All%20You%20Need%20Is%20A%20Good%20Clean%20SOAP%20Toolkit" title="Live"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=All%20You%20Need%20Is%20A%20Good%20Clean%20SOAP%20Toolkit&amp;link=http%3A%2F%2Fxignite.web-services-blog.com%2F2007%2F08%2Fall-you-need-is-a-good-clean-soap-toolkit%2F" title="FriendFeed"><img src="http://xignite.web-services-blog.com/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://xignite.web-services-blog.com/2007/08/all-you-need-is-a-good-clean-soap-toolkit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
