<?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>mediaburst &#187; Martin</title>
	<atom:link href="http://www.mediaburst.co.uk/blog/author/martin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mediaburst.co.uk</link>
	<description>SMS, MMS and Mobile marketing</description>
	<lastBuildDate>Thu, 02 Feb 2012 15:39:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Fixed textbust page&#160;freezes</title>
		<link>http://www.mediaburst.co.uk/blog/fixed-textbust-page-freezes/</link>
		<comments>http://www.mediaburst.co.uk/blog/fixed-textbust-page-freezes/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 16:11:38 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[API & technical]]></category>
		<category><![CDATA[Textburst]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.mediaburst.co.uk/?p=66863</guid>
		<description><![CDATA[We released a textburst update this morning that should fix a page freeze problem encountered by a small number of users over the last few weeks. We first noticed that textburst pages would occasionally freeze a few days before before Christmas and released a temporary fix that solved it for 99% of users. Unfortunately as [...]]]></description>
			<content:encoded><![CDATA[<p>We released a <a title="Online SMS" href="/textburst/">textburst</a> update this morning that should fix a page freeze problem encountered by a small number of users over the last few weeks.</p>
<p>We first noticed that textburst pages would occasionally freeze a few days before before Christmas and released a temporary fix that solved it for 99% of users.</p>
<p>Unfortunately as with most temporary fixes it wasn&#8217;t 100% effective so we&#8217;ve been investigating the root cause since getting back from the holidays.</p>
<p>After many, many hours digging through tens of thousands of lines of log files<span id="more-66863"></span> (it&#8217;s amazing how much logging a debug mode can create) and tweaking code here and there we at last found the cause yesterday afternoon. And two lines of code later it&#8217;s fixed.</p>
<h3>For the technically inclined here&#8217;s a little more information:</h3>
<p>Textburst runs on four web servers, these are set up as two load balanced pairs, one in Derby and one in Manchester. To ensure users stay logged in when switching between servers we store our session data in a MySQL database.</p>
<p>Our MySQL based session store is a slightly tweaked version of the <a href="http://dev.mysql.com/doc/refman/5.1/en/connector-net-tutorials-asp-provider-session-state.html">MySQL session state provider</a> which is in turn based on the <a href="http://msdn.microsoft.com/en-us/library/ms178589.aspx">Microsoft sample session state provider</a>.</p>
<p>Unfortunately it turns out both of these have a bug when handling concurrent connections.</p>
<h4>How things are supposed to work</h4>
<p>When a page is requested it should should check to see if the session is currently locked by another page, wait until it&#8217;s free and then obtain the session data, along with a lock if the page wants write access and then increment an internal Lock ID by one which is used to make sure the same request is locking and unlocking the session.</p>
<h4>What was actually happening</h4>
<p>Requests that wanted read/write access to the session worked exactly as expected, however read-only sessions missed the all important step of waiting until the session was free and simply incremented the Lock ID. This meant that if a read-only request was processed in between the lock and unlock phase of a read/write request it would never be unlocked causing the next read/write request to freeze.</p>
<p>Luckily the ASP.NET session code is designed for this eventuality and after 110 seconds the stuck lock is forcibly removed, unfortunately our users were stuck waiting for this to happen while everything appeared to be frozen.</p>
<h4>Our fix</h4>
<p>We&#8217;ve updated the session provider to always wait until the session is free. To help out others with similar problems we&#8217;ve added this as a comment on the Microsoft sample and will be filing a bug report with MySQL shortly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaburst.co.uk/blog/fixed-textbust-page-freezes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New API&#160;Documentation</title>
		<link>http://www.mediaburst.co.uk/blog/new-api-documentation/</link>
		<comments>http://www.mediaburst.co.uk/blog/new-api-documentation/#comments</comments>
		<pubDate>Mon, 07 Nov 2011 07:00:41 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[API & technical]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[sms]]></category>

		<guid isPermaLink="false">http://www.mediaburst.co.uk/?p=63642</guid>
		<description><![CDATA[We&#8217;ve listened to your feedback and re-written our SMS API documentation. The old version was based an old paper document and had horribly nested pages, whereas you can now see an overview of the entire documentation on a single page. As we were re-writing it we took the chance to make a few other changes [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve listened to your feedback and re-written our <a href="/api/doc/">SMS API documentation</a>. The old version was based an old paper document and had horribly nested pages, whereas you can now see an overview of the entire documentation on a single page.</p>
<p>As we were re-writing it we took the chance to make a few other changes too, don&#8217;t worry though, if you&#8217;re already using the API we haven&#8217;t changed anything, all the old URLs and parameters will still work.<span id="more-63642"></span></p>
<h2>Url Changes</h2>
<p>From now on all API addresses are on api.mediaburst.co.uk rather than sms.message-platform.com, we feel it makes more sense as you can instantly tell it&#8217;s the mediaburst API.</p>
<p>All examples now use SSL for added security, you&#8217;re still able to turn it off though.<br />
We have no plans to disable the old sms.message-platform.com.</p>
<p>So the URL for sending through our simple HTTP API becomes https://api.mediaburst.co.uk/http/send.aspx</p>
<h2>Delivery Receipts</h2>
<p>We&#8217;ve renamed a few of the merge parameters for consistency, when you send a text message you use the To parameter for the mobile number, and now the delivery receipt will too. Don&#8217;t worry though all the old names still work.</p>
<table>
<thead>
<tr>
<th>Field</th>
<th>Old name</th>
<th>New name</th>
</tr>
</thead>
<tbody>
<tr>
<td>Delivery Status</td>
<td>#DELIVERY_STATUS#</td>
<td>#STATUS#</td>
</tr>
<tr>
<td>Destination mobile number</td>
<td>#DEST_ADDR#</td>
<td>#TO#</td>
</tr>
<tr>
<td>Delivery status detail</td>
<td>#ERR_CODE#</td>
<td>#DETAIL#</td>
</tr>
</tbody>
</table>
<h2>Simple HTTP API</h2>
<p>We&#8217;ve clarified which features are available through the HTTP API. If you want advanced features they&#8217;re all available through the XML interface.</p>
<p>Our new simple parameter list now consists of:</p>
<ul>
<li>Username</li>
<li>Password</li>
<li>To</li>
<li>Content</li>
<li>From (Optional – Message originator)</li>
<li>Long (Optional – Allow up to 459 characters)</li>
</ul>
<h2>Email to SMS address changes</h2>
<p>Again to tidy things up, we&#8217;ve changed all email to SMS email addresses to use mediaburst.co.uk rather than message-platform.com.</p>
<p>The new addresses are:</p>
<table>
<tbody>
<tr>
<td>Standard SMS</td>
<td>number@sms.mediaburst.co.uk</td>
</tr>
<tr>
<td>Long SMS</td>
<td>number@longsms.mediaburst.co.uk</td>
</tr>
<tr>
<td>MMS</td>
<td>number@mms.mediaburst.co.uk</td>
</tr>
<tr>
<td>XML</td>
<td>xml@api.mediaburst.co.uk</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaburst.co.uk/blog/new-api-documentation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New feature: Upload excel spreadsheets in&#160;textburst</title>
		<link>http://www.mediaburst.co.uk/blog/new-feature-upload-excel-spreadsheets-in-textburst/</link>
		<comments>http://www.mediaburst.co.uk/blog/new-feature-upload-excel-spreadsheets-in-textburst/#comments</comments>
		<pubDate>Thu, 10 Mar 2011 12:35:45 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Textburst]]></category>
		<category><![CDATA[csv]]></category>
		<category><![CDATA[excel]]></category>
		<category><![CDATA[sms]]></category>
		<category><![CDATA[upload]]></category>

		<guid isPermaLink="false">http://www.mediaburst.co.uk/?p=40612</guid>
		<description><![CDATA[We added a few new features to our online sms application, textburst, today. You can now upload spreadsheets, delete your sent messages and use it with Internet Explorer 9. Upload contacts from Excel spreadsheets We&#8217;ve listened to your feedback about uploading CSV files, now you can upload Excel files directly into textburst without having to [...]]]></description>
			<content:encoded><![CDATA[<p>We added a few new features to our <a href="/textburst/">online sms</a> application, textburst, today. You can now upload spreadsheets, delete your sent messages and use it with Internet Explorer 9.<span id="more-40612"></span></p>
<h2>Upload contacts from Excel spreadsheets</h2>
<p>We&#8217;ve listened to your feedback about uploading CSV files, now you can upload Excel files directly into textburst without having to convert them.</p>
<p>As with most things there are a few caveats:</p>
<ul>
<li>You must be using Excel 2007 or Excel 2010, older versions save in a different format which we can&#8217;t process.</li>
<li>All your contacts must be on the first worksheet.</li>
<li>Numbers need to start with 44 or 0, if you can&#8217;t see either of these at the start in Excel it won&#8217;t work in textburst.</li>
</ul>
<h2>Delete sent messages</h2>
<p>We want to make sure you&#8217;re always in control of your data, so on this note, we&#8217;ve added delete buttons to the sent message page.  Simply click this button and it&#8217;s gone forever.<br />
Just to make this clear though: The delete button deletes the message, there isn&#8217;t a way to get it back.</p>
<h2>Works in Internet Explorer 9</h2>
<p>Microsoft are well on their way to releasing the new version of Internet Explorer.  Surprisingly, from a web development point of view, it seems like a reasonable browser.   We&#8217;ve made a few tweaks to our styling and scripting to remove work arounds previous versions needed, making sure textburst always looks its best.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaburst.co.uk/blog/new-feature-upload-excel-spreadsheets-in-textburst/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building a demo of&#160;textburst</title>
		<link>http://www.mediaburst.co.uk/blog/building-a-demo%c2%a0site/</link>
		<comments>http://www.mediaburst.co.uk/blog/building-a-demo%c2%a0site/#comments</comments>
		<pubDate>Tue, 01 Mar 2011 14:11:52 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[API & technical]]></category>
		<category><![CDATA[Behind the scenes]]></category>
		<category><![CDATA[Textburst]]></category>
		<category><![CDATA[demo]]></category>
		<category><![CDATA[sms]]></category>

		<guid isPermaLink="false">http://www.mediaburst.co.uk/?p=27002</guid>
		<description><![CDATA[We launched our first textburst demo in early January last year. It was aimed at existing customers showing them what to expect in our upcoming redesign, they already knew what features were in the product so we focused on what had changed. This first demo was a simple affair, we manually copied the page HTML, [...]]]></description>
			<content:encoded><![CDATA[<p>We launched our first <a href="http://demo.mediaburst.co.uk">textburst demo</a> in early January last year.   It was aimed at existing customers showing them what to expect in our upcoming redesign, they already knew what features were in the product so we focused on what had changed.</p>
<p>This first demo was a simple affair, we manually copied the page HTML, output by textburst, into a few new files and then ran them through a shell script which called sed a dozen or so times to replace anything that didn&#8217;t work without the full application behind it.<span id="more-27002"></span></p>
<p>Since putting the new design live we felt we needed to show off all the features to prospective customers. What really surprised us was just how much work is involved to create a fully featured demo.</p>
<p>Our requirements seem simple at a glance:</p>
<ul>
<li>Look and feel like textburst</li>
<li>Include all major textburst features (except payments)</li>
<li>Be easy to update</li>
<li>Don&#8217;t really send text messages</li>
</ul>
<p>For various internal reasons the demo needed to run on the same server as this website, this left us needing to run a C#, ASP.NET web application on a server running PHP and Linux.  To make this work we came up with the following steps:</p>
<ol>
<li>Log in to textburst on our development platform</li>
<li>Grab a copy of all the relevant pages</li>
<li>Run some standard find and replaces to remove ASP.NET specific content</li>
<li>Add PHP include files at the top of each page</li>
<li>Add in page specific PHP includes</li>
<li>Remove any development data</li>
<li>Copy this altered page and any includes in to a directory ready for release</li>
<li>Create some demo contacts and sends using PHP Sessions for display to users</li>
</ol>
<p>Just over 800 lines of perl later we have a wonderful jumble of regular expressions and a dozen or so php files that make textburst into the simple demo you can see today.</p>
<p>By automating this step we can just re-run the perl script each time we do a release keeping the demo perfectly up to date and preventing any surprises once you&#8217;ve signed up.</p>
<p>We do still have to create page specific include files for some of the pages to show how the product actually works.  For example, we add an include to the send message page which displays either a sent successfully or failure message depending upon whether all the form fields were completed.   It also adds the sent message to your session so it shows on the sent messages page.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaburst.co.uk/blog/building-a-demo%c2%a0site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The GSM character set in&#160;.NET</title>
		<link>http://www.mediaburst.co.uk/blog/the-gsm-character-set-in-net/</link>
		<comments>http://www.mediaburst.co.uk/blog/the-gsm-character-set-in-net/#comments</comments>
		<pubDate>Mon, 18 Oct 2010 09:58:00 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[API & technical]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[gsm]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[sms]]></category>

		<guid isPermaLink="false">http://www.mediaburst.co.uk/?p=30562</guid>
		<description><![CDATA[We&#8217;ve released our first open source project on github.  It&#8217;s a .NET class library for encoding and decoding text to or from the GSM character set. One of our SMS suppliers recently changed the encoding on MO messages from Latin1 to GSM as it supports a wider range of characters. After quite a bit of [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve released our first open source project on <a href="http://github.com/mediaburst/">github</a>.  It&#8217;s a .NET class library for encoding and decoding text to or from the <a href="/blog/the-gsm-character-set/">GSM character set</a>.</p>
<p>One of our SMS suppliers recently changed the encoding on <abbr title="Mobile Originated">MO</abbr> messages from Latin1 to GSM as it supports a wider range of characters.  After quite a bit of searching the web we couldn&#8217;t find any examples of how to work with GSM encoded text in C# so we wrote our own.<span id="more-30562"></span></p>
<p>To keep things simple we&#8217;ve inherited from System.Text.Encoding creating a Mediaburst.Text.GSMEncoding class.  Characters are encoded using a simple one to one mapping of GSM bytes to Unicode character.</p>
<p>We&#8217;ve just released it on github under the <abbr title="Internet Systems Consortium">ISC</abbr> license, one of the few open-source licenses written in simple clear English, so feel free to grab a copy and use it in your projects.</p>
<h2>How to use</h2>
<p>We use the following to convert GSM encoded text to UTF-8 on a web server.</p>
<p>The utf8Enc.GetBytes(body) that looks a little out of place is needed as the server assumes all GET and POST parameters are UTF-8 encoded.</p>
<pre class="brush: plain; title: ; notranslate">
string body = &quot;Some GSM encoded text&quot;;
Encoding gsmEnc = new Mediaburst.Text.GSMEncoding();
Encoding utf8Enc = new System.Text.UTF8Encoding();
byte[] gsmBytes = utf8Enc.GetBytes(body);
byte[] utf8Bytes = Encoding.Convert(gsmEnc, utf8Enc, gsmBytes);
body = utf8Enc.GetString(utf8Bytes);
</pre>
<h2>Caveats</h2>
<p>The encoding functions don&#8217;t currently support the EncoderFallback and DecoderFallback error handlers for invalid characters or follow the Microsoft convention of replacing an invalid character with a question marks.  Invalid characters will be ignored and missing from the converted string.</p>
<h2>Get the code</h2>
<p><a href="http://github.com/mediaburst/.NET-GSM-Encoding">Download from github</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaburst.co.uk/blog/the-gsm-character-set-in-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Our SMS API is&#160;100</title>
		<link>http://www.mediaburst.co.uk/blog/our-sms-api-is-100/</link>
		<comments>http://www.mediaburst.co.uk/blog/our-sms-api-is-100/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 08:49:40 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[API & technical]]></category>
		<category><![CDATA[Behind the scenes]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[sms]]></category>

		<guid isPermaLink="false">http://www.mediaburst.co.uk/?p=26132</guid>
		<description><![CDATA[This week sees the 100th release of our SMS API. Some of these releases added major new features such as MMS, some didn&#8217;t make it past our test servers and others fixed bugs or made everything that little bit faster. What&#8217;s in this release? This milestone release doesn&#8217;t contain any major new features for you, [...]]]></description>
			<content:encoded><![CDATA[<p>This week sees the 100th release of our <a href="/api/">SMS API</a>. Some of these releases added major new features such as MMS, some didn&#8217;t make it past our test servers and others fixed bugs or made everything that little bit faster.<span id="more-26132"></span></p>
<h2>What&#8217;s in this release?</h2>
<p>This milestone release doesn&#8217;t contain any major new features for you, our users, it&#8217;s all about making our lives easier at mediaburst and allowing for future changes.</p>
<h3>We&#8217;ve changed to .NET 4</h3>
<p>Microsoft released version 4 of their .NET framework a couple of months ago, along with it came Visual Studio 2010. Although there are no groundbreaking changes in this new Visual Studio it solves various day to day niggles.</p>
<h3>Code rewriting</h3>
<p>We&#8217;ve re-written some internal code that passes messages around between systems. It&#8217;s just housekeeping really, making use of the improvements between versions 2 and 4 of the .NET framework. The biggest change is the switch from ArrayLists of messages to strongly typed Lists using the new support of <a href="http://blogs.msdn.com/b/csharpfaq/archive/2010/02/16/covariance-and-contravariance-faq.aspx">covariance and contravariance</a> in generic types. This change allows the compiler to check what we&#8217;re adding to the list at compile time, rather than run time, hopefully avoiding any mistakes.</p>
<h3>No more image messages</h3>
<p>We&#8217;ve removed support for Nokia and EMS image messages. They&#8217;re small black and white bitmaps which look awful on modern phones, a much better choice, with wider handset support, is MMS. Processing these took large chunks of bespoke code, without them our sending scripts are so much easier to maintain as there&#8217;s only one set of logic.</p>
<h3>Updated logging</h3>
<p>And finally we&#8217;ve tweaked our sent message logging to make a number of internal reports run off a single database table. We currently have to link two databases on different servers if we want the same level of detail.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaburst.co.uk/blog/our-sms-api-is-100/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speeding&#160;up textburst</title>
		<link>http://www.mediaburst.co.uk/blog/speeding-up-textburst/</link>
		<comments>http://www.mediaburst.co.uk/blog/speeding-up-textburst/#comments</comments>
		<pubDate>Thu, 06 May 2010 12:48:52 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[API & technical]]></category>
		<category><![CDATA[Industry news]]></category>
		<category><![CDATA[Textburst]]></category>

		<guid isPermaLink="false">http://www.mediaburst.co.uk/?p=21091</guid>
		<description><![CDATA[Here&#8217;s a post about the latest updates we&#8217;ve released to our online SMS products including textburst and O2 Online Text.   These updates were primarily focussed on making everything work faster. Big sends, instant response. Rather than making you wait around while we process large bulk SMS sends, the send page now responds instantly.  We now process the send [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a post about the latest updates we&#8217;ve released to our <a href="http://www.mediaburst.co.uk/textburst/">online SMS</a> products including textburst and O2 Online Text.   These updates were primarily focussed on making everything work faster.<span id="more-21091"></span></p>
<h2>Big sends, instant response.</h2>
<p>Rather than making you wait around while we process large bulk SMS sends, the send page now responds instantly. </p>
<p>We now process the send in the background. It means you can keep working while the send processes.</p>
<h2>Manage scheduled messages</h2>
<p>In the past if you wanted to cancel scheduled message you had to call us and we&#8217;d do it for you. </p>
<p>You&#8217;ll now find a list of all scheduled messages within the application and can cancel them up to a few minutes before they&#8217;re sent.</p>
<h2>Up to date groups</h2>
<p>If you schedule a message to a group we&#8217;ll now pick up the list of group members at the time of send rather than schedule.</p>
<p>This means you can continue to manage your groups and the send will be up to date with your latest contact list.</p>
<p>Additionally, to make this change work we now deduct message credit when we process the send.</p>
<h2>Faster uploads</h2>
<p>We&#8217;ve made a few behind the scenes tweaks to how uploads are processed.  In our tests an upload of 50,000 contacts now completes 10 times quicker than before.</p>
<h2>Bigger uploads, bigger sends</h2>
<p>There used to be a limit of 10,000 people in a single upload or send. </p>
<p>With the speed improvements above we&#8217;ve removed this limit and so far have tested with groups of 100,000 contacts with no speed issues what so ever.</p>
<h2>Summary</h2>
<p>So there you have it hopefully you&#8217;ll enjoy the benefits, but as always contact us if there  is something we can improve.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaburst.co.uk/blog/speeding-up-textburst/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Textburst updates</title>
		<link>http://www.mediaburst.co.uk/blog/textburst-updates-feb/</link>
		<comments>http://www.mediaburst.co.uk/blog/textburst-updates-feb/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 15:43:35 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Behind the scenes]]></category>
		<category><![CDATA[Textburst]]></category>

		<guid isPermaLink="false">http://www.mediaburst.co.uk/?p=18452</guid>
		<description><![CDATA[Since putting the new version of Textburst version live in January we&#8217;ve done 7 additional updates.   These updates cover all the mediaburst and O2 branded products such as textburst and Online Text. Here&#8217;s a rundown of what we&#8217;ve done: Shared Groups Sub users can view and send to groups shared by their admin user. Quicker Uploads [...]]]></description>
			<content:encoded><![CDATA[<p>Since putting the new version of Textburst version live in January we&#8217;ve done 7 additional updates.   These updates cover all the mediaburst and O2 branded products such as textburst and Online Text. Here&#8217;s a rundown of what we&#8217;ve done:<span id="more-18452"></span></p>
<h3>Shared Groups</h3>
<p>Sub users can view and send to groups shared by their admin user.</p>
<h3>Quicker Uploads</h3>
<p>Contact uploads now only require the mobile column, all others are optional.</p>
<h3>Outlook 2010 Compatibility</h3>
<p>oms can now be used from Microsoft Outlook 2010.</p>
<h3>Clearer Pricing</h3>
<p>To make pricing clearer message prices are now displayed both with and without VAT.</p>
<h3>Enhanced Merging</h3>
<p>Merged messages correctly count the number of characters in fields, in a small number of situations a send failed if one contact had a much longer name than the others.</p>
<h3>IE6 tweaks</h3>
<p>No one loves Internet Explorer 6 but we can&#8217;t ignore it completely, O2 branded products now work much better in this (legacy) browser.</p>
<h3>Summary Pie Charts</h3>
<p>Sent messages now shows a little pie chart rather than a bar graph, this gave us space for the next feature&#8230;</p>
<h3>Quick Resend</h3>
<p>You can resend messages from the sent page.  Just click the icon next to the pie chart and it will fill in the contacts and message text for a new send.</p>
<h3>Clearer Buttons</h3>
<p>Disabled buttons are greyed out making it very clear they can&#8217;t be clicked &#8211; You&#8217;ll see this on the received page, the add to phonebook button is greyed out if they&#8217;re already a contact.</p>
<h3>See Who you are sending to</h3>
<p>When you reply to a contact we now show their name in the To box.</p>
<h3>Improved Statistics</h3>
<p>The send date and originator are now shown on the Send statistics page.</p>
<p>If you do have any feedback or suggestions then leave a comment or head over to our <a href="http://www.mediaburst.co.uk/forum/">customer forum</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaburst.co.uk/blog/textburst-updates-feb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Further&#160;network upgrades</title>
		<link>http://www.mediaburst.co.uk/blog/feb-network-upgrades/</link>
		<comments>http://www.mediaburst.co.uk/blog/feb-network-upgrades/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 08:44:03 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[API & technical]]></category>
		<category><![CDATA[Behind the scenes]]></category>
		<category><![CDATA[data centre]]></category>

		<guid isPermaLink="false">http://www.mediaburst.co.uk/?p=16901</guid>
		<description><![CDATA[On Tuesday 16th February we’re going to install new firewalls in our Manchester data centre.   While we do the work we&#8217;ll be operating all services through our Derby site and turn off Manchester. This work follows on from our network upgrades in Derby last week and will bring our network fully up-to-date.We’ll be starting mid morning [...]]]></description>
			<content:encoded><![CDATA[<p>On Tuesday 16th February we’re going to install new firewalls in our Manchester data centre.   While we do the work we&#8217;ll be operating all services through our Derby site and turn off Manchester.</p>
<p>This work follows on from our network upgrades in Derby <a title="Derby Network Upgrades" href="http://www.mediaburst.co.uk/blog/jan-network-upgrades/" target="_self">last week</a> and will bring our network fully up-to-date.<span id="more-16901"></span>We’ll be starting mid morning (around 10) and should be finished by early afternoon.</p>
<h2>What we’re doing</h2>
<p>We’re upgrading our remaining Cisco PIX firewalls to shiny new Cisco ASAs.</p>
<p>We&#8217;re setting up a backup link between our sites to keep your data safe.</p>
<p>And finally we’ll upgrade our Manchester backup database servers to make sure  they can always keep up with the load.</p>
<h2>Technical details</h2>
<p>Our Manchester site is on the 217.20.43.96/27 network (217.20.43.96 through to 217.20.43.127), whilst we do the work you won&#8217;t be able to reach any servers running on these addresses.   Our Derby site will be up and working fine on the 89.248.48.192/27 network (IP addresses  89.248.48.192 to  89.248.48.223).</p>
<p>This afternoon we’ll take the Manchester servers out of service by removing the DNS records, we’ll then change  them back once everything is tested and finished.</p>
<p>If you login to any of our products you can see which site you’re  currently using, our Manchester servers always have a number 3 near the start  such as textburst3.mediaburst.co.uk, Derby uses a 3 instead.</p>
<p>If you have any questions give us a call on 0845 050 0000 or <a title="Email Mediaburst" href="mailto:hello@mediaburst.co.uk">drop us an  email</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaburst.co.uk/blog/feb-network-upgrades/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Network upgrades</title>
		<link>http://www.mediaburst.co.uk/blog/jan-network-upgrades/</link>
		<comments>http://www.mediaburst.co.uk/blog/jan-network-upgrades/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 15:23:33 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[API & technical]]></category>
		<category><![CDATA[Behind the scenes]]></category>
		<category><![CDATA[data centre]]></category>

		<guid isPermaLink="false">http://www.mediaburst.co.uk/?p=15861</guid>
		<description><![CDATA[On Tuesday 9th February we&#8217;re going to install new firewalls in our Derby data centre. For a short period of time we will turn off Derby and operate all services through our Manchester site. While Derby is turned off  we&#8217;ll also be upgrading our network and servers to make sure we offer you the best service possible. We&#8217;ll be starting mid morning (around 10) [...]]]></description>
			<content:encoded><![CDATA[<p>On Tuesday 9th February we&#8217;re going to install new firewalls in our Derby data centre. For a short period of time we will turn off Derby and operate all services through our Manchester site.</p>
<p>While Derby is turned off  we&#8217;ll also be upgrading our network and servers to make sure we offer you the best service possible.</p>
<p><span id="more-15861"></span> We&#8217;ll be starting mid morning (around 10) and should be finished by mid afternoon.</p>
<h2>What we&#8217;re doing</h2>
<p>We&#8217;re upgrading our Cisco PIX firewalls to shiny new Cisco ASAs, they&#8217;re considerably more powerful and should make our life much easier.</p>
<p>We&#8217;ll also install new servers for our mobile marketing services, the old ones currently work fine but we don&#8217;t want to take any chances.</p>
<p>And finally we&#8217;ll upgrade our backup database servers to make sure they can always keep up with the load.</p>
<h2>Technical details</h2>
<p>Our Derby site is on the 89.248.48.192/27 network (IP addresses 89.248.48.192 through to 89.248.48.223), you won&#8217;t be able to reach any servers running on these addresses while we do the work.  Our Manchester site is on 217.20.43.96/27 (217.20.43.96 through to 217.20.43.127) these addresses will all work fine.</p>
<p>On Monday afternoon we&#8217;ll take the Derby servers out of our DNS so that our service addresses only point to Manchester, we&#8217;ll then change them back once everything is tested and finished.</p>
<p>If you login to any of our products you can see which site you&#8217;re currently using, our Derby servers always have a number 5 near the start such as textburst5.mediaburst.co.uk, Manchester uses a 3 instead.</p>
<p>If you have any questions give us a call on 0845 050 0000 or <a title="Email Mediaburst" href="mailto:hello@mediaburst.co.uk">drop us an email</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaburst.co.uk/blog/jan-network-upgrades/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Progress&#160;with firewalls</title>
		<link>http://www.mediaburst.co.uk/blog/progress-with-firewalls/</link>
		<comments>http://www.mediaburst.co.uk/blog/progress-with-firewalls/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 13:11:15 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[API & technical]]></category>
		<category><![CDATA[firewalls]]></category>

		<guid isPermaLink="false">http://www.mediaburst.co.uk/tech/?p=251</guid>
		<description><![CDATA[We&#8217;ve now ordered our new firewalls, we&#8217;ve gone with a pair of Cisco ASA5510s for the data centres and an ASA5505 for our office. We chose the Cisco firewalls for a few reasons I&#8217;ll explain below. Having tried a Juniper SRX for a fortnight we were left with the impression that a few features aren&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve now ordered our new firewalls, we&#8217;ve gone with a pair of Cisco ASA5510s for the data centres and an ASA5505 for our office.   We chose the Cisco firewalls for a few reasons I&#8217;ll explain below.<br />
<span id="more-510"></span></p>
<p>Having tried a Juniper SRX for a fortnight we were left with the impression that a few features aren&#8217;t quite finished yet.  The routing side, which Juniper are traditionally associated with, was really powerful and easy to use, but for a firewall it seemed to be lacking a few useful features found on the majority of the competition.  These included authenticating VPN users locally if  your Radius server is down and assigning IP addresses without an additional DHCP server.  From talking to a couple of Juniper experts it sounds like these and many other features are coming soon, unfortunately for Juniper we needed them now.</p>
<p>The Juniper SSG range were almost identical to the Cisco products both in features and price, in the end we rejected these because we had major trouble obtaining some competitive quotes.  One major international IT reseller were that frustrating to deal with that we&#8217;ve vowed never to use them again.</p>
<p>One of our core requirements was dynamic VPN access so we can reach our servers when on-call and people can work from home.  Given that Microsoft have just released Windows 7 and that 64bit operating systems are now being pre-installed on laptops it had to work with both of these.   The Juniper VPN client only works on a 32bit OS, we&#8217;d have to purchase some third party software to connect from a 64bit OS, Cisco on the other hand have added full 64bit support to their AnyConnect client.</p>
<p>Our final reason is that Cisco were willing to accept our current PIX firewalls as trade-in.   Of all the reasons we considered this was least important but it became a small factor once we realised the features were essentially the same.  The same international IT supplier strung us along for 3 weeks while trying to sort out this trade-in with Cisco, they then gave up.  Our normal, much smaller, UK supplier had it all sorted in an afternoon and managed a much better price too.</p>
<p>These new firewalls should be with us shortly and I&#8217;ll post an update once we&#8217;re ready to put them live.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaburst.co.uk/blog/progress-with-firewalls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Perl module&#160;RPMs</title>
		<link>http://www.mediaburst.co.uk/blog/creating-perl-module-rpms/</link>
		<comments>http://www.mediaburst.co.uk/blog/creating-perl-module-rpms/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 13:36:57 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[API & technical]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[CPAN]]></category>
		<category><![CDATA[Erick Calder]]></category>
		<category><![CDATA[net::SMPP]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[rpm]]></category>

		<guid isPermaLink="false">http://www.mediaburst.co.uk/tech/?p=115</guid>
		<description><![CDATA[This is a follow on to our post on Perl module config files A large number of our servers run CentOS Linux, and like all Redhat based distributions software is installed through RPM. Unfortunately installing perl modules using CPAN has nasty habit of clashing with the base perl install and causing no end of problems. [...]]]></description>
			<content:encoded><![CDATA[<p>This is a follow on to our post on <a title="Perl Module Config Files post" href="/blog/perl-module-config-files/">Perl module config files</a><br />
<span id="more-506"></span></p>
<p>A large number of our servers run <a title="CentOS Website" href="http://www.centos.org" target="_blank">CentOS</a> Linux, and like all Redhat based distributions software is installed through RPM.  Unfortunately installing perl modules using <a title="CPAN" href="http://www.cpan.org/" target="_blank">CPAN</a> has nasty habit of clashing with the base perl install and causing no end of problems.</p>
<p>To work around this we&#8217;ve taken to installing all perl modules through RPM.   Some modules are easy to find in third party repositories, but our software uses some less common modules such as <code>Net::SMPP</code>.</p>
<p>The best way we&#8217;ve found to convert these elusive perl modules into RPMs is through <a title="cpan2rpm" href="http://perl.arix.com/cpan2rpm/" target="_blank">cpan2rpm </a>by Erick Calder, it&#8217;s also a very convenient way to make our own software available as an RPM.</p>
<p>Creating an RPM from a CPAN perl module is extremely simple, just pass the module name as the only command line parameter, it will download from CPAN and build the RPM.</p>
<pre class="brush: perl; title: ; notranslate">[rpmbuild@dev-linux ~]$cpan2rpm Net::SMPP
...
RPM: /home/rpmbuild/rpm/RPMS/noarch/perl-Net-SMPP-1.03-1.noarch.rpm
SRPM: /home/rpmbuild/rpm/SRPMS/perl-Net-SMPP-1.03-1.src.rpm
-- Done --
[rpmbuild@dev-linux ~]$</pre>
<p>cpan2rpm however does have it&#8217;s limitations so we&#8217;ve added a few extra features to our version.</p>
<h2>RPM Pre install commands</h2>
<p>Commands that need to be run before you install the package, such as creating users.  Defined in Build.PL using rpm_pre or passed on the command line as &#8211;pre=&#8221;my pre-install command&#8221;</p>
<h2>RPM Post install commands</h2>
<p>Commands to run once the package is successfully installed (These don&#8217;t run if it fails). Defined in Build.PL using rpm_post or passed on the command line as <code>--post="my post-install command"</code></p>
<h2>Disable auto-generation of the provides list</h2>
<p>By default rpmbuild will automatically create a list of all packages it provides, on occasion this is wrong, so we added a flag to disable this automatic list creation.  Passed to cpan2rpm on the command line as &#8211;no-auto-prov</p>
<h2>Support for <code>Module::Build</code> dependencies</h2>
<p><code>cpan2rpm</code> couldn&#8217;t wouldn&#8217;t correctly create dependency lists for modules build using <code>Module::Build</code> rather than <code>ExtUtils::MakeMaker</code>, we tweaked the script so these are now listed on the RPM.  These come from the requires section of Build.PL</p>
<h2>Support for the RPM config flag on files</h2>
<p>RPM allows files to be flagged as configuration files within the RPM.  This flag  prevents RPM from overwriting your configuration files when changed by creating the new version as <code>file.rpmnew</code>.  By default we&#8217;ll flag anything from the etc_files section of <code>Build.PL</code></p>
<p>Using John&#8217;s earlier Build.PL example we can add in these extra features so that it creates it&#8217;s own user and then runs a postinstall script once the RPM is installed (this could setup a database or download updated configuration files for example).  These rpm_ tag&#8217;s aren&#8217;t standard Module::Build features but it will ignore unrecognised tags when building.</p>
<pre class="brush: perl; title: ; notranslate">use 5.008005;
use Module::Build;

my $build = Module::Build-&gt;new (
    module_name =&gt; 'ModuleName',
    license  =&gt; 'perl',
    dist_author =&gt; 'A.N. Other &lt;a.n.other@example.com&gt;',
    dist_version_from =&gt; 'lib/ModuleName.pm',
    etc_files =&gt; {
        'etc/logrotate.d/modulename' =&gt; 'etc/logrotate.d/modulename',
        'etc/modulename.conf' =&gt; 'etc/modulename.conf'
    },
    install_path =&gt; { 'etc' =&gt; '/etc', 'script' =&gt; '/usr/local/bin/modulename' },
    rpm_pre =&gt; 'if ! id module_user &gt; /dev/null 2&gt;&amp;1 ; then useradd -r -c &quot;Module User&quot; -s /sbin/nologin -d /usr/local/bin/modulename module_user; fi;'
    rpm_post =&gt; '/usr/local/bin/modulename/postinstall_script'
);
$build-&gt;add_build_element('etc');
$build-&gt;create_build_script;</pre>
<p>If you use cpan2rpm regularly I&#8217;d recommend creating a <code>.rpmmacros</code> file in your home directory to save you having to pass a few of the options.  This also allows you to enable the optional GPG signing of packages.  My <code>.rpmmacros</code> file is:</p>
<pre class="brush: perl; title: ; notranslate">
%_topdir /home/rpmbuild/rpm
%packager Mediaburst Ltd &lt;rpmbuild@mediaburst.co.uk&gt;
%_signature gpg
%_gpgbin /usr/bin/gpg
%_gpg_path /home/rpmbuild/.gnupg
%_gpg_name my_key_name
</pre>
<p>If you plan to use cpan2rpm with standard Perl modules from CPAN I recommend you download it directly from the authors site, however I&#8217;m also making available our updated version in case you want to use any of these update features.</p>
<ul>
<li><a title="cpan2rpm official site" href="http://perl.arix.com/cpan2rpm/" target="_blank">Official cpan2rpm release</a></li>
<li><a title="Mediaburst updated cpan2rpm" href="http://www2.mbstatic.co.uk/wp-content/uploads/2009/09/cpan2rpmmb" target="_blank">Mediaburst cpan2rpm</a> (we&#8217;ve added an mb suffix to the executable)</li>
<li><a title="Patch File" href="http://www1.mbstatic.co.uk/wp-content/uploads/2009/09/cpan2rpm_mediaburst.patch" target="_blank">Patch containing our changes</a></li>
</ul>
<p>I&#8217;m not the world&#8217;s greatest Perl programmer as I normally write C# so if you&#8217;ve got any feedback please leave a comment below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaburst.co.uk/blog/creating-perl-module-rpms/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Replacing our&#160;Firewalls</title>
		<link>http://www.mediaburst.co.uk/blog/firewalls/</link>
		<comments>http://www.mediaburst.co.uk/blog/firewalls/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 14:33:34 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[API & technical]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[firewalls]]></category>

		<guid isPermaLink="false">http://www.mediaburst.co.uk/tech/?p=99</guid>
		<description><![CDATA[We currently use Cisco PIX firewalls in both our data centres and office, we haven&#8217;t really had any problems with these but asCisco stopped providing software maintenance at the end of July now seems a good time to replace them. The obvious choice seemed to be the Cisco ASA range, probably the ASA5510, but in [...]]]></description>
			<content:encoded><![CDATA[<p>We currently use Cisco PIX firewalls in both our data centres and office, we haven&#8217;t really had any problems with these but asCisco stopped providing software maintenance at the end of July now seems a good time to replace them.<span id="more-504"></span></p>
<p>The obvious choice seemed to be the Cisco ASA range, probably the ASA5510, but in some areas the changes between the PIX and ASA platforms seem quite significant, so we thought we&#8217;d look at the competition too.</p>
<p>A little research narrowed us down to two suppliers that could provide all the features we need within a sensible budget, Cisco and Juniper.  Cisco are a safe bet, we&#8217;ve used them before and you don&#8217;t get any surprises, Juniper on the other hand have only recently started targeting smaller networks, most of their products are used in core networks.</p>
<h2>The main contenders were:</h2>
<h3>Cisco ASA5510</h3>
<p>The ASA line is a new improved version of the PIX.  They run the same OS and have a number of new features such as SSL VPN tunnels.</p>
<h3>Juniper SSG140</h3>
<p>The Juniper SSG range is based on the products previously made by Netscreen (acquired by Juniper a few years back).  They run a custom OS called ScreenOS and very similar to the ASA5510 in all features we need.</p>
<h3>Juniper SRX210</h3>
<p>Juniper have only recently introduced the smaller models in their SRX range, these run Junos, the same OS as Junipers core routers.   From the figures we obtained they appear to have considerably higher throughput and performance then either the ASA or SSG ranges and a number of additional features.</p>
<p>At the moment Juniper seem to be really pushing the SRX line, they&#8217;ve got really competitive pricing and <a title="Juniper Fast Track" href="https://learningportal.juniper.net/juniper/user_fasttrack_home.aspx">free online training</a> including certification, and given that they have more features than either of the other products we&#8217;ve going to give them a try.</p>
<p>A friendly Juniper reseller has agreed to lend us one for a couple of weeks while we see if they&#8217;re as good as they look on paper.</p>
<p>Once we&#8217;ve got our hands on one I&#8217;ll add another post letting you know what we think.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaburst.co.uk/blog/firewalls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing the face and pace of&#160;media</title>
		<link>http://www.mediaburst.co.uk/blog/changing-the-face-and-pace-of-media/</link>
		<comments>http://www.mediaburst.co.uk/blog/changing-the-face-and-pace-of-media/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 12:51:47 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Industry news]]></category>
		<category><![CDATA[PricewaterhouseCoopers]]></category>

		<guid isPermaLink="false">http://www.mediaburst.co.uk/blog/?p=277</guid>
		<description><![CDATA[PricewaterhouseCoopers are predicting that due to ad spend shifting away from traditional media, digital and mobile will take an incredible 78% of global entertainment and media ad spend by 2013. PwC partner David Lancefield, outlined that the media landscape is changing at a previously unseen rate of knots. Mobile is again grabbing market share as [...]]]></description>
			<content:encoded><![CDATA[<p>PricewaterhouseCoopers are predicting that due to ad spend shifting away from traditional media, digital and mobile will take an incredible 78% of global entertainment and media ad spend by 2013.<br />
<span id="more-915"></span></p>
<p>PwC partner David Lancefield, outlined that the media landscape is changing at a previously unseen rate of knots.</p>
<p>Mobile is again grabbing market share as more established digital media is in decline &#8211; UK 2009/10 online ad spend is projected to dip 3.2%</p>
<p>PwC also highlights just how many small media businesses have fallen prey to the recession: the downturn has claimed some high-profile victims as we know but PwC reports that a frightening 910 smaller advertising and media businesses have gone bust in the past two years, 525 in the last 12 months-</p>
<ul>
<li>Advertising: 211 in 12 months to June 31 (50 percent up annually). 352 in the last 24 months.</li>
<li>Broadcast: 81 in last 12 months (40 percent rise).</li>
<li>Publishing: 260 in last two years.</li>
<li>Music: 18 in last two years</li>
</ul>
<p>The future may be uncertain, but it definitely is mobile</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaburst.co.uk/blog/changing-the-face-and-pace-of-media/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>In mobile we&#160;trust</title>
		<link>http://www.mediaburst.co.uk/blog/in-mobile-we-trust/</link>
		<comments>http://www.mediaburst.co.uk/blog/in-mobile-we-trust/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 12:52:20 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Our opinion]]></category>
		<category><![CDATA[Black Hat security conference]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.mediaburst.co.uk/blog/?p=279</guid>
		<description><![CDATA[The Black Hat security conference in Las Vegas last week hit the headlines for demonstrating what it saw as severe flaws in cloud computing when it comes to data security, picking an example of how users of Amazon’s Elastic Computer Cloud were tricked into using virtual machines that then left the back door open for [...]]]></description>
			<content:encoded><![CDATA[<p>The Black Hat security conference in Las Vegas last week hit the headlines for demonstrating what it saw as severe flaws in cloud computing when it comes to data security, picking an example of how users of Amazon’s Elastic Computer Cloud were tricked into using virtual machines that then left the back door open for fraudulent shopping.<br />
<span id="more-916"></span></p>
<p>However a more interesting side show also occurred with a demonstration of an iPhone being hacked via a set of binary codes sent to the phone via SMS.</p>
<p>The conclusion was that as users we trust the communications to our phones more than we do e mails to our computers.</p>
<p>Once more this underlines the high value of mobile marketing, but also underlines the responsibility that comes with it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaburst.co.uk/blog/in-mobile-we-trust/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Success in&#160;Derby</title>
		<link>http://www.mediaburst.co.uk/blog/success-in-derby/</link>
		<comments>http://www.mediaburst.co.uk/blog/success-in-derby/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 10:16:28 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[API & technical]]></category>
		<category><![CDATA[data centre]]></category>

		<guid isPermaLink="false">http://blogs.mediaburst.co.uk/tech/?p=69</guid>
		<description><![CDATA[All our services have been running live in our new Derby data centre for over a week now and everything been working fine. If you&#8217;ve got any questions about any of the changes we&#8217;ve made give us a call or drop us an email.]]></description>
			<content:encoded><![CDATA[<p>All our services have been running live in our new Derby data centre for over a week now and everything been working fine.</p>
<p>If you&#8217;ve got any questions about any of the changes we&#8217;ve made give us a call or drop us an email.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaburst.co.uk/blog/success-in-derby/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Data centre move&#160;complete</title>
		<link>http://www.mediaburst.co.uk/blog/data-centre-move-complete/</link>
		<comments>http://www.mediaburst.co.uk/blog/data-centre-move-complete/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 16:33:36 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[API & technical]]></category>
		<category><![CDATA[data centre]]></category>

		<guid isPermaLink="false">http://blogs.mediaburst.co.uk/tech/?p=52</guid>
		<description><![CDATA[All services are now back up and running across our two sites in Manchester and Derby. We&#8217;ve spent most of the day today watching log files and checking customers had the right IP addresses for us on their firewalls. We&#8217;re now happy to say everything appears to be working fine. If you have any questions [...]]]></description>
			<content:encoded><![CDATA[<p>All services are now back up and running across our two sites in Manchester and Derby.  We&#8217;ve spent most of the day today watching log files and checking customers had the right IP addresses for us on their firewalls.<br />
<span id="more-498"></span></p>
<p>We&#8217;re now happy to say everything appears to be working fine.  If you have any questions or queries about the move give us a call on 0845 050 0000.</p>
<p>Here&#8217;s a few pictures to show off our tastefully coloured network cables.</p>

<a href='http://www.mediaburst.co.uk/blog/data-centre-move-complete/sp1020403/' title='Derby cabinet - Back'><img width="158" height="158" src="http://www2.mbstatic.co.uk/wp-content/uploads/2009/06/sP1020403-158x158.jpg" class="attachment-thumbnail" alt="Derby cabinet - Back" title="Derby cabinet - Back" /></a>
<a href='http://www.mediaburst.co.uk/blog/data-centre-move-complete/sp1020402/' title='Derby cabinet - Top'><img width="158" height="158" src="http://www1.mbstatic.co.uk/wp-content/uploads/2009/06/sP1020402-158x158.jpg" class="attachment-thumbnail" alt="Derby cabinet - Top" title="Derby cabinet - Top" /></a>
<a href='http://www.mediaburst.co.uk/blog/data-centre-move-complete/sp1020401/' title='Derby cabinet - Bottom'><img width="158" height="158" src="http://www1.mbstatic.co.uk/wp-content/uploads/2009/06/sP1020401-158x158.jpg" class="attachment-thumbnail" alt="Derby cabinet - Bottom" title="Derby cabinet - Bottom" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.mediaburst.co.uk/blog/data-centre-move-complete/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>We&#8217;ve&#160;moved</title>
		<link>http://www.mediaburst.co.uk/blog/weve-moved/</link>
		<comments>http://www.mediaburst.co.uk/blog/weve-moved/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 09:17:00 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[API & technical]]></category>
		<category><![CDATA[data centre]]></category>

		<guid isPermaLink="false">http://blogs.mediaburst.co.uk/tech/?p=47</guid>
		<description><![CDATA[All our servers are now settled into their new home in Derby. We&#8217;ve got quite a bit of testing to do before transferring over any services and we&#8217;ll post an update later today letting you know what&#8217;s happening. We no longer have any services running on the 213.218.217.160/27 range of IP addresses. Update Everything is [...]]]></description>
			<content:encoded><![CDATA[<p>All our servers are now settled into their new home in Derby.  We&#8217;ve got quite a bit of testing to do before transferring over any services and we&#8217;ll post an update later today letting you know what&#8217;s happening.<br />
<span id="more-497"></span></p>
<p>We no longer have any services running on the 213.218.217.160/27 range of IP addresses.</p>
<h2>Update</h2>
<p>Everything is now running fine in our Derby site, we&#8217;re not going to transfer over customer traffic until Tomorrow (Tuesday) so we can keep an eye on the log files.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaburst.co.uk/blog/weve-moved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Data&#160;centre</title>
		<link>http://www.mediaburst.co.uk/blog/new-data-centre/</link>
		<comments>http://www.mediaburst.co.uk/blog/new-data-centre/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 15:37:42 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[API & technical]]></category>

		<guid isPermaLink="false">http://blogs.mediaburst.co.uk/tech/?p=23</guid>
		<description><![CDATA[Things are progressing nicely for our data centre move to Derby this weekend. We&#8217;ve got the network infrastructure and DNS servers in place and will be moving across the bulk of the hardware on Saturday. A few pictures of where we&#8217;ll be hosting the services]]></description>
			<content:encoded><![CDATA[<p>Things are progressing nicely for our data centre move to Derby this weekend.  We&#8217;ve got the network infrastructure and DNS servers in place and will be moving across the bulk of the hardware on Saturday.<br />
<span id="more-493"></span></p>
<h2>A few pictures of where we&#8217;ll be hosting the services</h2>

<a href='http://www.mediaburst.co.uk/blog/new-data-centre/p1020384-copy-2/' title='Derby - Aisle'><img width="158" height="158" src="http://www2.mbstatic.co.uk/wp-content/uploads/2009/06/P1020384-Copy-158x158.jpg" class="attachment-thumbnail" alt="Derby - Aisle" title="Derby - Aisle" /></a>
<a href='http://www.mediaburst.co.uk/blog/new-data-centre/p1020386-copy-2/' title='Derby - New Cabinet - Front'><img width="158" height="158" src="http://www2.mbstatic.co.uk/wp-content/uploads/2009/06/P1020386-Copy-158x158.jpg" class="attachment-thumbnail" alt="Derby - New Cabinet - Front" title="Derby - New Cabinet - Front" /></a>
<a href='http://www.mediaburst.co.uk/blog/new-data-centre/p1020387-copy-2/' title='Derby - New Cabinet-  Back'><img width="158" height="158" src="http://www1.mbstatic.co.uk/wp-content/uploads/2009/06/P1020387-Copy-158x158.jpg" class="attachment-thumbnail" alt="Derby - New Cabinet-  Back" title="Derby - New Cabinet-  Back" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.mediaburst.co.uk/blog/new-data-centre/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>IP Address Range&#160;Changes</title>
		<link>http://www.mediaburst.co.uk/blog/important-notice-of-ip-address-range-changes/</link>
		<comments>http://www.mediaburst.co.uk/blog/important-notice-of-ip-address-range-changes/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 12:08:22 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[API & technical]]></category>

		<guid isPermaLink="false">http://blogs.mediaburst.co.uk/tech/?p=7</guid>
		<description><![CDATA[As part of our continuous drive to improve products and services, we are configuring a new high capacity data centre between Saturday 27th 2009 and Monday 29th June 2009. All services will be up and running as normal during this period from our Manchester data centre. IP Address Range Changes The development requires clients that [...]]]></description>
			<content:encoded><![CDATA[<p>As part of our continuous drive to improve products and services, we are configuring a new high capacity data centre between Saturday 27th 2009 and Monday 29th June 2009. All services will be up and running as normal during this period from our Manchester data centre.<br />
<span id="more-492"></span></p>
<h2>IP Address Range Changes</h2>
<p>The development requires clients that restrict access to/from Mediaburst services based on IP addresses to make the following changes:</p>
<h2>From 27th June 2009:</h2>
<p>Services will start running on the 89.248.48.192/27 range. (89.248.48.192 through to 89.248.48.223)</p>
<h2>From 29th June 2009:</h2>
<p>Services will no longer be running on the 213.218.217.160/27 range. (213.218.217.160 through to 213.218.217.191)</p>
<p>There will be no change to our Manchester, 217.20.43.96/27, range of IP addresses   (217.20.43.96 through to 217.20.43.127)</p>
<p>If you have any questions give us a call.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaburst.co.uk/blog/important-notice-of-ip-address-range-changes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome to the Mediaburst Technical&#160;blog</title>
		<link>http://www.mediaburst.co.uk/blog/welcome/</link>
		<comments>http://www.mediaburst.co.uk/blog/welcome/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 11:09:51 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[API & technical]]></category>

		<guid isPermaLink="false">http://blogs.mediaburst.co.uk/tech/?p=5</guid>
		<description><![CDATA[We&#8217;re going to use this blog to tell you a little about what we&#8217;re doing and we&#8217;ll also cover some of the strange technical issues we come across with SMS and MMS messaging.]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re going to use this blog to tell you a little about what we&#8217;re doing and we&#8217;ll also cover some of the strange technical issues we come across with SMS and MMS messaging.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaburst.co.uk/blog/welcome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.534 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-08 11:43:27 -->
<!-- Compression = gzip -->
