<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Mobile Musings</title>
	<atom:link href="http://mobilemusings.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mobilemusings.wordpress.com</link>
	<description>Thoughts of a Mobile Guy.</description>
	<lastBuildDate>Wed, 10 Aug 2011 20:22:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='mobilemusings.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Mobile Musings</title>
		<link>http://mobilemusings.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mobilemusings.wordpress.com/osd.xml" title="Mobile Musings" />
	<atom:link rel='hub' href='http://mobilemusings.wordpress.com/?pushpress=hub'/>
		<item>
		<title>VS 2005 SQL CE / xmta Error</title>
		<link>http://mobilemusings.wordpress.com/2010/02/18/vs-2005-sql-ce-xmta-error/</link>
		<comments>http://mobilemusings.wordpress.com/2010/02/18/vs-2005-sql-ce-xmta-error/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 02:57:01 +0000</pubDate>
		<dc:creator>John Huffman</dc:creator>
				<category><![CDATA[.NET CF]]></category>
		<category><![CDATA[SQL Mobile]]></category>
		<category><![CDATA[VS.NET 2005]]></category>

		<guid isPermaLink="false">http://mobilemusings.wordpress.com/?p=74</guid>
		<description><![CDATA[Here&#8217;s another in the world of strange VS.NET 2005 error messages.  I have a project that I added some SQL CE code to and I get this message: genasm.exe(1) : error There was an error finalizing type . Type &#8216;System.Data.SqlServerCe.SqlCeException, System.Data.SqlServerCe, Version=3.0.3600.0, Culture=neutral, PublicKeyToken=3be235df1c8d2ad3, Retargetable=Yes&#8217; was loaded in the ReflectionOnly context but the AssemblyBuilder was [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobilemusings.wordpress.com&amp;blog=450614&amp;post=74&amp;subd=mobilemusings&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s another in the world of strange VS.NET 2005 error messages.  I have a project that I added some SQL CE code to and I get this message:</p>
<blockquote><p><strong>genasm.exe(1) : error There was an error finalizing type . Type &#8216;System.Data.SqlServerCe.SqlCeException, System.Data.SqlServerCe, Version=3.0.3600.0, Culture=neutral, PublicKeyToken=3be235df1c8d2ad3, Retargetable=Yes&#8217; was loaded in the ReflectionOnly context but the AssemblyBuilder was not created as AssemblyBuilderAccess.ReflectionOnly.</strong></p></blockquote>
<p>After a little searching I found a couple of articles that describe the same problem.</p>
<ul>
<li><a title="genasm error message when adding DesignTimeAttributes.xmta to my project" href="http://social.msdn.microsoft.com/Forums/en-US/windowsmobiledev/thread/887362ed-4ab1-4671-a485-e86321f6bb62/">genasm error message when adding DesignTimeAttributes.xmta to my project</a></li>
<li><a title="genasm.exe fails" href="https://connect.microsoft.com/VisualStudio/feedback/details/339763/genasm-exe-fails">genasm.exe fails</a></li>
</ul>
<p>The second one describes a long workaround from Microsoft to get around the problem, and the other has lots more.  But the both include the magic trick of changing the Build Action for xmta files to Content.  Which is all it takes to get around this crazy problem.<br />
<em>Updated Info:</em></p>
<p>I now have run in to another version of this same problem.  I have a Windows Form that contains a protected method containing a generic List as an out parameter.</p>
<p style="padding-left:30px;"><code><br />
protected virtual ResponseBase GetItems(out List&lt;ItemVO&gt; lstItems)<br />
{<br />
lstItems = new List&lt;ItemVO&gt;();<br />
return ResponseBase.SuccessResponse;<br />
}<br />
</code></p>
<p>I receive the error if the method is public or protected, but not private and the parameter is a ref or out. My solution was to change it to return an array of ItemVOs instead.  This is actually the scenerio described in the first article.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mobilemusings.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mobilemusings.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mobilemusings.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mobilemusings.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mobilemusings.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mobilemusings.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mobilemusings.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mobilemusings.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mobilemusings.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mobilemusings.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mobilemusings.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mobilemusings.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mobilemusings.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mobilemusings.wordpress.com/74/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobilemusings.wordpress.com&amp;blog=450614&amp;post=74&amp;subd=mobilemusings&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mobilemusings.wordpress.com/2010/02/18/vs-2005-sql-ce-xmta-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b10392e2c6588ea640ad88ef7a79ff72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">skeeve</media:title>
		</media:content>
	</item>
		<item>
		<title>VS.NET 2005 &#8211; Designer Error Shows HTML Source</title>
		<link>http://mobilemusings.wordpress.com/2009/11/09/vs-net-2005-designer-error-shows-html-source/</link>
		<comments>http://mobilemusings.wordpress.com/2009/11/09/vs-net-2005-designer-error-shows-html-source/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 21:54:28 +0000</pubDate>
		<dc:creator>John Huffman</dc:creator>
				<category><![CDATA[VS.NET 2005]]></category>
		<category><![CDATA[Designer]]></category>
		<category><![CDATA[Error]]></category>

		<guid isPermaLink="false">http://mobilemusings.wordpress.com/?p=70</guid>
		<description><![CDATA[Since upgrading to Internet Explorer 8.0, my Designer Error Messages have started to be displayed as the HTML source code, rather than as the web page itself. For instance: &#60;html&#62;&#60;head&#62;&#60;META HTTP-EQUIV=&#8221;Content-Type&#8221; CONTENT=&#8221;text/html; charset=UTF-8&#8243;&#62;&#60;title&#62;&#8230; While possible, this clearly makes debugging these issues much more difficult.  After some searching I found the magic answer here. Press F5 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobilemusings.wordpress.com&amp;blog=450614&amp;post=70&amp;subd=mobilemusings&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Since upgrading to Internet Explorer 8.0, my Designer Error Messages have started to be displayed as the HTML source code, rather than as the web page itself.</p>
<p>For instance:</p>
<blockquote><p>&lt;html&gt;&lt;head&gt;&lt;META HTTP-EQUIV=&#8221;Content-Type&#8221; CONTENT=&#8221;text/html; charset=UTF-8&#8243;&gt;&lt;title&gt;&#8230;</p></blockquote>
<p>While possible, this clearly makes debugging these issues much more difficult.  After some searching I found the magic answer <a href="http://social.msdn.microsoft.com/Forums/en-SG/winformsdesigner/thread/5fb244e0-017f-4387-8567-ab134089bb81?prof=required&amp;wa=wsignin1.0">here</a>.</p>
<p>Press F5 to refresh the page, and voila it&#8217;s a web version of the error.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mobilemusings.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mobilemusings.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mobilemusings.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mobilemusings.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mobilemusings.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mobilemusings.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mobilemusings.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mobilemusings.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mobilemusings.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mobilemusings.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mobilemusings.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mobilemusings.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mobilemusings.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mobilemusings.wordpress.com/70/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobilemusings.wordpress.com&amp;blog=450614&amp;post=70&amp;subd=mobilemusings&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mobilemusings.wordpress.com/2009/11/09/vs-net-2005-designer-error-shows-html-source/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b10392e2c6588ea640ad88ef7a79ff72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">skeeve</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows Vista takes 48,495 days to copy files</title>
		<link>http://mobilemusings.wordpress.com/2007/12/30/windows-vista-takes-48495-days-to-copy-files/</link>
		<comments>http://mobilemusings.wordpress.com/2007/12/30/windows-vista-takes-48495-days-to-copy-files/#comments</comments>
		<pubDate>Mon, 31 Dec 2007 01:50:09 +0000</pubDate>
		<dc:creator>John Huffman</dc:creator>
				<category><![CDATA[Blogroll]]></category>

		<guid isPermaLink="false">http://mobilemusings.wordpress.com/2007/12/30/windows-vista-takes-48495-days-to-copy-files/</guid>
		<description><![CDATA[My wife was copying a bunch of pictures today when she got this message saying it would take 48,495 more days to finish copying her files. For some reason she didn&#8217;t have the patience to wait. However it amazingly finished in only 10 more minutes.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobilemusings.wordpress.com&amp;blog=450614&amp;post=49&amp;subd=mobilemusings&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://mobilemusings.files.wordpress.com/2007/12/yearstocopy1.png" alt="Windows Vista 48,495 Years to Copy" /></p>
<p>My wife was copying a bunch of pictures today when she got this message saying it would take 48,495 more days to finish copying her files.  For some reason she didn&#8217;t have the patience to wait.  However it amazingly finished in only 10 more minutes.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mobilemusings.wordpress.com/49/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mobilemusings.wordpress.com/49/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mobilemusings.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mobilemusings.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mobilemusings.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mobilemusings.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mobilemusings.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mobilemusings.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mobilemusings.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mobilemusings.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mobilemusings.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mobilemusings.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mobilemusings.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mobilemusings.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mobilemusings.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mobilemusings.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobilemusings.wordpress.com&amp;blog=450614&amp;post=49&amp;subd=mobilemusings&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mobilemusings.wordpress.com/2007/12/30/windows-vista-takes-48495-days-to-copy-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b10392e2c6588ea640ad88ef7a79ff72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">skeeve</media:title>
		</media:content>

		<media:content url="http://mobilemusings.files.wordpress.com/2007/12/yearstocopy1.png" medium="image">
			<media:title type="html">Windows Vista 48,495 Years to Copy</media:title>
		</media:content>
	</item>
		<item>
		<title>Book Review: Dishwasher by Pete Jordan</title>
		<link>http://mobilemusings.wordpress.com/2007/12/29/book-review-dishwasher-by-pete-jordan/</link>
		<comments>http://mobilemusings.wordpress.com/2007/12/29/book-review-dishwasher-by-pete-jordan/#comments</comments>
		<pubDate>Sun, 30 Dec 2007 04:43:17 +0000</pubDate>
		<dc:creator>John Huffman</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Book Reviews]]></category>

		<guid isPermaLink="false">http://mobilemusings.wordpress.com/2007/12/29/book-review-dishwasher-by-pete-jordan/</guid>
		<description><![CDATA[This book is about Dishwasher Pete&#8217;s (aka Pete Jordan) quest to wash dishes in all fifty states. Why anyone would want to do that, or would even care to read about a slacker trying to do it, is hard to imagine, but I found it a great read. Perhaps I found it interesting just because [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobilemusings.wordpress.com&amp;blog=450614&amp;post=47&amp;subd=mobilemusings&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://cdn.harpercollins.com/harperimages/isbn/medium/3/9780060896423.jpg" alt="Dishwasher Cover" align="left" height="150" hspace="10" vspace="10" width="99" />This book is about Dishwasher Pete&#8217;s (aka Pete Jordan) quest to wash dishes in all fifty states. Why anyone would want to do that, or would even care to read about a slacker trying to do it, is hard to imagine, but I found it a great read.</p>
<p>Perhaps I found it interesting just because I wanted to understand why anyone would want to wash dishes (the Dirty Job&#8217;s slant), or perhaps because of my brief (two-day) stint as a plongeur, or a desire to travel the country. But most likely it&#8217;s my love of a real-world adventure told by a great story teller.</p>
<p>This type of book often has the danger of the author who takes themselves far too serious, or on an ego trip. I mean who really cares about a dishwasher. But this is really a book about a lot more.</p>
<p>There&#8217;s the cultural differences throughout the country, where it&#8217;s easy to get a dishing job, and where cultural prejudices precludes it. It shows you that dish washers are an important part of our world, and that despite their low-standing they still are needed, and that whether you&#8217;re on an oil-rig, dinner train, commune, jewish nurshing home, cannery, or Oktoberfest, there&#8217;s someone in the dish pit taking care of business. And of course, I found it amusing that if it weren&#8217;t for the cyclist unfriendly roads of Pittsburgh, he could be my neighbor.</p>
<p>And finally there&#8217;s the philosophical perspective this book tries to provide towards the end. After ten years soaking suds, sleeping in a van, traveling the country, and bouncing between jobs, what else can you do with your life. Well, if your like Dishwasher Pete, you can become a pretty good writer.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mobilemusings.wordpress.com/47/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mobilemusings.wordpress.com/47/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mobilemusings.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mobilemusings.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mobilemusings.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mobilemusings.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mobilemusings.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mobilemusings.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mobilemusings.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mobilemusings.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mobilemusings.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mobilemusings.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mobilemusings.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mobilemusings.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mobilemusings.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mobilemusings.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobilemusings.wordpress.com&amp;blog=450614&amp;post=47&amp;subd=mobilemusings&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mobilemusings.wordpress.com/2007/12/29/book-review-dishwasher-by-pete-jordan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b10392e2c6588ea640ad88ef7a79ff72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">skeeve</media:title>
		</media:content>

		<media:content url="http://cdn.harpercollins.com/harperimages/isbn/medium/3/9780060896423.jpg" medium="image">
			<media:title type="html">Dishwasher Cover</media:title>
		</media:content>
	</item>
		<item>
		<title>C# Web References and Shared Types</title>
		<link>http://mobilemusings.wordpress.com/2007/12/07/c-web-references-and-shared-types/</link>
		<comments>http://mobilemusings.wordpress.com/2007/12/07/c-web-references-and-shared-types/#comments</comments>
		<pubDate>Fri, 07 Dec 2007 23:55:56 +0000</pubDate>
		<dc:creator>John Huffman</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[.NET CF]]></category>
		<category><![CDATA[Web Services]]></category>

		<guid isPermaLink="false">http://mobilemusings.wordpress.com/2007/12/07/c-web-references-and-shared-types/</guid>
		<description><![CDATA[This post has been move to the StepOne Systems Mobile Technology Blog. The new link is C# Web References and Shared Types.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobilemusings.wordpress.com&amp;blog=450614&amp;post=43&amp;subd=mobilemusings&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><img class="size-full wp-image-54 aligncenter" title="StepOne Systems" src="http://mobilemusings.files.wordpress.com/2007/12/image003.png?w=336&#038;h=64" alt="StepOne Systems" width="336" height="64" /></p>
<p style="text-align:center;"><strong>This post has been move to the <a href="http://www.steponesystems.com/blog/">StepOne Systems Mobile Technology Blog.</a></strong></p>
<p style="text-align:center;"><strong>The new link is <a title="C# Web References and Shared Types" href="http://www.steponesystems.com/blog/?p=309" target="_self">C# Web References and Shared Types.</a></strong></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mobilemusings.wordpress.com/43/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mobilemusings.wordpress.com/43/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mobilemusings.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mobilemusings.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mobilemusings.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mobilemusings.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mobilemusings.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mobilemusings.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mobilemusings.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mobilemusings.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mobilemusings.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mobilemusings.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mobilemusings.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mobilemusings.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mobilemusings.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mobilemusings.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobilemusings.wordpress.com&amp;blog=450614&amp;post=43&amp;subd=mobilemusings&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mobilemusings.wordpress.com/2007/12/07/c-web-references-and-shared-types/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b10392e2c6588ea640ad88ef7a79ff72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">skeeve</media:title>
		</media:content>

		<media:content url="http://mobilemusings.files.wordpress.com/2007/12/image003.png" medium="image">
			<media:title type="html">StepOne Systems</media:title>
		</media:content>
	</item>
		<item>
		<title>Verizon Online &#8211; Denial of Service</title>
		<link>http://mobilemusings.wordpress.com/2007/06/13/verizon-online-denial-of-service/</link>
		<comments>http://mobilemusings.wordpress.com/2007/06/13/verizon-online-denial-of-service/#comments</comments>
		<pubDate>Wed, 13 Jun 2007 22:56:19 +0000</pubDate>
		<dc:creator>John Huffman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mobilemusings.wordpress.com/2007/06/13/verizon-online-denial-of-service/</guid>
		<description><![CDATA[Recently I thought I&#8217;d update my Linksys Router to a new Linksys router so I could have 802.11g in the house.  Unfortunately this has turned in to a nightmare with my Verizon DSL connection.  When I initially switched the boxes, I started to get the message:  Verizon Online &#8211; Denial of Service Unable to Access [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobilemusings.wordpress.com&amp;blog=450614&amp;post=42&amp;subd=mobilemusings&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently I thought I&#8217;d update my Linksys Router to a new Linksys router so I could have 802.11g in the house.  Unfortunately this has turned in to a nightmare with my Verizon DSL connection. </p>
<p>When I initially switched the boxes, I started to get the message:</p>
<blockquote><p><strong> Verizon Online &#8211; Denial of Service</strong></p>
<p><strong>Unable to Access the Verizon Online Network</strong></p>
<p><strong></p>
<table border="0" width="724" cellPadding="0" cellSpacing="0">
<tr>
<td vAlign="top" class="mainpos">You may be experiencing difficulty accessing the Verizon Online Network for the following reasons:</p>
<ul>
<li>Your Verizon Online account has been suspended due to a billing-related matter.<br />
Please <a href="http://noaccess.verizon.net/dos/flow.jx?stateID=start">login</a> to review your billing information.</li>
<li>There may be some techincal difficulty related to your equipment or Verizon Online account.<br />
For help with technical issues, please contact Technical Support at 1-800-567-6789 for Residential or 1-888-649-9500 for Business.</li>
</ul>
<p>For further details, please <a href="http://noaccess.verizon.net/noaccess/details.html">click here</a>.</p>
<p>If you continue to experience problems connecting to the Verizon Online Network, you may <a href="http://noaccess.verizon.net/noaccess/contact.html">contact us </a>to assist you in resolving the issue.</td>
</tr>
<tr>
<td vAlign="top" class="mainrule"> </td>
</tr>
</table>
<p><!-- Start Footer --></p>
<table border="0" width="724" cellPadding="0" cellSpacing="0">
<tr>
<td vAlign="top" class="mainpos">
<p class="legal"><a href="http://noaccess.verizon.net/noaccess/contact.html">Contact Us</a> | <!--               <a href="#">Verizon Online Privacy Statement</a> |  &#8211;>Copyright 2006 Verizon. All Rights Reserved</p>
<p style="padding-top:5px;" class="legal">Use of Verizon Online Internet access services and Web sites are subject to user compliance with our Terms of Service.</p>
</td>
</tr>
</table>
<p></strong></p></blockquote>
<p>However, if I swapped back the original router, all was fine.  So the first guess was that they had some kind of filter to prevent multiple devices on the same circuit.  So I decided to leave the router disconnected overnight and try swapping it out.  Then neither router would work, and the pain was just starting.</p>
<p>Though the curious part of it, is that everything is correctly connected, I can ping websites, and doing everything except stuff that requires Port 80. </p>
<h3>The Painful call to Verizon Support </h3>
<p>Obviously, it was time to call Verizon where I got stuck with a Level 1 tech and their script who wanted me to do all of their un-related diagnostics to solve any general problem.</p>
<ol>
<li>Check that my account is not suspended.  It isn&#8217;t, website also says this. </li>
<li>Connect the DSL Router to another computer and try it.  Of course this requires a complete network configuration of the laptop, but oh well.</li>
<li>Reset the router, (down to the basement, back to the office), reset it wait longer (back down, back up)</li>
<li>Reset the username and password, by the way that all resets the POP client password..</li>
<li>Delete all of the Cookies, Files, and History&#8230;</li>
<li>Hmm, you must need a new router, I&#8217;ll send you to DSL Billing to get one. 
<ul>
<li>Me: Hey I don&#8217;t see why I should buy a new router because you&#8217;re blocking my traffic.</li>
<li>Her: No, there&#8217;s a problem with the firmware and security is locked, we&#8217;ll get you a free replacement.  I&#8217;ll connect DSL billing..</li>
<li>Me: Er, ok&#8230;</li>
</ul>
</li>
<li>Dropped out to the main menu, Find an operator since there is no good option, wait in the queue, &#8230;.</li>
</ol>
<p>Now I get a new DSL billing guy, I tell him my number, he looks at my record and tells me I need to <u><strong>buy</strong></u> a new router.  I explained that my router is fine and they were causing the problem so they should provide one.  After all it worked with the old Linksys box until I swapped them.  But alas no, so I told him I&#8217;d think about canceling DSL, he said ok, and I hung up.</p>
<p>So there&#8217;s two hours wasted.</p>
<p>Now it gets a little stranger.  I connect another Router I had from a previous fiasco, hook up the old router and it starts working.  Seemed strange, but ok, I got off to work an hour late.</p>
<p>Then my wife comes home and tries it out.  She&#8217;s able to read email for a bit, then tries to reply to a message and it dies.  Restarts IE, dies again.</p>
<h3>Solution: Change the DNS Settings </h3>
<p>So now it&#8217;s time to get serious and search the web which turned up a couple of articles pointing to problems with the DNS server settings. </p>
<ul>
<li><a href="http://www.daniweb.com/forums/thread28879-2.html">http://www.daniweb.com/forums/thread28879-2.html</a></li>
<li><a href="http://forums.macosxhints.com/archive/index.php/t-49656.html">http://forums.macosxhints.com/archive/index.php/t-49656.html</a></li>
<li><a href="http://www.dvdtalk.com/forum/archive/index.php/t-452659.html">http://www.dvdtalk.com/forum/archive/index.php/t-452659.html</a></li>
</ul>
<p>Which magically solved the problem!!!!  Essentially the solution is to change the DNS servers to ones that work better, either OpenDNS or the new ones Verizon was sending in the PPPoe message.<br />
 </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mobilemusings.wordpress.com/42/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mobilemusings.wordpress.com/42/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mobilemusings.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mobilemusings.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mobilemusings.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mobilemusings.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mobilemusings.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mobilemusings.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mobilemusings.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mobilemusings.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mobilemusings.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mobilemusings.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mobilemusings.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mobilemusings.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mobilemusings.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mobilemusings.wordpress.com/42/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobilemusings.wordpress.com&amp;blog=450614&amp;post=42&amp;subd=mobilemusings&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mobilemusings.wordpress.com/2007/06/13/verizon-online-denial-of-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b10392e2c6588ea640ad88ef7a79ff72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">skeeve</media:title>
		</media:content>
	</item>
		<item>
		<title>VS.NET 2005: &#8220;GenerateResource&#8221; task failed unexpectedly</title>
		<link>http://mobilemusings.wordpress.com/2007/03/20/vsnet-2005-generateresource-task-failed-unexpectedly/</link>
		<comments>http://mobilemusings.wordpress.com/2007/03/20/vsnet-2005-generateresource-task-failed-unexpectedly/#comments</comments>
		<pubDate>Tue, 20 Mar 2007 22:05:58 +0000</pubDate>
		<dc:creator>John Huffman</dc:creator>
				<category><![CDATA[.NET CF]]></category>

		<guid isPermaLink="false">http://mobilemusings.wordpress.com/2007/03/20/vsnet-2005-generateresource-task-failed-unexpectedly/</guid>
		<description><![CDATA[This post has been move to the StepOne Systems Mobile Technology Blog. The new link is VS.NET 2005: “GenerateResource” task failed unexpectedly.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobilemusings.wordpress.com&amp;blog=450614&amp;post=41&amp;subd=mobilemusings&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><img class="size-full wp-image-54 aligncenter" title="StepOne Systems" src="http://mobilemusings.files.wordpress.com/2007/12/image003.png?w=336&#038;h=64" alt="StepOne Systems" width="336" height="64" /></p>
<p style="text-align:center;"><strong>This post has been move to the <a href="http://www.steponesystems.com/blog/">StepOne Systems Mobile Technology Blog</a>.</strong></p>
<p style="text-align:center;"><strong> The new link is <a title="Permanent Link to VS.NET 2005: “GenerateResource” task failed unexpectedly" rel="bookmark" href="http://www.steponesystems.com/blog/?p=307" target="_self">VS.NET 2005: “GenerateResource” task failed unexpectedly</a>.</strong></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mobilemusings.wordpress.com/41/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mobilemusings.wordpress.com/41/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mobilemusings.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mobilemusings.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mobilemusings.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mobilemusings.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mobilemusings.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mobilemusings.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mobilemusings.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mobilemusings.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mobilemusings.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mobilemusings.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mobilemusings.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mobilemusings.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mobilemusings.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mobilemusings.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobilemusings.wordpress.com&amp;blog=450614&amp;post=41&amp;subd=mobilemusings&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mobilemusings.wordpress.com/2007/03/20/vsnet-2005-generateresource-task-failed-unexpectedly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b10392e2c6588ea640ad88ef7a79ff72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">skeeve</media:title>
		</media:content>

		<media:content url="http://mobilemusings.files.wordpress.com/2007/12/image003.png" medium="image">
			<media:title type="html">StepOne Systems</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL Mobile 2005 &#8211; Editing Table Data</title>
		<link>http://mobilemusings.wordpress.com/2007/01/24/sql-mobile-2005-editing-table-data/</link>
		<comments>http://mobilemusings.wordpress.com/2007/01/24/sql-mobile-2005-editing-table-data/#comments</comments>
		<pubDate>Wed, 24 Jan 2007 21:21:14 +0000</pubDate>
		<dc:creator>John Huffman</dc:creator>
				<category><![CDATA[.NET CF]]></category>
		<category><![CDATA[SQL Mobile]]></category>
		<category><![CDATA[Windows Mobile]]></category>

		<guid isPermaLink="false">http://mobilemusings.wordpress.com/2007/01/24/sql-mobile-2005-editing-table-data/</guid>
		<description><![CDATA[This post has been move to the StepOne Systems Mobile Technology Blog. The new link is SQL Mobile 2005 &#8211; Editing Table Data.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobilemusings.wordpress.com&amp;blog=450614&amp;post=35&amp;subd=mobilemusings&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><img class="size-full wp-image-54 aligncenter" title="StepOne Systems" src="http://mobilemusings.files.wordpress.com/2007/12/image003.png?w=336&#038;h=64" alt="StepOne Systems" width="336" height="64" /></p>
<p style="text-align:center;"><strong>This post has been move to the <a href="http://www.steponesystems.com/blog/">StepOne Systems Mobile Technology Blog</a>.</strong></p>
<p style="text-align:center;"><strong> The new link is <a title="Permanent Link to SQL Mobile 2005 - Editing Table Data" rel="bookmark" href="http://www.steponesystems.com/blog/?p=303" target="_self">SQL Mobile 2005 &#8211; Editing Table Data</a>.</strong></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mobilemusings.wordpress.com/35/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mobilemusings.wordpress.com/35/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mobilemusings.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mobilemusings.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mobilemusings.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mobilemusings.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mobilemusings.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mobilemusings.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mobilemusings.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mobilemusings.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mobilemusings.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mobilemusings.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mobilemusings.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mobilemusings.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mobilemusings.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mobilemusings.wordpress.com/35/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobilemusings.wordpress.com&amp;blog=450614&amp;post=35&amp;subd=mobilemusings&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mobilemusings.wordpress.com/2007/01/24/sql-mobile-2005-editing-table-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b10392e2c6588ea640ad88ef7a79ff72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">skeeve</media:title>
		</media:content>

		<media:content url="http://mobilemusings.files.wordpress.com/2007/12/image003.png" medium="image">
			<media:title type="html">StepOne Systems</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL Mobile 2005 &#8211; Error: Not Enough Storage is Available</title>
		<link>http://mobilemusings.wordpress.com/2007/01/23/sql-mobile-2005-not-enough-storage-is-available/</link>
		<comments>http://mobilemusings.wordpress.com/2007/01/23/sql-mobile-2005-not-enough-storage-is-available/#comments</comments>
		<pubDate>Tue, 23 Jan 2007 20:24:03 +0000</pubDate>
		<dc:creator>John Huffman</dc:creator>
				<category><![CDATA[.NET CF]]></category>
		<category><![CDATA[SQL Mobile]]></category>
		<category><![CDATA[Windows Mobile]]></category>

		<guid isPermaLink="false">http://mobilemusings.wordpress.com/2007/01/24/sql-mobile-2005-not-enough-storage-is-available/</guid>
		<description><![CDATA[This post has been move to the StepOne Systems Mobile Technology Blog. The new link is SQL Mobile 2005 &#8211; Error: Not Enough Storage is Available.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobilemusings.wordpress.com&amp;blog=450614&amp;post=33&amp;subd=mobilemusings&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><img class="size-full wp-image-54 aligncenter" title="StepOne Systems" src="http://mobilemusings.files.wordpress.com/2007/12/image003.png?w=336&#038;h=64" alt="StepOne Systems" width="336" height="64" /></p>
<p style="text-align:center;"><strong>This post has been move to the <a href="http://www.steponesystems.com/blog/">StepOne Systems Mobile Technology Blog</a>.</strong></p>
<p style="text-align:center;"><strong> The new link is <a title="Permanent Link to SQL Mobile 2005 - Error: Not Enough Storage is Available" rel="bookmark" href="http://www.steponesystems.com/blog/?p=300" target="_self">SQL Mobile 2005 &#8211; Error: Not Enough Storage is Available</a>.</strong></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mobilemusings.wordpress.com/33/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mobilemusings.wordpress.com/33/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mobilemusings.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mobilemusings.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mobilemusings.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mobilemusings.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mobilemusings.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mobilemusings.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mobilemusings.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mobilemusings.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mobilemusings.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mobilemusings.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mobilemusings.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mobilemusings.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mobilemusings.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mobilemusings.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobilemusings.wordpress.com&amp;blog=450614&amp;post=33&amp;subd=mobilemusings&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mobilemusings.wordpress.com/2007/01/23/sql-mobile-2005-not-enough-storage-is-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b10392e2c6588ea640ad88ef7a79ff72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">skeeve</media:title>
		</media:content>

		<media:content url="http://mobilemusings.files.wordpress.com/2007/12/image003.png" medium="image">
			<media:title type="html">StepOne Systems</media:title>
		</media:content>
	</item>
		<item>
		<title>Intermec Scan Configuration</title>
		<link>http://mobilemusings.wordpress.com/2007/01/02/intermec-scan-configuration/</link>
		<comments>http://mobilemusings.wordpress.com/2007/01/02/intermec-scan-configuration/#comments</comments>
		<pubDate>Wed, 03 Jan 2007 00:11:56 +0000</pubDate>
		<dc:creator>John Huffman</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Intermec]]></category>
		<category><![CDATA[Windows Mobile]]></category>

		<guid isPermaLink="false">http://mobilemusings.wordpress.com/2007/01/02/intermec-scan-configuration/</guid>
		<description><![CDATA[This post has been move to the StepOne Systems Mobile Technology Blog. The new link is Intermec Scan Configuration.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobilemusings.wordpress.com&amp;blog=450614&amp;post=29&amp;subd=mobilemusings&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><img class="size-full wp-image-54 aligncenter" title="StepOne Systems" src="http://mobilemusings.files.wordpress.com/2007/12/image003.png?w=336&#038;h=64" alt="StepOne Systems" width="336" height="64" /></p>
<p style="text-align:center;"><strong>This post has been move to the <a href="http://www.steponesystems.com/blog/">StepOne Systems Mobile Technology Blog</a>.</strong></p>
<p style="text-align:center;"><strong> The new link is <a title="Permanent Link to Intermec Scan Configuration" rel="bookmark" href="http://www.steponesystems.com/blog/?p=299" target="_self">Intermec Scan Configuration</a>.</strong></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mobilemusings.wordpress.com/29/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mobilemusings.wordpress.com/29/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mobilemusings.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mobilemusings.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mobilemusings.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mobilemusings.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mobilemusings.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mobilemusings.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mobilemusings.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mobilemusings.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mobilemusings.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mobilemusings.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mobilemusings.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mobilemusings.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mobilemusings.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mobilemusings.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobilemusings.wordpress.com&amp;blog=450614&amp;post=29&amp;subd=mobilemusings&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mobilemusings.wordpress.com/2007/01/02/intermec-scan-configuration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b10392e2c6588ea640ad88ef7a79ff72?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">skeeve</media:title>
		</media:content>

		<media:content url="http://mobilemusings.files.wordpress.com/2007/12/image003.png" medium="image">
			<media:title type="html">StepOne Systems</media:title>
		</media:content>
	</item>
	</channel>
</rss>
