<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Mike On Ads</title>
	
	<link>http://www.mikeonads.com</link>
	<description>Ramblings about online advertising, ad networks &amp; other techie randomness</description>
	<lastBuildDate>Mon, 19 Oct 2009 01:57:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/MikeOnAds" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>RTB Serving Speed</title>
		<link>http://feedproxy.google.com/~r/MikeOnAds/~3/dnoV5KIHaXI/</link>
		<comments>http://www.mikeonads.com/2009/10/18/rtb-serving-speed/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 01:57:03 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[RTB]]></category>

		<guid isPermaLink="false">http://www.mikeonads.com/?p=483</guid>
		<description><![CDATA[One of my readers posted the following comment on my first post on RTB:

In your second diagram you show the interaction between the publisher adserver and multiple networks. Does this potentially multiple source back and forth not slow down the adserving in the same way a series of dumb redirects would? Especially when you consider [...]]]></description>
			<content:encoded><![CDATA[<p>One of my readers posted the following comment on <a href="http://www.mikeonads.com/2009/08/30/rtb-part-i-what-is-it/">my first post on RTB</a>:</p>
<blockquote><p>
In your second diagram you show the interaction between the publisher adserver and multiple networks. Does this potentially multiple source back and forth not slow down the adserving in the same way a series of dumb redirects would? Especially when you consider that presumably if Network 1 came back with the best price out of 3 or four networks, once the publisher ad server knew that it would need to go back to it and request the actual ad again. It would be interesting to see some realistic HTTP traces for this stuff.
</p></blockquote>
<p>This is indeed a great question.    Technically it looks like there are the same # of requests going back and forth in RTB versus a traditional ad-call.  Although this is the case, RTB is going to be significantly faster&#8230; and here&#8217;s why.</p>
<p>Technically a browser downloading content from an adserver is a five step process:<br />
* DNS lookup of the adserver domain name<br />
* Establishment of a TCP connection<br />
* Requesting content<br />
* Acknowledge of request &#038; sending back content<br />
* Terminating the TCP connection</p>
<p>Assume for this case that a DNS lookup takes about 100ms.  Each of these steps requires a number of packets to go from the local computer up to the adserver and a series of response packets.  Here&#8217;s the # required for each step:</p>
<p>* TCP Connection:  Two packets up, and one packet down  (SYN, SYN-ACK, AKC)<br />
* Requesting content:  One packet up (minimum)<br />
* Request acknowledgement and content: One packet down (minimum) &#038; one packet up<br />
* Terminating the connection: One packet</p>
<p>So the minimum number of packets sent back and forth is 7.  If the latency from an end-user is 50ms to the adserver, this means it will take *at least* 450ms (100ms DNS + 350ms ad-request) to request the ad.</p>
<p>Now you&#8217;d think this would be the same for real-time, but it&#8217;s not!  There are three reasons a request between two serving systems is much faster:<br />
* Better connectivity &#8212; Adservers are hosted in datacenter that generally have much better internet connectivity than the average end-user.  This means lower latency between the two adserving systems.<br />
* No DNS lookup &#8212; The RTB system can cache DNS lookups for all RTB partners, effectively removing this 100ms.<br />
* Persistent TCP connections &#8212; Any intelligent RTB integration would use persistent TCP sessions between the sell and buy side systems.  This means a connection is established once and reused thousands of times after that.</p>
<p>With the above three, here&#8217;s how requesting a &#8220;bid&#8221; looks from sell to buy side:<br />
* Requesting content:  One packet<br />
* Acknowledge of request &#038; sending back content: One packet</p>
<p>So assume 25ms latency between systems (rather than 50) and the minimum time for an RTB request between systems is only 50ms compared to the 450ms it would take for an actual end-user or 9 times faster.  The slower the end users connection and the faster RTB will be.</p>
<p>Conclusion &#8212; yes, adserving individual requests becomes a little bit slower but the removal of redirects makes the overall process signficantly faster.</p>
<p>For those technically curious, here&#8217;s are tcpdumps that prove this. </p>
<p><b>Browser to adserver:</b></p>
<pre>
15:45:04.380042 IP 10.0.1.31.59541 > 8.12.226.77.http: Flags [S], seq 50484529, win 65535, [...]
15:45:04.397395 IP 8.12.226.77.http > 10.0.1.31.59541: Flags [S.], seq 661028066, ack 50484530 [...]
15:45:04.397529 IP 10.0.1.31.59541 > 8.12.226.77.http: Flags [.], ack 1, win 65535, length 0
15:45:04.397831 IP 10.0.1.31.59541 > 8.12.226.77.http: Flags [P.], seq 1:1288, ack 1, win 65535, length 1287
15:45:04.424466 IP 8.12.226.77.http > 10.0.1.31.59541: Flags [.], seq 1:1461, ack 1288, win 62780, length 1460
15:45:04.424472 IP 8.12.226.77.http > 10.0.1.31.59541: Flags [P.], seq 1461:1543, ack 1288, win 62780, length 82
15:45:04.424546 IP 10.0.1.31.59541 > 8.12.226.77.http: Flags [.], ack 1543, win 65535, length 0
</pre>
<p><b>Adserver to adserver with persistent connections:</b></p>
<pre>
20:00:10.709152 IP 64.208.137.8.41096 > 8.12.226.77.80: . ack 1023 win 7154
20:00:10.754844 IP 8.12.226.77.80 > 64.208.137.8.41096: P 1023:2045(1022) ack 501 win 62780
</pre>
<img src="http://feeds.feedburner.com/~r/MikeOnAds/~4/dnoV5KIHaXI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mikeonads.com/2009/10/18/rtb-serving-speed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mikeonads.com/2009/10/18/rtb-serving-speed/</feedburner:origLink></item>
		<item>
		<title>Microsoft sues the bad guys</title>
		<link>http://feedproxy.google.com/~r/MikeOnAds/~3/4Bd0JkA-ggA/</link>
		<comments>http://www.mikeonads.com/2009/09/19/microsoft-sues-the-bad-guys/#comments</comments>
		<pubDate>Sat, 19 Sep 2009 22:04:59 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[malvertising]]></category>

		<guid isPermaLink="false">http://www.mikeonads.com/?p=488</guid>
		<description><![CDATA[Check out the post by Tim Cranton on theMicrosoft Blog about five suits he just filed against a variety of malware purveyors.
Kudos to Microsoft for taking action!  The wild-wild west of display advertising is slowly growing up. 
]]></description>
			<content:encoded><![CDATA[<p>Check out the post by Tim Cranton on the<a href="http://microsoftontheissues.com/cs/blogs/mscorp/archive/2009/09/17/bad-ad-going-after-the-malvertising-threat.aspx">Microsoft Blog</a> about five suits he just filed against a variety of malware purveyors.</p>
<p>Kudos to Microsoft for taking action!  The wild-wild west of display advertising is slowly growing up. </p>
<img src="http://feeds.feedburner.com/~r/MikeOnAds/~4/4Bd0JkA-ggA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mikeonads.com/2009/09/19/microsoft-sues-the-bad-guys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mikeonads.com/2009/09/19/microsoft-sues-the-bad-guys/</feedburner:origLink></item>
		<item>
		<title>RTB Part II: Supply supply supply!</title>
		<link>http://feedproxy.google.com/~r/MikeOnAds/~3/4tZLrciOtuw/</link>
		<comments>http://www.mikeonads.com/2009/09/19/rtb-part-ii-supply-supply-supply/#comments</comments>
		<pubDate>Sat, 19 Sep 2009 19:34:29 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.mikeonads.com/?p=479</guid>
		<description><![CDATA[Please check out my last post on RTB first.  Since this last post, a pretty big announcements has hit the wire.  Namely, Google has announced Ad Exchange 2.0.  Most significantly:

One of the platform&#8217;s key features is the ability for ad networks and agency buyers to bid on inventory in real-time, letting them [...]]]></description>
			<content:encoded><![CDATA[<p>Please check out my <a href="http://www.mikeonads.com/2009/08/30/rtb-part-i-what-is-it/">last post</a> on RTB first.  Since this last post, a pretty big announcements has hit the wire.  Namely, <a href="http://www.clickz.com/3635010">Google has announced Ad Exchange 2.0</a>.  Most significantly:</p>
<blockquote><p>
One of the platform&#8217;s key features is the ability for ad networks and agency buyers to bid on inventory in real-time, letting them zero in on impression attributes such as geographic location or the presence of advertiser cookies before placing a bid. Yahoo&#8217;s Right Media ad exchange does not currently offer bidding in real-time, though it is available through some smaller ad marketplaces.
</p></blockquote>
<p>That&#8217;s right folks &#8212; Google&#8217;s real time exchange is coming.  In this post we&#8217;ll talk about who is jumping on the RTB band-wagon on the supply side, and some implications this is going to have on the industry.</p>
<h3>Ok Who&#8217;s In</h3>
<p>Ok, so Google is doing it?  Who else? Over the past few months pretty much any aggregator of supply has launched, announced or started work on some sort of RTB capability.  All major exchanges &#8212; Yahoo&#8217;s Right Media, Microsoft&#8217;s AdECN and Google&#8217;s AdEx have RTB integrations in the works.  Of the pub aggregators, AdMeld &#038; PubMatic are live and Rubicon is actively working on a solution.  As mentioned, FAN has been live with Myspace inventory for a while and there are a number of other parties, such as ContextWeb, AdBrite and OpenX, entering the space.  The short summary is, over the next 12 months we can expect <b>billions</b> of daily impressions hitting hundreds of millions of unique users to become available RTB.</p>
<h3>Death of the Traditional Ad Network</h3>
<p>This is going to have huge implications for the display advertising space &#8212; primarily, the traditional ad-network model is on it&#8217;s last legs.  Most traditional ad-networks today thrive because they have large business development teams that have developed deep relationships with supply.  Ad.com, Specific Media &#038; ValueClick all have large publisher bases that they rep to agencies.  This posed a large difficult hurdle for new networks to overcome and effectively created a catch-22 for any new network entering the space.  To get media dollars a network needs reach, but to get publisher deals a network needs media dollars.</p>
<p>This all changes when there are billions of biddable impressions out there.  In this new world, any new network has instant access to the reach that historically would take years to build up.  Now <b>anybody</b> can walk into an agency and claim to have a reach of over 100 million unique users.</p>
<p>Now of course this isn&#8217;t totally new.  Right Media opening up Yahoo inventory to the world back in 2007 started this process and a number of companies have managed to start very succesful network (or &#8220;exchange desk&#8221;) businesses on this platform.  AdECN, AdEx, Admeld, PubMatic and Rubicon take this to a new level as this opens up MSN, the DFP publisher base and the majority of the Comscore 1000 list!</p>
<h3>Can Technology Finally Win?</h3>
<p>I&#8217;ve written in the past about <a href="http://www.mikeonads.com/2008/06/03/the-plight-of-the-ad-technology-startup/">the plight of the ad-technology startup</a>.  The short summary is this &#8212; technology is great, but the lions share of revenue today comes from <b>media</b> not <b>tech</b>.</p>
<p>As access to inventory becomes commodity marketers and brands will inevitably start focusing on results over the ability to simply spend the budget.  With everyone on an even playing field it&#8217;ll be easy for a marketer to compare the results from one buying network to the next &#8212; which means technology will finally matter.  </p>
<p>There are already a number of successful technology focused startups who focus on exchange buying &#8212; and a couple that are simply building cross-exchange buying tools.  Expect this to become the next hot space for startups in the advertising world.</p>
<h3>Behavior behavior behavior!</h3>
<p>The traditional problem with behavioral buying, whether remarketing or using third party data provided by companies like IXI, Exelate or Blue Kai, has always been reach.  We all know that remarketing works wonders and has amazing ROI, but unless you can actually <b>find</b> your users on the web it&#8217;s hard to spend a significant amount of money this way.</p>
<p>With billions of impressions that of course changes &#8212; the probability of finding a user across the many RTB platforms becomes easier and easier and hence the actual required reach of any given behavioral segment becomes smaller and smaller.  This in itself is going to make data-focused businesses more feasible and also open up a world of possibilities of highly targeted and focused media-campaigns and very granular behaviors.</p>
<h3>Next Up</h3>
<p>Ok, enough RTB for the day.  Next up &#8211;> demand demand demand!  Who are the new players that are taking advantage of this new RTB revolution and innovating both from a business model &#038; technology perspective.</p>
<img src="http://feeds.feedburner.com/~r/MikeOnAds/~4/4tZLrciOtuw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mikeonads.com/2009/09/19/rtb-part-ii-supply-supply-supply/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		<feedburner:origLink>http://www.mikeonads.com/2009/09/19/rtb-part-ii-supply-supply-supply/</feedburner:origLink></item>
		<item>
		<title>RTB Part I Followup</title>
		<link>http://feedproxy.google.com/~r/MikeOnAds/~3/QO3ykLktRUU/</link>
		<comments>http://www.mikeonads.com/2009/09/19/rtb-part-i-followup/#comments</comments>
		<pubDate>Sat, 19 Sep 2009 19:14:37 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[RTB]]></category>

		<guid isPermaLink="false">http://www.mikeonads.com/?p=476</guid>
		<description><![CDATA[Ok, so in the last post I explained what Real Time Bidding (RTB) was.  Greg Yardley wrote a response on his blog which made me realize that I didn&#8217;t spend quite enough time on the technical implications of RTB.  He wrote:

[...] If you’re using real-time bidding, and you’re buying one impression out of [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, so in the <a href="http://www.mikeonads.com/2009/08/30/rtb-part-i-what-is-it/">last post</a> I explained what Real Time Bidding (RTB) was.  Greg Yardley <a href="http://yardley.ca/2009/09/04/real-time-bidding-sounds-painful/">wrote a response on his blog</a> which made me realize that I didn&#8217;t spend quite enough time on the technical implications of RTB.  He wrote:</p>
<blockquote><p>
[...] If you’re using real-time bidding, and you’re buying one impression out of a hundred, it’s got to pay the cost of the ninety-nine other decisions not to buy. [...] I think you’ve got to have as close to real-time reporting as possible. [...] Finally, your models have got to account for the data that can’t arrive in real-time, or you’re going to put your efficiency gains at risk. [...]</p>
<p>Add all of the above up, and you may be wishing you stuck with your predefined rule sets.
</p></blockquote>
<p>So I guess I should clarify &#8212; building a <b>real time bidder</b> is technically almost exactly as complex as building a performance aware ad-server &#8212; it needs all the same pieces:<br />
* Decisioning algorithms<br />
* Targeting &#038; frequency tracking<br />
* Server-side cookie store<br />
* Log Collection &#038; Aggregation Pipelines<br />
* Reporting &#038; Analytics<br />
* Budgeting &#038; Campaign Pacing<br />
* A Trafficking interface</p>
<p>This is certainly not an undertaking to take lightly.  Many developer years go into building a scalable serving platform &#8212; so yes, hiring the talent and building out the infrastructure to build a scalable bidder is certainly an expensive proposition.  But also, note that if you <b>already have</b> an adserver, it likely has a lot of the features listed above.</p>
<p>Put it another way &#8212; Real Time Bidding allows you to plugin <b>your</b> intelligence into a massive pool of inventory.  If you don&#8217;t have any intelligence yet, obviously that will be a significant investment!  I&#8217;ll talk more about building &#8220;bidders&#8221; in future posts.</p>
<p>Now to continue the intro on RTB.</p>
<img src="http://feeds.feedburner.com/~r/MikeOnAds/~4/QO3ykLktRUU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mikeonads.com/2009/09/19/rtb-part-i-followup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mikeonads.com/2009/09/19/rtb-part-i-followup/</feedburner:origLink></item>
		<item>
		<title>Michael Rubenstein Joining AppNexus</title>
		<link>http://feedproxy.google.com/~r/MikeOnAds/~3/Fz8RaAV8Gek/</link>
		<comments>http://www.mikeonads.com/2009/09/09/michael-rubenstein-joining-appnexus/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 03:01:27 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[appnexus]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://www.mikeonads.com/?p=472</guid>
		<description><![CDATA[A little aside from the personal blogging &#8212; I&#8217;m extremely excited to announce that Michael has joined the AppNexus executive team! Press release below:

AppNexus Names Google/DoubleClick Ad Exchange Executive as President
Company Prepares for Growth in Emerging Fields of Cloud Computing and Real-Time Advertising
NEW YORK, NY – September 9, 2009 &#8211; AppNexus, Inc., a cloud computing [...]]]></description>
			<content:encoded><![CDATA[<p>A little aside from the personal blogging &#8212; I&#8217;m extremely excited to announce that Michael has joined the AppNexus executive team! Press release below:</p>
<blockquote><p>
AppNexus Names Google/DoubleClick Ad Exchange Executive as President</p>
<p>Company Prepares for Growth in Emerging Fields of Cloud Computing and Real-Time Advertising</p>
<p>NEW YORK, NY – September 9, 2009 &#8211; AppNexus, Inc., a cloud computing and real-time online advertising platform company, today announced that Michael Rubenstein has been named the company&#8217;s President, reporting to CEO and co-founder Brian O&#8217;Kelley.</p>
<p>Mr. Rubenstein is a 10-year veteran of Google/DoubleClick, where he has served in a variety of business leadership and executive management roles.  Mr. Rubenstein most recently served as Google’s Director of Ad Exchange.  Prior to Google’s acquisition of DoubleClick, Mr. Rubenstein founded and served as Vice President &#038; General Manager of DoubleClick Ad Exchange, reporting to the company&#8217;s CEO David Rosenblatt.</p>
<p>“We are delighted to welcome someone of Michael’s extensive online experience, vision, and record of accomplishment to the AppNexus team,” said Brian O’Kelley, CEO of AppNexus.  &#8220;AppNexus&#8217;s business is at the intersection of the most exciting emerging segments of the internet, including cloud computing and real-time online advertising, and Michael&#8217;s experience successfully commercializing new offerings will be an invaluable asset to the company as we continue our growth .  This appointment is an important step in the company’s ongoing expansion and underscores our commitment to adding top industry talent.”</p>
<p>About AppNexus, Inc.<br />
AppNexus is a cloud computing and real-time online advertising platform company based in New York City. AppNexus’s customers and partners include the largest buyers and sellers of online advertising.  AppNexus’s proprietary technology platforms and cloud infrastructure are powering the development of the real-time advertising ecosystem.  The company was founded in 2007 by Brian O’Kelley and Mike Nolet, and is backed by investors including Venrock, Kodiak Venture Partners, and First Round Capital.  More information can be obtained by visiting AppNexus online at www.appnexus.com<http://www.appnexus.com/>.
</p></blockquote>
<img src="http://feeds.feedburner.com/~r/MikeOnAds/~4/Fz8RaAV8Gek" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mikeonads.com/2009/09/09/michael-rubenstein-joining-appnexus/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.mikeonads.com/2009/09/09/michael-rubenstein-joining-appnexus/</feedburner:origLink></item>
		<item>
		<title>Silicon Alley Insider, ad refreshes and crappy IAB Guidelines</title>
		<link>http://feedproxy.google.com/~r/MikeOnAds/~3/gXILz3vzkJM/</link>
		<comments>http://www.mikeonads.com/2009/09/03/silicon-alley-insider-ad-refreshes-and-crappy-iab-guidelines/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 01:14:25 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[iab]]></category>
		<category><![CDATA[silicon alley insider]]></category>

		<guid isPermaLink="false">http://www.mikeonads.com/?p=460</guid>
		<description><![CDATA[Checking my news this morning I stumbled upon This Silicon Alley Insider post.  The post has a simple AJAX application inside of it which lets people page through the &#8220;Top 10 iPhone Apps for Students&#8221;:

What&#8217;s interesting about this application is that every time you page left or right it refreshes both the 728&#215;90 ad [...]]]></description>
			<content:encoded><![CDATA[<p>Checking my news this morning I stumbled upon <a href="http://www.businessinsider.com/10-great-iphone-apps-for-students-2009-9#istudiez-pro-299-1">This Silicon Alley Insider</a> post.  The post has a simple AJAX application inside of it which lets people page through the &#8220;Top 10 iPhone Apps for Students&#8221;:</p>
<p><center><a href="http://www.mikeonads.com/wp-content/uploads/2009/09/screen-shot-2009-09-03-at-81628-am.png"><img src="http://www.mikeonads.com/wp-content/uploads/2009/09/screen-shot-2009-09-03-at-81628-am-300x159.png" alt="" title="screen-shot-2009-09-03-at-81628-am" width="300" height="159" class="alignnone size-medium wp-image-461" /></a></center></p>
<p>What&#8217;s interesting about this application is that every time you page left or right it refreshes both the 728&#215;90 ad unit at the top and the 300&#215;250 on the right &#8212; with <b>no timer</b>.  Try it&#8230; in the span of 2 seconds I managed to get 20 ad views on this page &#8212; almost all for American Express and IBM.  Complex AJAX applications pose an interesting challenge for publishers &#8212; think a live flash based stock ticker or Pandora &#8212; if someone is staring at a web page all day but doesn&#8217;t actually navigate away, it certainly doesn&#8217;t make sense to only show them a single ad.  This on the other-hand seems to be taking that to another extreme.  I mean, come on, most blogs will simply post a list of 10 applications and not a silly widget which appears to only be there to generate ad-views.  Here&#8217;s a little snapshot from my HTTP sniffer:</p>
<p><center><img src="http://www.mikeonads.com/wp-content/uploads/2009/09/screen-shot-2009-09-03-at-81943-am.png" alt="" title="screen-shot-2009-09-03-at-81943-am" width="500" height="178" class="alignnone size-full wp-image-463" /></center></p>
<p>Now the IAB recently published guidelines to specifically address this issue in their <a href="http://www.iab.net/iab_products_and_industry_services/508676/guidelines/Rich_Media_Measurement">IAB Rich Internet Application Guidelines</a>.  I thought I&#8217;d go check these out, find a quote that specifically addressed SIA from showing 20 ads within just a few seconds.  Guess what&#8230; <b>technically</b> SIA is following the rules:</p>
<blockquote><p>
User activity considered significant enough to trigger ad-counting is as follows:</p>
<p>Mouse Button Usage<br />
Keyboard Activity, Typing (except when used to navigate away from the page alt-tab, etc).</p>
<p>This counting method closely resembles the current IAB Ad-Impression counting guideline because of the clear linkage of certain pre-identified user-initiated events with ad counting.
</p></blockquote>
<p>This highlights a typical problem with IAB guidelines.  There are so many parties voicing opinions in the working groups that they are made to be so broad that following them doesn&#8217;t really mean anything.  </p>
<p>Having my eye on dynamic applications today I noticed that Facebook has implemented ad refreshes while browsing photo pages.  This makes a lot of sense to me, users can spend a significant amount of time browsing photos and it certainly makes sense to refresh the ad-content after a certain amount of time. It looks like they&#8217;ve set a 60 second timer, and only refresh ads if a user actually clicks through to a new photo after that timer has expired &#8212; much better!</p>
<img src="http://feeds.feedburner.com/~r/MikeOnAds/~4/gXILz3vzkJM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mikeonads.com/2009/09/03/silicon-alley-insider-ad-refreshes-and-crappy-iab-guidelines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mikeonads.com/2009/09/03/silicon-alley-insider-ad-refreshes-and-crappy-iab-guidelines/</feedburner:origLink></item>
		<item>
		<title>RTB Part I: What is it?</title>
		<link>http://feedproxy.google.com/~r/MikeOnAds/~3/md3X7OyrmBY/</link>
		<comments>http://www.mikeonads.com/2009/08/30/rtb-part-i-what-is-it/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 02:20:45 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ad-exchanges]]></category>
		<category><![CDATA[real time bidding]]></category>
		<category><![CDATA[right media]]></category>
		<category><![CDATA[RTB]]></category>

		<guid isPermaLink="false">http://www.mikeonads.com/?p=432</guid>
		<description><![CDATA[If you&#8217;ve been following popular blogs &#038; trade magazines you&#8217;ve probably heard the phrase &#8220;Real Time Bidding&#8221; (RTB) pop up here and there.  Adexchanger brought it up in this post:

With RTB, exchange participants have a new feature coming for the buy side which should make agency business intelligence mucky-mucks and advertisers delirious after watching [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve been following popular blogs &#038; trade magazines you&#8217;ve probably heard the phrase &#8220;Real Time Bidding&#8221; (RTB) pop up here and there.  Adexchanger brought it up in <a href="http://www.adexchanger.com/ad-exchange-news/real-time-bidding-rtb-display-ad-exchange/">this post<a>:</p>
<blockquote><p>
With RTB, exchange participants have a new feature coming for the buy side which should make agency business intelligence mucky-mucks and advertisers delirious after watching the development of yield management tools for the publisher or supply-side.
</p></blockquote>
<p>Darren Herman brought up the topic <a href="http://www.darrenherman.com/2009/07/15/agency-demand-platforms/">here</a> saying:</p>
<blockquote><p>
I don’t know how this is a hurdle, but I want to point out that saying “real-time” is the “cool” thing to say right now but there is almost no substance behind it to the trained eye.
</p></blockquote>
<p>Yet, nobody seems to be explaining either what RTB is, who&#8217;s doing it or what the implications of it are! This seems like the perfect opportunity for me to pickup blogging again (sorry for the long absence).</p>
<h2>A Brief History Lesson</h2>
<p>Real Time Bidding is the next evolution in how we deliver ads.  First, a little refresher in how the traditional adserving process works.  Take an ad-request that involves a publisher, an ad-network and an agency (if any of this is new to you, please <a href="http://www.mikeonads.com/2007/05/01/the-ad-exchange-model-part-i/">read this post first</a>):</p>
<p><center><img src="http://www.mikeonads.com/wp-content/uploads/2009/08/picture-1.png" alt="" title="picture-1" width="492" height="254" class="alignnone size-full wp-image-434" /></center></p>
<p>The first thing to note is that the entire process is driven by the <b>browser</b> and not by either the publisher, network or agency adserver.  Each time one party passes off the ad-request it&#8217;s sent off to the next. there is no impression level feedback loop or communication between the three serving systems.  This leads to a number of challenges:</p>
<ul>
<li><b>Long latency in ad-delivery.</b>  Lots of redirects, means lots of time for the browser to  download content.</li>
<li><b>Lack of integration between systems.</b>  The browser naturally drops request and the integration between systems is a manual trafficking exercise.  This leads to discrepancies, human error in ad scheduling and and overall pain for operations teams.</li>
<li><b>Pricing Inefficiencies</b>.  Perhaps most importantly the fact that these systems aren&#8217;t integrated means that it&#8217;s hard to buy intelligently.  Buyers &#038; algorithms must define a limited number of fixed trading rules which are implemented manually by operations teams.  Additionally, the lack of integration between systems means behavioral data doesn&#8217;t translate directly and frequency caps are local to each adserver  &#8212; strong limitations in a space that promises accountability and the opportunity to buy intelligently!</li>
</ul>
<h2>So what is RTB?</h2>
<p>Ok, so we all know this world &#8212; so what is RTB?   Real-Time bidding is exactly that &#8212; real time integration between serving systems.  Rather than simply passing one impression off to the next system the sell-side adserver <b>asks</b> buyers whether or not they want to show an ad at that given time, and if so, how much they are willing to pay. </p>
<p><center><img src="http://www.mikeonads.com/wp-content/uploads/2009/08/picture-2.png" alt="" title="picture-2" width="405" height="390" class="alignnone size-full wp-image-435" /></center></p>
<p>It almost looks too simple&#8230; doesn&#8217;t it?  So why go real time?  Well, it addresses all the issues shown above.  Fewer client side hops results in faster ad-serving.  Deep integration means lower discrepancies <b>and</b> a trail of accountability.  No longer will can ad-networks claim &#8220;it wasn&#8217;t me&#8221; when a bad ads gets shown as the publisher will know exactly which as is served when.  But perhaps most exciting &#8212; since the publisher asks each advertiser on <b>every</b> impression what he&#8217;s willing to pay he also maximizes revenue as every impression goes to the highest paying buyer.</p>
<h2>Seems too simple</h2>
<p>Now if you&#8217;re new to this industry the obvious question is &#8212; why wasn&#8217;t like this in the first place?   First, you have to remember that the majority of adservers are focused on prioritization and not maximizing revenue or eCPM.  These systems don&#8217;t function in the RTB world as they assume that delivery is a given and are trying to fulfill allocations &#038; priorities.  It&#8217;s much harder to estimate the effective CPM of all possible campaign/creative combinations versus trying to make sure that each of 20 campaigns gets it&#8217;s allocated share of impressions.</p>
<p>It is also worth mentioning that the idea itself isn&#8217;t particularly new.  We were talking about this at Right Media over two years ago when I was still working there and Fox Audience Network has been live with a client-side real-time auction since 2007!   It is also not until recently that the costs of hardware, bandwidth &#038; CPU cycles have come down enough whereby adservers can cost-effectively decision on ads that they aren&#8217;t guaranteed to win.  </p>
<h2>What about Ad Exchanges?</h2>
<p>Now if you read the post &#8220;Ad Exchange Model Part I&#8221; I referenced above, you may be wondering&#8230;  Doesn&#8217;t Right Media solve all these problems? In theory, yes.  Right Media was the first auction-based system which synchronized adserving across all parties who adopted the platform.  Networks, Publishers and Advertisers who adopted either NMX, PMX or AMX respectively were integrated on a per-impression basis and didn&#8217;t suffer the problems listed above.  There is one big issue with the traditional Right Media Exchange model &#8212; it requires everybody to adopt the same technology platform.</p>
<p>As soon as Yahoo adopted the RM platform every smart startup &#038; technology player started calling wanting to integrate <b>their</b> secret sauce into the exchange.  Therein lay the challenge &#8212; all these buying systems had to dumb down their algorithms into a limited number of buying rules (line items) to actually integrate.  This is of course why Right Media is starting to talk publicly about RTB recently.</p>
<p>Now some of you may have read this post on the <a href="http://www.rightmediablog.com/blog/2009/08/27/get-real-time/">Right Media Blog</a>:</p>
<blockquote><p>
If all of this sounds awfully similar to what Right Media already does on behalf of our demand and supply customers on every ad request, you’re correct: We’ve been doing real-time bidding for years. We were the first to offer it, we became the largest provider, and we are still the largest supply pool of real-time, bidded, non-guaranteed inventory.
</p></blockquote>
<p>I think the above statement has the potential to do a lot of hurt in people&#8217;s understanding of real time <b>bidding</b> so I&#8217;d like to throw out a little clarification:  Right Media pioneered impression level <b>auctions</b> years ago, choosing the highest paying campaign based on either a <b>pre-registered</b> fixed CPM bid on a line item or a run-time predicted eCPM using the internal optimization system, but has not yet been accepting <b>real-time bids</b> from third parties.  That being said &#8212; it sounds like they&#8217;re working on it, which is exciting news!</p>
<p></p>
<p>Ok, that&#8217;s enough for now.  <b>In Part II</b> I&#8217;ll talk more about who&#8217;s doing it (or who isn&#8217;t?) and what does this all mean for industry participants.</p>
<img src="http://feeds.feedburner.com/~r/MikeOnAds/~4/md3X7OyrmBY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mikeonads.com/2009/08/30/rtb-part-i-what-is-it/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		<feedburner:origLink>http://www.mikeonads.com/2009/08/30/rtb-part-i-what-is-it/</feedburner:origLink></item>
		<item>
		<title>Anti-malvertising.com</title>
		<link>http://feedproxy.google.com/~r/MikeOnAds/~3/Jcg3mpKFPsw/</link>
		<comments>http://www.mikeonads.com/2009/08/30/anti-malvertisingcom/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 02:08:54 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.mikeonads.com/?p=451</guid>
		<description><![CDATA[I&#8217;m massively late in writing about this, but better late than never!
Google has  updated their special search site setup to help fight malvertising: anti-malvertising.com.
In addition to a search engine to help people do background checks on prospective buyers, the updated site contains a slew of tips for that EVERYBODY should ready through.  Kudos [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m massively late in writing about this, but better late than never!</p>
<p>Google has  updated their special search site setup to help fight malvertising: <a href="http://www.anti-malvertising.com/">anti-malvertising.com</a>.</p>
<p>In addition to a search engine to help people do background checks on prospective buyers, the updated site contains a slew of tips for that <b>EVERYBODY</b> should ready through.  Kudos to the Google team for spearheading the effort to fight malvertising!</p>
<img src="http://feeds.feedburner.com/~r/MikeOnAds/~4/Jcg3mpKFPsw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mikeonads.com/2009/08/30/anti-malvertisingcom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.mikeonads.com/2009/08/30/anti-malvertisingcom/</feedburner:origLink></item>
		<item>
		<title>Two Upcoming Conferences</title>
		<link>http://feedproxy.google.com/~r/MikeOnAds/~3/oSQKA3mDrUs/</link>
		<comments>http://www.mikeonads.com/2009/05/10/two-upcoming-conferences/#comments</comments>
		<pubDate>Mon, 11 May 2009 02:33:08 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.mikeonads.com/?p=427</guid>
		<description><![CDATA[Seems May is malware month!  There are two events coming up &#8212; The Anti Spyware Coalition on May 19th and the The Admonsters AdOps 360 in New York on May 21st.  I&#8217;ll be speaking at AdOps and on a panel at ASC &#8212; would love to get together if any of you are [...]]]></description>
			<content:encoded><![CDATA[<p>Seems May is malware month!  There are two events coming up &#8212; The <a href="http://antispywarecoalition.org/events/may2009.php">Anti Spyware Coalition</a> on May 19th and the <a href="http://www.admonsters.org/archives/2009/05/topics-announced-for-admonsters-ad-ops-360%c2%b0-new-york-may-21/">The Admonsters AdOps 360</a> in New York on May 21st.  I&#8217;ll be speaking at AdOps and on a panel at ASC &#8212; would love to get together if any of you are going to be attending.  Shoot me a note at mike@mikeonads.com if you&#8217;re interested in meeting up.</p>
<img src="http://feeds.feedburner.com/~r/MikeOnAds/~4/oSQKA3mDrUs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mikeonads.com/2009/05/10/two-upcoming-conferences/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.mikeonads.com/2009/05/10/two-upcoming-conferences/</feedburner:origLink></item>
		<item>
		<title>I don’t care who you say you are, what do you DO?</title>
		<link>http://feedproxy.google.com/~r/MikeOnAds/~3/GpYlba60Wr4/</link>
		<comments>http://www.mikeonads.com/2009/05/03/i-dont-care-who-you-say-you-are-what-do-you-do/#comments</comments>
		<pubDate>Sun, 03 May 2009 16:39:32 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[ad networks]]></category>
		<category><![CDATA[ad-exchanges]]></category>
		<category><![CDATA[adserving]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[online advertising]]></category>

		<guid isPermaLink="false">http://www.mikeonads.com/?p=388</guid>
		<description><![CDATA[One of the things that  boggles my mind is how massively fragmented and confusing the display world still is.  It&#8217;s been over three years since the first ad-exchange launched yet the world hasn&#8217;t significantly changed.  What makes matters more confusing is that there is no consistent terminology to describe what a company [...]]]></description>
			<content:encoded><![CDATA[<p>One of the things that  boggles my mind is how massively fragmented and confusing the display world still is.  It&#8217;s been over three years since the first ad-exchange launched yet the world hasn&#8217;t significantly changed.  What makes matters more confusing is that there is no consistent terminology to describe what a company does.  It seems everybody describes themselves as either a platform, marketplace or exchange &#8212; so what&#8217;s the difference? </p>
<p>A company can call itself a publisher, an agency, a network, a broker, a marketplace, an exchange, an optimizer &#8212; what does it all mean?  What&#8217;s the difference between Right Media and Contextweb?  Admeld and Rubicon?  That&#8217;s really the problem &#8212; <b>today&#8217;s commonly used labels are useless</b>.</p>
<p>Instead of evaluating a company based on labels, evaluate it based on the services it provides, technology it has, the partners it works with, the revenue model and the media revenue it facilitates.   Note &#8212; below I focus entirely on companies that in some shape or form touch an *impression* &#8212; either as a technology provider, buyer or seller.  There are peripheral companies that provide a whole world of supporting services, but I&#8217;m leaving those out for now to avoid confusion.</p>
<h2>Services</h2>
<p>Each company provides certain core services to partners, customers and vendors. These primarily center around the relationship the company has with the media that flows through it.</p>
<table cellpadding=5 cellspacing=0>
<tr>
<th>Service</th>
<th>Description</th>
<th>Example</th>
<th>Implication</th>
</tr>
<tr>
<td valign=top>
<b>Selling of Owned &#038; Operated Media</b>
</td>
<td valign=top>The company represents and sells media inventory that it owns.</td>
<td valign=top><a href="http://apt.yahoo.com">Yahoo</a> selling inventory on Yahoo Mail.<br /><a href="http://www.nytimes.com">New York Times</a> selling it&#8217;s inventory
</td>
<td valign=top>
Company&#8217;s sole objective is to maximize CPMs and revenue.
</td>
</tr>
<tr>
<td valign=top><b>Arbitrage of Off-Network Media</b></td>
<td valign=top>
The company resells media inventory that it acquires from other services.</td>
<td valign=top><a href="http://apt.yahoo.com">Yahoo</a> selling users on the newspaper consortium.<br /><a href="http://www.rubiconproject.com/">Rubicon</a> selling inventory from it&#8217;s network of publishers.
</td>
<td valign=top>
Company takes arbitrage of the inventory which means that it&#8217;s incentivized to buy low and sell high to maximize it&#8217;s own revenue rather than that of the inventory owner or the advertiser.
</td>
</tr>
<tr>
<td valign=top><b>Inventory or Advertiser Representation Services</b></td>
<td valign=top>The company helps inventory owners sell inventory at a fixed margin.</td>
<td valign=top><a href="http://www.admeld.com/">AdMeld</a> serving as a direct rep for publishers remant<br /><a href="http://www.xplusone.com/">X+1</a> managing all campaigns for a specific advertiser or agency</td>
</td>
<td valign=top>
Company is incentivized to maximize revenue for the inventory owner or ROI for the advertiser.
</td>
</tr>
<tr>
<td valign=top><b>Data Aggregation</b></td>
<td valign=top>Company aggregates user data and resells it</td>
<td valign=top><a href="http://www.bluekai.com/">BlueKai&#8217;s</a> data exchange<br />
<a href="http://www.exelate.com/new/index.html">Exelate&#8217;s</a> data marketplace</td>
<td valign=top>Company hates Safari and IE8</td>
</table>
<h2>Technologies</h2>
<p>There are certain core technologies that <b>define</b> what a company does.  Note that you will find technologies such as dynamic creative optimization, behavioral classification and contextualization missing from the below list as they are differentiators &#8212; they don&#8217;t define what a company does but provide a competitive advantage over the competition.</p>
<table cellpadding=5 cellspacing=0>
<tr>
<th>Technology</th>
<th>Description</th>
<th>Example</th>
<th>Implication</th>
</tr>
<tr>
<td valign=top><b>Internally available adserver</b></td>
<td valign=top>Company has a proprietary in-house adserving system.</td>
<td valign=top><a href="http://www.specificmedia.com">Specific Media</a> has it&#8217;s own proprietary adserving technology that it uses to manage it&#8217;s network.</p>
<td valign=top>Company sees technology as a competitive asset against competitors.</td>
</td>
</tr>
<tr>
<td valign=top><b>Externally available adserver</b></td>
<td valign=top>An adserver that the company licenses (either free or paid) to third party companies to manage their own online media.</td>
<td valign=top><a href="http://www.openx.org/ad-server/get-openx-hosted">OpenX</a> providing their hosted adserver to publishers<br /><a href="http://www.invitemedia.com/">Invite Media&#8217;s</a> cross-exchange Bid Manager platform<br /><a href="https://www.google.com/admanager/">Google&#8217;s Ad Manager</a></td>
<td valign=top>Multiple companies using the same platform provides both aggregation and consolidation opportunities. Technology in this case helps build an open platform (since everyone has access).</td>
</tr>
<tr>
<td valign=top><b>Internal Trading</b></td>
<td valign=top>Inventory run through the externally available adserver can be bought and sold internally</td>
<td valign=top><a href="http://www.doubleclick.com/products/advertisingexchange/index.aspx">Google&#8217;s AdEx</a> allows multiple participants to use the externally available adserver to buy and sell media.<br />
<a href="http://www.rightmedia.com/content/products/network-media-exchange/2,24.php">Right Media&#8217;s NMX</a> customers can buy and sell media to each-other directly.</td>
<td valign=top>There is a network effect related to the size of the platform.  The more participants the more value there is for everybody involved.</td>
</tr>
<tr>
<tr>
<td valign=top><b>Buying APIs</b></td>
<td valign=top>Company provides an API, either real-time or non, through which buyers can upload creatives and manage campaigns.</td>
<td valign=top><a href="http://www.rightmedia.com/solutions/apis/">Right Media</a> allows it&#8217;s customers to traffic line items and creatives using it&#8217;s APIs.</td>
<td valign=top>Company is <b>empowering</b> buyers to be smarter by enabling deeper integration across platforms.  The stronger the APIs, the more the buyers can spend. </td>
</tr>
<tr>
<td valign=top><b>Selling API</b></td>
<td valign=top>Company provides a real-time API through which sellers can ask in real-time how much company is willing to pay for an impression.</td>
<td valign=top>Right Media and Advertising.com respond in real-time to a &#8216;get-price&#8217; request from Fox Interactive Media&#8217;s auction technology</td>
<td valign=top>Company can value inventory in real-time.</td>
</tr>
</table>
<h2>Size Matters</h2>
<p>Last but not least, the size and the partnerships of a company matters.  I&#8217;ve <a href="http://www.mikeonads.com/2008/06/03/the-plight-of-the-ad-technology-startup/">written before</a> about the perils of building technology in a void.  You can have the most amazing platform that provides great services, but if you&#8217;re only running a few thousand dollars a month it&#8217;s all moot in the grand scheme of things.  </p>
<p>Size can be measured either in impressions or revenue, the latter being far more telling.  Getting a billion impressions of traffic a day isn&#8217;t hard these days &#8212; between Facebook and Myspace alone you probably have close to fifteen billion impressions of traffic running <b>daily</b>.</p>
<p>There&#8217;s a huge difference between a partnership and a media relationship.  If you&#8217;re willing to foot the minimum monthly bill, anybody can buy Yahoo&#8217;s inventory through the Right Media platform.  That doesn&#8217;t say much about who you are as a company.   A partnership is different &#8212; it might  be deep API integrations tying two platforms together or co-selling and marketing a joint solution.</p>
<h2>What does it all mean?</h2>
<p>Phew&#8230; that was a long list, so what does it all mean?  Well, the above provides a slightly less fuzzy framework than the classical &#8220;ad-network&#8221;, &#8220;marketplace&#8221; or &#8220;exchange&#8221; commonly used labels to describe a company.  Let&#8217;s look at a few examples:</p>
<p><b>Rubicon Project</b> provides publisher representation services through it&#8217;s network optimization platform, <del>arbitrages inventory through it&#8217;s internal sales team has both an internal</del> and has an externally available adserver (<del>one for the sales team</del> and one for publishers) and is rumored to be working on real time buying APIs.   That&#8217;s a hell of a lot more descriptive than &#8220;publisher aggregator&#8221; or &#8220;network optimizer&#8221;.  The one thing I always find confusing about rubicon is that it their incentives seem to be fundamentally misaligned.  How can you both arbitrage inventory and serve as a publisher representative?  <b>Updated (5/3/09 @ 8pm EST) &#8212;  I seem to be misinformed.  Per comments, Rubicon does not sell inventory directly to agencies.</b></p>
<p>Compare this to <b>AdMeld</b> which provides publisher representation services through it&#8217;s network optimization platform &#8212; an externally available adserver &#8212; and provides buying APIs (currently via passback).  So what&#8217;s the difference with Rubicon?  Well, one has an internal ad-network and the other doesn&#8217;t &#8212; different incentives.  Publishers are starting to treat Rubicon as another ad-network in the daisy chain whereas AdMeld sells all remnant inventory as a trusted partner.</p>
<p><b>ContextWeb</b> has an internal adserver (with a self-service interface&#8230; I don&#8217;t count that as external), they arbitrage inventory, and provide buying APIs.   Compare this to <b>Right Media</b> which has an externally available adserver, buying and selling APIs, internal trading, data aggregation and arbitrages media (through BlueLithium/Yahoo Network).  Both are &#8220;exchanges&#8221;, but clearly there is a pretty big difference between the two!</p>
<p>Of course if you get to <b>Google</b> your mind starts to explode just a little bit &#8212; as <b>they do everything</b>.  Seriously.  They buy &#038; sell, have multiple adservers, provide buying APIs, internal trading, data aggregation&#8230; </p>
<h2>Final Thoughts</h2>
<p>I hope this post has given you some ways to start thinking about companies in the online ad space.  I&#8217;d love to hear your feedback in the comments &#8212; what core services &#038; technologies am I missing?</p>
<p>Now &#8212; next time someone says &#8212; &#8220;I&#8217;m an exchange&#8221;, why not ask &#8212; &#8220;Ok, that&#8217;s great, but what do you <b>really do</b>.&#8221;  </p>
<img src="http://feeds.feedburner.com/~r/MikeOnAds/~4/GpYlba60Wr4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.mikeonads.com/2009/05/03/i-dont-care-who-you-say-you-are-what-do-you-do/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		<feedburner:origLink>http://www.mikeonads.com/2009/05/03/i-dont-care-who-you-say-you-are-what-do-you-do/</feedburner:origLink></item>
	</channel>
</rss>
