<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://morewally.com/cs/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>MoreWally.com</title><link>http://morewally.com/cs/blogs/</link><description>Giving people what they want, More Wally.  This is the technical and personal blog site of &lt;br/&gt;Wallace B. (Wally) McClure.</description><dc:language>en-US</dc:language><generator>CommunityServer 2007 SP2 (Build: 20611.960)</generator><item><title>StartMonitoringSignificantLocationChanges in iOS 4 question with MonoTouch (iPhone, iPad, iPod touch) </title><link>http://morewally.com/cs/blogs/wallym/archive/2010/09/01/startmonitoringsignificantlocationchanges-in-ios-4-question-with-monotouch-iphone-ipad-ipod-touch.aspx</link><pubDate>Wed, 01 Sep 2010 17:30:00 GMT</pubDate><guid isPermaLink="false">29a72425-8e70-4836-ba80-85c822e0df2a:1863</guid><dc:creator>wallym</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;I got a question on Twitter the other day about why I am using the StartMonitoringSignificantLocationChanges() feature of the CLLocationManager.&amp;nbsp; I think &lt;a href="http://developer.apple.com/iphone/library/documentation/iphone/conceptual/iphoneosprogrammingguide/BackgroundExecution/BackgroundExecution.html" target="_blank"&gt;this link on Apple&amp;#39;s Developer site describes why this is significant&lt;/a&gt;.&amp;nbsp; The important text for me is:&lt;/p&gt;&lt;p&gt;&lt;i&gt;&lt;b&gt;Applications can register for significant location changes only.  (Recommended) &lt;/b&gt;The
 significant-change location service is available in iOS 4 and later for
 devices with a cellular radio. It offers a low-power way to receive 
location data and is highly recommended. New location updates are 
provided only when the user’s position changes significantly. If the 
application is suspended while running this service, new location 
updates will cause the application to be woken up in the background to 
handle them. Similarly, if the application is terminated while running 
this service, the system relaunches the application automatically when 
new location data becomes available.&lt;/i&gt; &lt;/p&gt;&lt;p&gt;The key parts are:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;This is the recommended way to handle changes in the background.&lt;/li&gt;&lt;li&gt;It only works in iOS 4 and later for devices with a cellular radio, so it will only work on the iPhone and 3g iPad (once it gets iOS 4).&amp;nbsp; This means that I have to continually borrow my wife&amp;#39;s iPhone, which results in some looks of &amp;quot;wtf do you want with it now.&amp;quot;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;The user position changes significantly.&amp;nbsp; I think that this is a big deal.&amp;nbsp; The event that you wire up does not go banging on the GPS in the device.&amp;nbsp; That will help with power, though it won&amp;#39;t be the same as if it is not using any power.&amp;nbsp; Its better than the alternative of using more power. &lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;img src="http://morewally.com/cs/aggbug.aspx?PostID=1863" width="1" height="1"&gt;</description><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/monotouch/default.aspx">monotouch</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/monotouch+development/default.aspx">monotouch development</category></item><item><title>Debug/Release Settings for Simulator/iPhone with MonoTouch in iOS Version 4 with MonoDevelop</title><link>http://morewally.com/cs/blogs/wallym/archive/2010/09/01/debug-release-settings-for-simulator-iphone-with-monotouch.aspx</link><pubDate>Wed, 01 Sep 2010 16:00:00 GMT</pubDate><guid isPermaLink="false">29a72425-8e70-4836-ba80-85c822e0df2a:1865</guid><dc:creator>wallym</dc:creator><slash:comments>0</slash:comments><description>I was working on my iPhone app last night. It requires the features of iOS4. I found a weird behavior. When I ran my app in debug mode on a device, it ran properly. When I ran my app in release mode on a device, I was getting behavior like I was running on iOS3. I was pulling my hair out. After I got back from the gym, I listed my problem on the MonoTouch IRC. Thankfully, someone else had that problem. The issue is that there are different settings for Debug and Release with the Simulator and iPhone. As a result, you have to set the settings appropriately for each configuration. Thankfully, you just need to be aware of this and set it as necessary. Here&amp;#39;s the screen you need to be aware of.&lt;br /&gt;&lt;img alt="iPhone app settings" src="http://morewally.com/cs/photos/developmentpics/images/1864/original.aspx" /&gt;&lt;img src="http://morewally.com/cs/aggbug.aspx?PostID=1865" width="1" height="1"&gt;</description><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/iphone/default.aspx">iphone</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/monotouch/default.aspx">monotouch</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/monotouch+development/default.aspx">monotouch development</category></item><item><title>MonoTouch - supporting iPhone/iPod Touch/iOS Version 4</title><link>http://morewally.com/cs/blogs/wallym/archive/2010/08/31/monotouch-supporting-iphone-ipod-touch-ios-version-4.aspx</link><pubDate>Tue, 31 Aug 2010 17:00:00 GMT</pubDate><guid isPermaLink="false">29a72425-8e70-4836-ba80-85c822e0df2a:1860</guid><dc:creator>wallym</dc:creator><slash:comments>1</slash:comments><description>&lt;p&gt;You may have been hearing about the iOS Version 4 a lot.&amp;nbsp; You probably have installed it onto your iPhone/iPod Touch devices.&amp;nbsp; It&amp;#39;s got a couple of cool features that I think are significant.&amp;nbsp; One is the ability to run applications in the background.&amp;nbsp; Now, this isn&amp;#39;t general purprose in the background as I understand it.&amp;nbsp; Its for very specific situations.&amp;nbsp; In my specific situation, I wanted to check the location of a phone and call a method when it&amp;#39;s location changed (no, I&amp;#39;m not stalking you).&amp;nbsp; Anyway, it looks like there are two steps in the process.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;Step on in the process is for the application to tell the device that the app needs to recieve background updates.&amp;nbsp; This is done through the Info.plist file.&amp;nbsp; You will need to modify your file to look like this:&lt;/p&gt;
&lt;p&gt;&lt;img src="http://morewally.com/cs/photos/developmentpics/images/1861/original.aspx" title="Info.plist" alt="Info.plist" height="472" width="749" /&gt;&lt;/p&gt;
&lt;p&gt;Notice the UIBackgroundModes entry.&amp;nbsp; I added an entry for location.&amp;nbsp; The three possible entries are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;audio.&lt;/li&gt;
&lt;li&gt;location.&lt;/li&gt;
&lt;li&gt;voip.&lt;/li&gt;

&lt;/ul&gt;&lt;p&gt;
I think that they are all fairly self explanatory.&lt;/p&gt;&lt;p&gt;The next step is to run some code to listen for events in the background.&amp;nbsp; My code to do this is:&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; cllm = new CLLocationManager();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; cllm.DesiredAccuracy = 1000;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; cllm.StartMonitoringSignificantLocationChanges();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; cllm.StartUpdatingHeading();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; cllm.StartUpdatingLocation();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; cllm.UpdatedLocation += HandleCllmUpdatedLocation; // an event to handle changes&lt;br /&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;and that seems to be it.&amp;nbsp; I&amp;#39;m getting device updates in the bacground.&amp;nbsp; Life seems to be pretty good on this.&amp;nbsp; FYI, you might need to set your values differently, but this should get the point across.&lt;br /&gt;&lt;/p&gt;&lt;img src="http://morewally.com/cs/aggbug.aspx?PostID=1860" width="1" height="1"&gt;</description><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/iphone/default.aspx">iphone</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/monotouch/default.aspx">monotouch</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/monotouch+development/default.aspx">monotouch development</category></item><item><title>Thoughts on Windows Phone 7 - Android - iPhone - Blackberry</title><link>http://morewally.com/cs/blogs/wallym/archive/2010/08/30/thoughts-on-windows-phone-7.aspx</link><pubDate>Mon, 30 Aug 2010 17:00:00 GMT</pubDate><guid isPermaLink="false">29a72425-8e70-4836-ba80-85c822e0df2a:1859</guid><dc:creator>wallym</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Now, we&amp;#39;re 8-9 months down the road from my last posts on Windows Phone, Google Android, and the general mobile marketplace.&amp;nbsp; Wow, how things have changed.&amp;nbsp; First off, Google Android has really taken off in its number of units in the marketplace.&amp;nbsp; While I wasn&amp;#39;t the first person to complain about the Droid line of phones, that didn&amp;#39;t stop people from buying them.&amp;nbsp; HTC has released a line of Android Phones.&amp;nbsp; I bought the HTC EVO 4g.&amp;nbsp; These are impressive devices.&amp;nbsp; &lt;/p&gt;&lt;p&gt;Now, we know that Microsoft is releasing Windows Phone 7.&amp;nbsp; A lot has been made on twitter Friday about me talking about the product.&amp;nbsp; I didn&amp;#39;t realize I was going to start such a s*** storm about it.&amp;nbsp; 52 @ replies by lunchtime.&amp;nbsp; With 140 characters, its hard to full explain your thoughts.&amp;nbsp; Anyway, I wanted to blog about this a little bit more and try and put some more of my thoughts out there.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;We need lots of mobile devices out in the marketplace.&amp;nbsp; These devices will have various form factors.&amp;nbsp; Its about hitting a market segment that will buy your product.&lt;/li&gt;&lt;li&gt;There is constant turnover in the mobile device marketplace.&amp;nbsp; If you don&amp;#39;t buy an iPhone, Windows Phone, Android device today, you might next year.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Microsoft keeps telling me to develop for their device.&amp;nbsp; Ok, fine.&amp;nbsp; Tell me &amp;quot;What you are doing to get your device into 20-30-40 million users hands next calendar year?&amp;quot;&amp;nbsp; Time is money, and because its my time, it doesn&amp;#39;t come from some type of magical bucket of money.&amp;nbsp; My time is valuable.&amp;nbsp; I don&amp;#39;t want to waste it on a platform that you aren&amp;#39;t pushing or is a dead end.&amp;nbsp; What is your strategy to get your product into enough users hands to make my investment in time valuable?&amp;nbsp; I keep asking this because I don&amp;#39;t get a satisfactory answer.&amp;nbsp; In May, the answer was &amp;quot;I can&amp;#39;t talk about it now because plans are still be formalized.&amp;quot;&amp;nbsp; That&amp;#39;s fine.&amp;nbsp; Its the end of August now, what&amp;#39;s the plan.&amp;nbsp; I understand that you are putting $500 million into marketing the device.&amp;nbsp; Awesome.&amp;nbsp; What segment are you going after?&amp;nbsp; I feel like you are trying to sell me sizzle, devs are meat and potatoes guys.&amp;nbsp; Trust me doesn&amp;#39;t work, show me does.&amp;nbsp; The devil is in the details folks.&lt;/li&gt;&lt;li&gt;Developing on a platform costs money.&amp;nbsp; Web HTML works well because it works across lots of platforms.&amp;nbsp; Now, develop native apps for iPhone, Android, Windows Phone 7.&amp;nbsp; How much does that cost?&lt;br /&gt;&lt;/li&gt;&lt;li&gt;What&amp;#39;s the story on Windows Phone 7 development hardware?&amp;nbsp; Who&amp;#39;s got any hardware?&amp;nbsp; I&amp;#39;ve asked on Twitter looking for devs in Knoxville with a #WP7 device. Asked for devs in Tennessee.&amp;nbsp; Still waiting on a response.&amp;nbsp; Now, I realize that there is a limited supply of dev devices, but the simulator will only take you so far.&amp;nbsp; For what I&amp;#39;m doing, the simulator isn&amp;#39;t going to cut it.&amp;nbsp; Now, I don&amp;#39;t need the hardware at this point in time. With no users, I&amp;#39;m not worried about hardware today, but when I ask when will we have access to hardware in the future, it doesn&amp;#39;t get answered.&amp;nbsp; I&amp;#39;m not asking for free hardware either.&amp;nbsp; With the iPhone, there is the iPod Touch that you can use for most of your development.&amp;nbsp; With Android, Google has the Nexus One, which is currently sold out.&amp;nbsp; I&amp;#39;d like to see some piece of hardware that I can use without having to buy a phone and its associated minutes.&amp;nbsp; I want a device.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;I think the Windows Phone 7 bootcamps are brilliant.&amp;nbsp; Run around the country doing one day training seminars on Windows Phone 7.&amp;nbsp; Brilliant.&amp;nbsp; I&amp;#39;ll see you at the Knoxville Windows Phone 7 bootcamp on September 30.&lt;/li&gt;&lt;li&gt;Android is activating 200k devices per day or some similar number.&amp;nbsp; Wow, that&amp;#39;s a big number.&amp;nbsp; Even if it&amp;#39;s worldwide, its still a big number.&amp;nbsp; Assuming that this is per working day, that&amp;#39;s about 4.5 million devices per month and 54 million devices per year.&amp;nbsp; Wow, that&amp;#39;s a big number.&amp;nbsp; Clearly Windows Phone 7 will blunt that, but its still a big number.&amp;nbsp; Still Android is there first, and that matters.&lt;/li&gt;&lt;li&gt;RIM may be the big boy of smart phones with 40% of the marketplace, but no one is building apps for their platform.&amp;nbsp; 9,000 apps for the platform?&amp;nbsp; That&amp;#39;s nothing.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Apple iPhone devices are where people are spending the most money at.&amp;nbsp; The device costs more, the minutes cost more, and the apps cost more money.&amp;nbsp; There is money there.&amp;nbsp; While there are fewer for pay apps on Android, the volume is significant and does make up for the lower for pay apps.&amp;nbsp; &lt;br /&gt;&lt;/li&gt;&lt;li&gt;Apple, Android, and RIM are the big guys in the smartphone application marketplace.&amp;nbsp; Palm was recently purchased by HP, so I suspect that they will re-emerge in 2011.&amp;nbsp; Can Windows Phone 7 make it anything better than #4 in 2011?&lt;/li&gt;&lt;li&gt;I&amp;#39;ve had conversations with three potential clients about the iPad.&amp;nbsp; No one is asking about Android or Windows tablets. It looks to me that the market wants the iPad.&lt;/li&gt;&lt;li&gt;I have reservations about the iPhone/iPad family of devices.&amp;nbsp; Not that I think that the devices are bad.&amp;nbsp; Far from it, I think the devices are very good.&amp;nbsp; The problem I have with these devices is Apple.&amp;nbsp; Their licensing terms for their SDK and devices makes me really nervous.&amp;nbsp; &lt;a href="http://www.survivaltopics.com/survival/a-scorpion-is-a-scorpion/" target="_blank"&gt;Remember the story of the scorpion and the dog&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;Android is very interesting, but the flood of all of the devices with all the versions of the product.&amp;nbsp; Now, I am impressed with the higher end devices, but not everyone is getting a high end device.&lt;/li&gt;&lt;li&gt;Nobody is developing for RIM devices at this point in time. I think Palm has even less developers.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;I guess what I am saying in all of this is that I&amp;#39;m concerned about all of the devices.&amp;nbsp; Understand what you are getting yourself into with the mobile platforms.&amp;nbsp; None are perfect.&lt;br /&gt;&lt;img src="http://morewally.com/cs/aggbug.aspx?PostID=1859" width="1" height="1"&gt;</description><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/iphone/default.aspx">iphone</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/mobile/default.aspx">mobile</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/mobile+development/default.aspx">mobile development</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/monodroid/default.aspx">monodroid</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/monotouch/default.aspx">monotouch</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/monotouch+development/default.aspx">monotouch development</category></item><item><title>Control the Excitement</title><link>http://morewally.com/cs/blogs/wallym/archive/2010/08/27/control-the-excitement.aspx</link><pubDate>Fri, 27 Aug 2010 21:00:00 GMT</pubDate><guid isPermaLink="false">29a72425-8e70-4836-ba80-85c822e0df2a:1858</guid><dc:creator>wallym</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Software developers are creatures of extremes.&amp;nbsp; They can love, love, love you one day, and hate, hate, hate you the next day.&amp;nbsp; Right now, we&amp;#39;re riding the crest of this love for MonoTouch.&amp;nbsp; Well, we all must remember that Apple is a very interesting company.&amp;nbsp; They can pull the rug out from under you at any moment.&amp;nbsp; And guess what, they don&amp;#39;t care.&amp;nbsp; Now, I&amp;#39;m a big fan of MonoTouch.&amp;nbsp; I love the idea of writing C# code to interface with the native Apple iPhone UI.&amp;nbsp; I love writing business logic in a common language.&amp;nbsp; &lt;/p&gt;&lt;p&gt;Back in April, Apple introduced a new license for their iPhone. No one knows what this new licensing really means.&amp;nbsp; Will Apple enforce this in such a way as to eliminate MonoTouch?&amp;nbsp; No one knows.&amp;nbsp; Jeff McWherter and I had a good conversation at devLink on the subject of MonoTouch and ObjectiveC for applications.&amp;nbsp; &lt;/p&gt;&lt;p&gt;The lesson to be learned is that you need to have a full, open, and honest discussion on a technology. With customers, clients, and with yourself.&amp;nbsp; The technology you are pushing won&amp;#39;t magically solve all problems in a project, solve world hunger, stop wars, or do anything earth shattering, but it will solve a specific need.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;This kinda flows into my own personal thought of: &amp;quot;You are never as good as you are when you are good and you are never as bad as you are when you are bad.&amp;quot; If Apple were to cut MonoTouch off tomorrow, wonder how we&amp;#39;ll be thought of?&amp;nbsp; Courageous risk takers or idiots that tried to spit into the wind.&amp;nbsp; Hopefully, somewhere in between.&lt;br /&gt;&lt;/p&gt;&lt;img src="http://morewally.com/cs/aggbug.aspx?PostID=1858" width="1" height="1"&gt;</description><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/Apple/default.aspx">Apple</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/iPad/default.aspx">iPad</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/iphone/default.aspx">iphone</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/monotouch/default.aspx">monotouch</category></item><item><title>VSLive!Redmond Presentation - ASP.NET 4 AJAX - UpdatePanel, WebForms, and AJAX Control Toolkit</title><link>http://morewally.com/cs/blogs/wallym/archive/2010/08/15/vslive-redmond-presentation-asp-net-4-ajax-updatepanel-webforms-and-ajax-control-toolkit.aspx</link><pubDate>Sun, 15 Aug 2010 06:45:00 GMT</pubDate><guid isPermaLink="false">29a72425-8e70-4836-ba80-85c822e0df2a:1856</guid><dc:creator>wallym</dc:creator><slash:comments>1</slash:comments><description>&lt;p&gt;I&amp;#39;ve just posted the presentation for my talk at VSLive!Redmond 2010 on &lt;a href="http://morewally.com/cs/files/folders/presentations/entry1853.aspx"&gt;&amp;quot;ASP.NET 4 AJAX - UpdatePanel, WebForms, and AJAX Control Toolkit.&amp;quot;&lt;/a&gt; - Enjoy&lt;/p&gt;&lt;p&gt;&lt;a href="http://morewally.com/cs/files/folders/presentations/entry1854.aspx"&gt;Source Code&lt;/a&gt; &lt;br /&gt;&lt;/p&gt;&lt;img src="http://morewally.com/cs/aggbug.aspx?PostID=1856" width="1" height="1"&gt;</description><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/2010/default.aspx">2010</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/AJAX/default.aspx">AJAX</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/ASP.NET/default.aspx">ASP.NET</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/Remond/default.aspx">Remond</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/UpdatePanel/default.aspx">UpdatePanel</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/vslive/default.aspx">vslive</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/webforms/default.aspx">webforms</category></item><item><title>VSLive!Redmond Presentation - What's New in ASP.NET 4 WebForms</title><link>http://morewally.com/cs/blogs/wallym/archive/2010/08/14/vslive-redmond-presentation-what-s-new-in-asp-net-4-webforms.aspx</link><pubDate>Sat, 14 Aug 2010 06:45:00 GMT</pubDate><guid isPermaLink="false">29a72425-8e70-4836-ba80-85c822e0df2a:1855</guid><dc:creator>wallym</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;I&amp;#39;ve just posted the presentation file from my talk at VSLive!Redmond on &lt;a href="http://morewally.com/cs/files/folders/presentations/entry1852.aspx"&gt;&amp;quot;What&amp;#39;s New in ASP.NET 4 WebForms.&amp;quot;&lt;/a&gt; Enjoy.&lt;/p&gt;&lt;p&gt;&lt;a href="http://morewally.com/cs/files/folders/presentations/entry1854.aspx"&gt;Source Code.&lt;/a&gt; &lt;br /&gt;&lt;/p&gt;&lt;img src="http://morewally.com/cs/aggbug.aspx?PostID=1855" width="1" height="1"&gt;</description><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/2010/default.aspx">2010</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/ASP.NET/default.aspx">ASP.NET</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/Remond/default.aspx">Remond</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/vslive/default.aspx">vslive</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/webforms/default.aspx">webforms</category></item><item><title>There's a Language for that...........#6</title><link>http://morewally.com/cs/blogs/wallym/archive/2010/08/07/there-s-a-language-for-that-6.aspx</link><pubDate>Sat, 07 Aug 2010 06:00:00 GMT</pubDate><guid isPermaLink="false">29a72425-8e70-4836-ba80-85c822e0df2a:1850</guid><dc:creator>wallym</dc:creator><slash:comments>0</slash:comments><description>Want to support the iPad and the iPhone with one universal executable? There&amp;#39;s a language for that: MonoTouch.&lt;br /&gt;&lt;img src="http://morewally.com/cs/aggbug.aspx?PostID=1850" width="1" height="1"&gt;</description></item><item><title>There's a Language for that...........#5</title><link>http://morewally.com/cs/blogs/wallym/archive/2010/08/06/there-s-a-language-for-that-5.aspx</link><pubDate>Fri, 06 Aug 2010 06:00:00 GMT</pubDate><guid isPermaLink="false">29a72425-8e70-4836-ba80-85c822e0df2a:1849</guid><dc:creator>wallym</dc:creator><slash:comments>0</slash:comments><description>Want to take your existing C#/.NET knowledge to the iPhone and not have to learn a completely new way of doing things? There&amp;#39;s a language for that: MonoTouch.&lt;br /&gt;&lt;img src="http://morewally.com/cs/aggbug.aspx?PostID=1849" width="1" height="1"&gt;</description></item><item><title>There's a Language for that...........#4</title><link>http://morewally.com/cs/blogs/wallym/archive/2010/08/05/there-s-a-language-for-that-4.aspx</link><pubDate>Thu, 05 Aug 2010 06:00:00 GMT</pubDate><guid isPermaLink="false">29a72425-8e70-4836-ba80-85c822e0df2a:1848</guid><dc:creator>wallym</dc:creator><slash:comments>0</slash:comments><description>Want to code like its 2010 and not 1984 and Big Brother is watching you? There&amp;#39;s a language for that: MonoTouch&lt;br /&gt;&lt;img src="http://morewally.com/cs/aggbug.aspx?PostID=1848" width="1" height="1"&gt;</description></item><item><title>There's a Language for that...........#3</title><link>http://morewally.com/cs/blogs/wallym/archive/2010/08/04/there-s-a-language-for-that-3.aspx</link><pubDate>Wed, 04 Aug 2010 06:00:00 GMT</pubDate><guid isPermaLink="false">29a72425-8e70-4836-ba80-85c822e0df2a:1847</guid><dc:creator>wallym</dc:creator><slash:comments>0</slash:comments><description>Want to take your .NET knowledge to the iPhone?&amp;nbsp; There&amp;#39;s a language for that: MonoTouch&lt;img src="http://morewally.com/cs/aggbug.aspx?PostID=1847" width="1" height="1"&gt;</description></item><item><title>There's a Language for that...........#2</title><link>http://morewally.com/cs/blogs/wallym/archive/2010/08/03/there-s-a-language-for-that-2.aspx</link><pubDate>Tue, 03 Aug 2010 06:00:00 GMT</pubDate><guid isPermaLink="false">29a72425-8e70-4836-ba80-85c822e0df2a:1845</guid><dc:creator>wallym</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Want to share business logic between mobile devices? There&amp;#39;s a Language for that: MonoTouch&lt;br /&gt;&lt;/p&gt;&lt;img src="http://morewally.com/cs/aggbug.aspx?PostID=1845" width="1" height="1"&gt;</description></item><item><title>There's a Language for that...........#1</title><link>http://morewally.com/cs/blogs/wallym/archive/2010/08/02/there-s-a-language-for-that.aspx</link><pubDate>Mon, 02 Aug 2010 06:00:00 GMT</pubDate><guid isPermaLink="false">29a72425-8e70-4836-ba80-85c822e0df2a:1844</guid><dc:creator>wallym</dc:creator><slash:comments>0</slash:comments><description>Want to program the iPhone? There&amp;#39;s a language for that: MonoTouch.&lt;br /&gt;&lt;img src="http://morewally.com/cs/aggbug.aspx?PostID=1844" width="1" height="1"&gt;</description></item><item><title>Learn iPhone Programming for Free with Wrox, Novell, and McClure</title><link>http://morewally.com/cs/blogs/wallym/archive/2010/07/29/learn-iphone-programming-for-free-with-wrox-novell-and-mcclure.aspx</link><pubDate>Thu, 29 Jul 2010 19:15:00 GMT</pubDate><guid isPermaLink="false">29a72425-8e70-4836-ba80-85c822e0df2a:1843</guid><dc:creator>wallym</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Are you a .NET Developer wanting to get into developing on the Apple iPhone and iPad? &lt;img src="http://www.wrox.com/remcover.cgi?isbn=0470590734" title="MonoTouch ebook" alt="MonoTouch ebook" width="100" align="right" height="129" /&gt;Learn
 iPhone Programming for Free with Wrox, Novell, and McClure. Wrox/Wiley 
has released Wallace McClure’s Wrox Blox on Novell’s MonoTouch for 
free.&amp;nbsp; The MonoTouch Wrox Blox is available at: &lt;a href="http://www.wrox.com/WileyCDA/Section/id-406371.html" target="_blank"&gt;http://www.wrox.com/WileyCDA/Section/id-406371.html&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;For
 .NET Developers, Novell has produced the Trial Version of MonoTouch.&amp;nbsp; 
The Trial Version is a free download that allows a developer to write 
and build applications and test them in the iPhone simulator.&amp;nbsp; The Trial
 Version is available at: &lt;a href="http://monotouch.net/DownloadTria" target="_blank"&gt;http://monotouch.net/DownloadTria&lt;/a&gt;l.&lt;br /&gt;&lt;br /&gt;Wallace
 B. (Wally) McClure, President of Scalable Development, Inc., is the 
author of the Wrox Blox on Novell’s MonoTouch and the author of the 
updated Professional iPhone Programming with MonoTouch recently 
released.&amp;nbsp; In addition, McClure has produced a downloadable video 
podcast introducing MonoTouch.&amp;nbsp; The video is available for download from
 &lt;a href="http://aspnetpodcast.com" target="_blank"&gt;http://aspnetpodcast.com&lt;/a&gt; or directly at:&lt;a href="http://bit.ly/deMCoJ" target="_blank"&gt;http://bit.ly/deMCoJ&lt;/a&gt;.&lt;br /&gt;&lt;/p&gt;
&amp;quot;Want to program the iPhone? Want to share business logic between mobile devices? There&amp;#39;s a language for that: MonoTouch.&amp;quot; &lt;img src="http://morewally.com/cs/aggbug.aspx?PostID=1843" width="1" height="1"&gt;</description><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/c_2300_/default.aspx">c#</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/Community+News/default.aspx">Community News</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/mono/default.aspx">mono</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/monodevelop/default.aspx">monodevelop</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/monotouch/default.aspx">monotouch</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/monotouch+development/default.aspx">monotouch development</category></item><item><title>DevConnections in Las Vegas</title><link>http://morewally.com/cs/blogs/wallym/archive/2010/07/28/devconnections-in-las-vegas.aspx</link><pubDate>Wed, 28 Jul 2010 21:30:00 GMT</pubDate><guid isPermaLink="false">29a72425-8e70-4836-ba80-85c822e0df2a:1842</guid><dc:creator>wallym</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;I&amp;#39;ll be at ASP.NET Connections (aka DevConnections) in Las Vegas this November at the Madalay Bay Resort.&amp;nbsp; I&amp;#39;m really excited about this.&amp;nbsp; I&amp;#39;ll be speaking on:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;ASP.NET 4 WebForms - What&amp;#39;s New, Cool, and Hip!&lt;/li&gt;&lt;li&gt;ASP.NET AJAX - UpdatePanel, WebForms, and the AJAX Control ToolKit. &lt;br /&gt;&lt;/li&gt;&lt;li&gt;An Introduction to Windows Azure.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;img src="http://morewally.com/cs/aggbug.aspx?PostID=1842" width="1" height="1"&gt;</description><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/Community+News/default.aspx">Community News</category></item><item><title>Houston TechFest</title><link>http://morewally.com/cs/blogs/wallym/archive/2010/07/28/houston-techfest.aspx</link><pubDate>Tue, 27 Jul 2010 23:00:00 GMT</pubDate><guid isPermaLink="false">29a72425-8e70-4836-ba80-85c822e0df2a:1841</guid><dc:creator>wallym</dc:creator><slash:comments>0</slash:comments><description>I&amp;#39;m looking forward to the &lt;a href="http://www.houstontechfest.com/dotnetnuke/default.aspx" target="_blank"&gt;Houston TechFest&lt;/a&gt;.&amp;nbsp; I&amp;#39;ll be speaking on MonoTouch, ASP.NET WebPages, and MonoDroid (if its been available as beta at that point).&amp;nbsp; I&amp;#39;m excited about this.&lt;br /&gt;&lt;img src="http://morewally.com/cs/aggbug.aspx?PostID=1841" width="1" height="1"&gt;</description><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/Community+News/default.aspx">Community News</category></item><item><title>VSLive Redmond Coming Up</title><link>http://morewally.com/cs/blogs/wallym/archive/2010/07/27/vslive-redmond-coming-up.aspx</link><pubDate>Tue, 27 Jul 2010 21:15:00 GMT</pubDate><guid isPermaLink="false">29a72425-8e70-4836-ba80-85c822e0df2a:1840</guid><dc:creator>wallym</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;I&amp;#39;m heading out to VSLive next week.&amp;nbsp; I&amp;#39;m really excited about this.&amp;nbsp; I&amp;#39;ll be speaking on:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;ASP.NET 4 WebForms - What&amp;#39;s New, Cool, and Hip!&lt;/li&gt;&lt;li&gt;ASP.NET AJAX - UpdatePanel, WebForms, and the AJAX Control ToolKit.&amp;nbsp;&lt;/li&gt;&lt;/ul&gt;I&amp;#39;m really excited about this. If you are there, come up and introduce yourself.&lt;br /&gt;&lt;img src="http://morewally.com/cs/aggbug.aspx?PostID=1840" width="1" height="1"&gt;</description><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/Community+News/default.aspx">Community News</category></item><item><title>Poem to MonoTouch</title><link>http://morewally.com/cs/blogs/wallym/archive/2010/07/22/poem-to-monotouch.aspx</link><pubDate>Thu, 22 Jul 2010 17:30:00 GMT</pubDate><guid isPermaLink="false">29a72425-8e70-4836-ba80-85c822e0df2a:1836</guid><dc:creator>wallym</dc:creator><slash:comments>3</slash:comments><description>&lt;p&gt;If you missed my poem to &lt;a href="http://twitter.com/wbm" target="_blank"&gt;MonoTouch this morning on Twitter&lt;/a&gt;, here&amp;#39;s the full version:&lt;/p&gt;
&lt;p&gt;&lt;span class="entry-content"&gt;Oh MonoTouch, How do I love thee? Let me reference count the ways.&lt;/span&gt; &lt;br /&gt;&lt;span class="entry-content"&gt;I love thee to the depth and width and height of the threads I can run&lt;br /&gt;&lt;/span&gt;&lt;span class="entry-content"&gt;&lt;span class="entry-content"&gt;and my battery can reach, when awaiting an event to occur &lt;br /&gt;&lt;span class="entry-content"&gt;For the ends of Video and ideal Audio and Capture and Books. &lt;br /&gt;&lt;span class="entry-content"&gt;I love thee to the level of getting upto speed without learning ObjC. &lt;br /&gt;&lt;span class="entry-content"&gt;Most quiet gc, by getting an app done now and not spending days and days on a new framework.&lt;br /&gt;&lt;span class="entry-content"&gt;I love thee freely trial edition, as devs strive to code by day and by night.&lt;br /&gt;&lt;span class="entry-content"&gt;I love thee purely, as they turn from desktop and web to mobile with the world in our hands&lt;br /&gt;&lt;span class="entry-content"&gt;In my old griefs of html, and with my childhood&amp;#39;s faith in all platforms.&lt;br /&gt;&lt;span class="entry-content"&gt;I love thee with a love I seemed to lose for WebForms, MVC, WCF, and all things religous development zealots argue over &lt;br /&gt;&lt;span class="entry-content"&gt;With my lost saints Miguel, and Geoff, and Joseph, and Novell --- I love thee with the breath&lt;br /&gt;&lt;span class="entry-content"&gt;Smiles, tears, of all my life! --- and, if Steve Jobs choose, &lt;br /&gt;&lt;span class="entry-content"&gt;I shall but love thee better after Apple gives in and publically accepts us in the AppStore.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="entry-content"&gt;&lt;span class="entry-content"&gt;&lt;span class="entry-content"&gt;&lt;span class="entry-content"&gt;&lt;span class="entry-content"&gt;&lt;span class="entry-content"&gt;&lt;span class="entry-content"&gt;&lt;span class="entry-content"&gt;&lt;span class="entry-content"&gt;&lt;span class="entry-content"&gt;&lt;span class="entry-content"&gt;&lt;span class="entry-content"&gt;&lt;span class="entry-content"&gt;(With apologies to Elizabeth Barrett Browning)&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;img src="http://morewally.com/cs/aggbug.aspx?PostID=1836" width="1" height="1"&gt;</description><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/monotouch/default.aspx">monotouch</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/monotouch+development/default.aspx">monotouch development</category></item><item><title>DevConnections Las Vegas</title><link>http://morewally.com/cs/blogs/wallym/archive/2010/07/16/devconnections-las-vegas.aspx</link><pubDate>Fri, 16 Jul 2010 12:15:00 GMT</pubDate><guid isPermaLink="false">29a72425-8e70-4836-ba80-85c822e0df2a:1835</guid><dc:creator>wallym</dc:creator><slash:comments>0</slash:comments><description>I&amp;#39;m happy to announce that I will be speaking at DevConnections in Las Vegas in November.&amp;nbsp; More info on this is coming.&lt;br /&gt;&lt;img src="http://morewally.com/cs/aggbug.aspx?PostID=1835" width="1" height="1"&gt;</description><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/Community+News/default.aspx">Community News</category></item><item><title>VSLive Orlando</title><link>http://morewally.com/cs/blogs/wallym/archive/2010/07/15/vslive-orlando.aspx</link><pubDate>Thu, 15 Jul 2010 22:00:00 GMT</pubDate><guid isPermaLink="false">29a72425-8e70-4836-ba80-85c822e0df2a:1834</guid><dc:creator>wallym</dc:creator><slash:comments>0</slash:comments><description>&lt;div class="BlogPostContent"&gt;
								&lt;p&gt;I&amp;#39;m excited to announce that I am speaking at &lt;a href="http://vslive.com/" target="_blank"&gt;VSLive Orlando&lt;/a&gt;
 in November.&amp;nbsp; My two sessions are:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;What&amp;#39;s New in ASP.NET 4 
WebForms.&lt;/li&gt;&lt;li&gt;AJAX with the UpdatePanel, WebForms, and the AJAX 
Control Toolkit.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;If you plan to attend or do attend, please 
send me a message.&amp;nbsp; I love to meet people and talk technology with them.
 &lt;br /&gt;&lt;/p&gt;&lt;p&gt;Here&amp;#39;s some info on each of my sessions:&lt;/p&gt;&lt;p&gt;Session 1&lt;br /&gt;Title:

 What’s new in ASP.NET 4 WebForms&lt;br /&gt;Abstract: WebForms has been a 
feature of ASP.NET since the 1.0 release.&amp;nbsp; Many successful applications 
have been built based on WebForms.&amp;nbsp; Recently, it seems that all of the 
excitement in ASP.NET has been on MVC.&amp;nbsp; With Version 4, the ASP.NET team
 has added a number of new features to WebForms.&amp;nbsp; This session will 
explore the new features in ASP.NET 4 WebForms with an emphasis on:&lt;br /&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Routing.&amp;nbsp;

 Routing allows an application to accept URLs that are readable to 
users, are optimized to improve search engine ranking, and do not 
necessarily map to physical files.&amp;nbsp;&lt;/li&gt;&lt;li&gt;ViewState.&amp;nbsp; ViewState has 
been a part of ASP.NET since its initial 1.0 release.&amp;nbsp; ViewState allows 
an ASP.NET WebForm to respond to events during a post back.&amp;nbsp; 
Unfortunately, ViewState also can increase the size of page beyond what 
is actually required unless a developer is careful and pays attention to
 issues with ViewState. With ASP.NET 4 ViewState, we’ll explore 
improvements in the ability to control ViewState.&lt;/li&gt;&lt;li&gt;Client IDs.&amp;nbsp; 
Before .NET 4.0, the generated Client IDs in WebForms can be very 
confusing.&amp;nbsp; With .NET 4.0, the ability to control the generated Client 
IDs in WebForms has been greatly enhanced.&amp;nbsp; We’ll look at these new 
features for Client IDs in ASP.NET 4.0 WebForms.&lt;/li&gt;&lt;li&gt;CSS and HTML 
Improvements.&amp;nbsp; ASP.NET 4 WebForms renders HTML that is compliant with 
the last HTML standards.&amp;nbsp; We’ll look at how these improvements effect 
controls and what developers should be aware of.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Benefit
 to the Attendee:&lt;br /&gt;By attending this session, ASP.NET Developers 
currently using WebForms will learn about the new features in ASP.NET 4.
 Developers will be able to immediately apply these features to their 
existing WebForms applications that they are upgrading to ASP.NET 4 and 
to new ASP.NET 4 applications that they are building with WebForms.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Session

 2&lt;br /&gt;Title: AJAX with the UpdatePanel, WebForms, and the AJAX Control 
Toolkit&lt;br /&gt;Abstract:&lt;br /&gt;&lt;br /&gt;AJAX is a technology that provides a 
significant amount of user interaction within the web browser.&amp;nbsp; With 
ASP.NET 2 AJAX, Microsoft shipped a set of client side and server side 
AJAX technologies.&amp;nbsp; Recently, Microsoft announced that they are 
transitioning their client side AJAX technologies; however, they are 
keeping and will continue to build on the server side AJAX technology.&amp;nbsp; 
This session will focus on the server side AJAX technologies in the 
UpdatePanel.&amp;nbsp; With the UpdatePanel, the ASP.NET team has provided an 
easy way to integrate AJAX functionality into WebForms applications.&amp;nbsp; 
This session will focus on:&lt;br /&gt;UpdatePanel.&lt;br /&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Introduction.&amp;nbsp;

 The UpdatePanel will be introduced along with some of the rules that 
must be followed to use it properly.&lt;/li&gt;&lt;li&gt;History.&amp;nbsp; Users have been 
trained that clicking on the back button will take the application to 
the previous state of the application. We’ll explore how to implement 
support for History, so that when a user clicks the back button they get
 the action that they expect.&lt;/li&gt;&lt;li&gt;Client side events. The 
UpdatePanel exposes a set of client side events that are similar to 
server side events.&amp;nbsp; We’ll look at what these are good for and how to 
implement them.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;WebForms.&amp;nbsp; &lt;/p&gt;&lt;ul&gt;&lt;li&gt;We’ll look at some of
 the improvements in ASP.NET 4 WebForms that make working with AJAX 
simpler.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;AJAX Control Toolkit.&lt;br /&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Introduction.&amp;nbsp;

 We’ll do an introduction to the AJAX Control Toolkit.&amp;nbsp; What is it and 
how it can help out WebForms developers.&lt;/li&gt;&lt;li&gt;Creating your own 
control just like the ones in the AJAX Control Toolkit.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;
							&lt;/div&gt;&lt;img src="http://morewally.com/cs/aggbug.aspx?PostID=1834" width="1" height="1"&gt;</description><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/Community+News/default.aspx">Community News</category></item><item><title>Apple Section 3.3.1 and MonoTouch</title><link>http://morewally.com/cs/blogs/wallym/archive/2010/07/07/apple-sectioon-3-3-1-and-monotouch.aspx</link><pubDate>Wed, 07 Jul 2010 22:00:00 GMT</pubDate><guid isPermaLink="false">29a72425-8e70-4836-ba80-85c822e0df2a:1831</guid><dc:creator>wallym</dc:creator><slash:comments>2</slash:comments><description>&lt;p&gt;My frustration with Apple has been fairly well known.&amp;nbsp; I&amp;#39;ve blogged about it numerous times over Section 3.3.1.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://morewally.com/cs/blogs/wallym/archive/2010/04/09/dear-apple-why-do-you-continue-to-give-me-the-big-middle-finger.aspx"&gt;http://morewally.com/cs/blogs/wallym/archive/2010/04/09/dear-apple-why-do-you-continue-to-give-me-the-big-middle-finger.aspx&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://morewally.com/cs/blogs/wallym/archive/2010/04/12/why-i-feel-so-strongly-about-the-apple-sdk-issue.aspx"&gt;http://morewally.com/cs/blogs/wallym/archive/2010/04/12/why-i-feel-so-strongly-about-the-apple-sdk-issue.aspx&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://morewally.com/cs/blogs/wallym/archive/2010/04/13/it-looks-like-we-now-know.aspx"&gt;http://morewally.com/cs/blogs/wallym/archive/2010/04/13/it-looks-like-we-now-know.aspx&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://morewally.com/cs/blogs/wallym/archive/2010/04/14/why-apple-won-t-change-section-3-3-1.aspx"&gt;http://morewally.com/cs/blogs/wallym/archive/2010/04/14/why-apple-won-t-change-section-3-3-1.aspx&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Now, I&amp;#39;m frustrated that Apple has Section 3.3.1.&amp;nbsp; I was frustrated yesterday, today, and will probably be frustrated tomorrow.&amp;nbsp; Having said that, up to the time of this writing, &lt;b&gt;I&amp;#39;m not familiar with any apps that have been banned from the Apple iPhone App Store due to their being written in MonoTouch&lt;/b&gt;.&amp;nbsp; Why?&amp;nbsp; I&amp;#39;m not sure.&amp;nbsp; Only Apple can answer that.&amp;nbsp; My guess is that because MonoTouch allows devs to build apps that run natively on the device, its viewed as ok.&amp;nbsp; &lt;/p&gt;&lt;p&gt;Will apps written in MonoTouch still be allowed into the App Store? I have no idea.&amp;nbsp; My guess is that if MT becomes really popular, Apple would be concerned that another company is controlling its destiny and might change, but remember, this is only speculation.&amp;nbsp; At the same time, remember, the &lt;a href="http://www.apple.com/hotnews/thoughts-on-flash/" target="_blank"&gt;Apple post on Flash&lt;/a&gt; is about Flash, not MonoTouch, PhoneGap, or anything besides Flash.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Maybe the blowup (mine and others) was over nothing. Let&amp;#39;s stop and see what happens over the next 6-9 months.&amp;nbsp; Right now, today, MonoTouch apps are being accepted.&amp;nbsp; Let&amp;#39;s focus on that&lt;br /&gt;&lt;/p&gt;&lt;img src="http://morewally.com/cs/aggbug.aspx?PostID=1831" width="1" height="1"&gt;</description><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/Apple/default.aspx">Apple</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/monotouch/default.aspx">monotouch</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/monotouch+development/default.aspx">monotouch development</category></item><item><title>MonoTouch Book is out</title><link>http://morewally.com/cs/blogs/wallym/archive/2010/07/07/monotouch-book-is-out.aspx</link><pubDate>Wed, 07 Jul 2010 10:00:00 GMT</pubDate><guid isPermaLink="false">29a72425-8e70-4836-ba80-85c822e0df2a:1829</guid><dc:creator>wallym</dc:creator><slash:comments>1</slash:comments><description>&lt;p&gt;&lt;img title="MonoTouch" alt="MonoTouch" align="left" src="http://media.wiley.com/product_data/coverImage/2X/04706378/047063782X.jpg" /&gt;&lt;a href="http://www.amazon.com/Professional-iPhone-Programming-MonoTouch-NET/dp/047063782X/ref=sr_1_1?ie=UTF8&amp;amp;s=books&amp;amp;qid=1278438426&amp;amp;sr=8-1"&gt;Our MonoTouch Book is out.&amp;nbsp; It was great working with Chris Hardy, Craig Dunn, Martin Bowling, and Rory Blyth on this book.&amp;nbsp; With this book, you&amp;#39;ll be able to use your existing knowledge of .NET&lt;/a&gt; to target the Apple iPhone.&lt;/p&gt;&lt;br /&gt;
&lt;div class="productDetail-richDataText"&gt;&lt;b&gt;What .NET C# developers need to enter the hot field of iPhone apps&lt;/b&gt; 
&lt;p&gt;iPhone applications offer a hot opportunity for developers. Until the open source MonoTouch project, this field was limited to those familiar with Apple’s programming languages. Now .NET and C# developers can join the party. &lt;i&gt;Professional iPhone Programming with MonoTouch and .NET/C#&lt;/i&gt;is the first book to cover MonoTouch, preparing developers to take advantage of this lucrative opportunity.&lt;/p&gt;
&lt;p&gt;This book is for .NET developers that are interested in creating native iPhone applications written in .NET/C#. These developers want to use their existing knowledge. While .NET developers are always interested in learning, they also recognize that learning Objective-C and the specifics of the iPhone can be overwhelming. Those developers interested in MonoTouch will recognize that the cost of MonoTouch is easily made up by the ability to quickly target the iPhone using a language that they are already familiar with.&lt;/p&gt;
&lt;p&gt;This book is designed for .NET developers that want to target the iPhone. It is designed to help you get up to speed with the iPhone, not to really teach you about the .NET Framework or C# language, which we assume you already know.&lt;/p&gt;
&lt;p&gt;This book is designed with introductory material in Chapters 1 thru 4. You should read Chapters 1 thru 4 sequentially. These chapters introduce the MonoTouch product, the basics of developing with MonoTouch and MonoDevelop, and finally, the basics of presenting data to a user with screen and data controls and how to develop a user interface for the iPhone. Once you are comfortable with these concepts, you can typically move from one chapter to another and not necessarily have to read the chapters sequentially.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;b&gt;Chapter 1 &amp;quot;Introduction to iPhone Development with MonoTouch for C# Developers&amp;quot;&lt;/b&gt;This chapter looks at how the largest segment of developers can target the smartphone with the highest mindshare, and that the smartphone is growing faster in marketshare than any other device.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Chapter 2 &amp;quot;Introduction to MonoTouch&amp;quot;&lt;/b&gt;gives you a firm foundation in MonoTouch, MonoDevelop, Interface Builder, debugging, and deploying.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Chapter 3 &amp;quot;Planning Your App&amp;#39;s UI: Exploring the Screen Controls&amp;quot;&lt;/b&gt;teaches you about creating your application&amp;#39;s UI and specifically how the UI on the iPhone can differ from UIs that you might have created before. You also explore the Input &amp;amp; Value objects from the Interface Builder Objects Library.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Chapter&amp;nbsp;4 &amp;quot;Data Controls&amp;quot;&lt;/b&gt; shows the Interface Builder Objects Library Cocoa Touch classes for Controllers, Data Views, and Windows, Views, &amp;amp; Bars.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Chapter 5 &amp;quot;Working with Data on the iPhone&amp;quot;&lt;/b&gt;looks at the SQLite database engine as well as strategies to store data off the device on a central server through SOAP and REST (using XML and JSON) without tying up the user interface.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Chapter 6 &amp;quot;Displaying Data Using Tables&amp;quot;&lt;/b&gt;looks at displaying information in a table, using tables for navigation, taking advantage of UITableView&amp;#39;s built-in editing features, and adding a search bar to a table.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Chapter 7 &amp;quot;Mapping&amp;quot;&lt;/b&gt;covers CoreLocation and MapKit, using Location Services, and adding maps and geocoding to your application.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Chapter 8 &amp;quot;Application Settings&amp;quot;&lt;/b&gt;focuses on application settings, and looks at two aspects of settings for your MonoTouch app: the Info.plist and your settings bundle. It covers what settings you might want to set in your Info.plist and why, and then looks at what code it takes to read and use the settings that you save in the settings bundle. And it also takes you through the building of the settings that you might have in a social media-type application. Going through each step, you will examine the Root.plist inside the Property List Editor and see the settings dialog that will result from it.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Chapter 9 &amp;quot;Programming with Device Hardware&amp;quot;&lt;/b&gt; covers accelerometer device orientation, and proximity detection support, networking, and developing with battery life in mind.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Chapter 10 &amp;quot;Programming with Multimedia&amp;quot;&lt;/b&gt; discussing integrating images and the image picker, watching and recording videos, playing and recording audio, and using animation&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Chapter 11 &amp;quot;Talking to Other Applications&amp;quot;&lt;/b&gt;discusses the ways you can use MonoTouch to talk to other applications on the iPhone, both Apple-built applications and those downloaded from the App Store. It also provides helpful ways of accessing the iPhone&amp;#39;s Address Book and the iPod music library.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Chapter 12 &amp;quot;Localizing for an International Audience&amp;quot;&lt;/b&gt; first defines internationalization and localization, then shows displaying translated text and images, formatting dates, times, and numbers, then extracting text for translation.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Chapter 13 &amp;quot;Programming the iPad&lt;/b&gt;&amp;quot; the capabilities of the iPad are, what new APIs and controls have been introduced that you can use in iPad-specific applications, and how to build applications that can work on both iPad and iPhone devices.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Chapter 14 &amp;quot;Just Enough Objective-C&amp;quot;&lt;/b&gt; provides you with a reference and introduction to Objective-C that will help you acquire an ability to comprehend Objective-C which is something that will come in very handy.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Chapter 15 &amp;quot;The App Store: Submitting and Marketing Your App&amp;quot;&lt;/b&gt;discusses all things App Store. First, it talks about the process that you need to go through before you are ready to submit - this includes final testing with Ad-Hoc builds and a presubmission checklist. Next it addresses actually submitting to the App Store, and then finally what to do with your app after it&amp;#39;s in the App Store. This chapter also touches on alternative monetization strategies such as ads or in app purchases.&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;
&lt;p&gt;&lt;b&gt;&lt;u&gt;A Word About Apple SDK License #3.3.1&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;There has been a lot of discussion about Apple&amp;#39;s SDK licensing restrictions and how they effect MonoTouch.&amp;nbsp; As of the time of this writing, Apple has not rejected any apps that are written in MonoTouch for inclusion in the Apple App Store.&lt;br /&gt;&lt;/p&gt;&lt;img src="http://morewally.com/cs/aggbug.aspx?PostID=1829" width="1" height="1"&gt;</description><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/.NET/default.aspx">.NET</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/Community+News/default.aspx">Community News</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/mono/default.aspx">mono</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/monotouch/default.aspx">monotouch</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/monotouch+development/default.aspx">monotouch development</category></item><item><title>VSLive Redmond</title><link>http://morewally.com/cs/blogs/wallym/archive/2010/07/06/vslive-redmond.aspx</link><pubDate>Tue, 06 Jul 2010 15:20:00 GMT</pubDate><guid isPermaLink="false">29a72425-8e70-4836-ba80-85c822e0df2a:1828</guid><dc:creator>wallym</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;I&amp;#39;m excited to announce that I am speaking at &lt;a href="http://vslive.com/" target="_blank"&gt;VSLive Redmond&lt;/a&gt;
 in August.&amp;nbsp; My two sessions are:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;What&amp;#39;s New in ASP.NET 4 
WebForms.&lt;/li&gt;&lt;li&gt;AJAX with the UpdatePanel, WebForms, and the AJAX 
Control Toolkit.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;If you plan to attend or do attend, please 
send me a message.&amp;nbsp; I love to meet people and talk technology with them.
 &lt;br /&gt;&lt;/p&gt;&lt;p&gt;Here&amp;#39;s some info on each of my sessions:&lt;/p&gt;&lt;p&gt;Session 1&lt;br /&gt;Title:
 What’s new in ASP.NET 4 WebForms&lt;br /&gt;Abstract: WebForms has been a 
feature of ASP.NET since the 1.0 release.&amp;nbsp; Many successful applications 
have been built based on WebForms.&amp;nbsp; Recently, it seems that all of the 
excitement in ASP.NET has been on MVC.&amp;nbsp; With Version 4, the ASP.NET team
 has added a number of new features to WebForms.&amp;nbsp; This session will 
explore the new features in ASP.NET 4 WebForms with an emphasis on:&lt;br /&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Routing.&amp;nbsp;
 Routing allows an application to accept URLs that are readable to 
users, are optimized to improve search engine ranking, and do not 
necessarily map to physical files.&amp;nbsp;&lt;/li&gt;&lt;li&gt;ViewState.&amp;nbsp; ViewState has 
been a part of ASP.NET since its initial 1.0 release.&amp;nbsp; ViewState allows 
an ASP.NET WebForm to respond to events during a post back.&amp;nbsp; 
Unfortunately, ViewState also can increase the size of page beyond what 
is actually required unless a developer is careful and pays attention to
 issues with ViewState. With ASP.NET 4 ViewState, we’ll explore 
improvements in the ability to control ViewState.&lt;/li&gt;&lt;li&gt;Client IDs.&amp;nbsp; 
Before .NET 4.0, the generated Client IDs in WebForms can be very 
confusing.&amp;nbsp; With .NET 4.0, the ability to control the generated Client 
IDs in WebForms has been greatly enhanced.&amp;nbsp; We’ll look at these new 
features for Client IDs in ASP.NET 4.0 WebForms.&lt;/li&gt;&lt;li&gt;CSS and HTML 
Improvements.&amp;nbsp; ASP.NET 4 WebForms renders HTML that is compliant with 
the last HTML standards.&amp;nbsp; We’ll look at how these improvements effect 
controls and what developers should be aware of.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Benefit
 to the Attendee:&lt;br /&gt;By attending this session, ASP.NET Developers 
currently using WebForms will learn about the new features in ASP.NET 4.
 Developers will be able to immediately apply these features to their 
existing WebForms applications that they are upgrading to ASP.NET 4 and 
to new ASP.NET 4 applications that they are building with WebForms.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Session
 2&lt;br /&gt;Title: AJAX with the UpdatePanel, WebForms, and the AJAX Control 
Toolkit&lt;br /&gt;Abstract:&lt;br /&gt;&lt;br /&gt;AJAX is a technology that provides a 
significant amount of user interaction within the web browser.&amp;nbsp; With 
ASP.NET 2 AJAX, Microsoft shipped a set of client side and server side 
AJAX technologies.&amp;nbsp; Recently, Microsoft announced that they are 
transitioning their client side AJAX technologies; however, they are 
keeping and will continue to build on the server side AJAX technology.&amp;nbsp; 
This session will focus on the server side AJAX technologies in the 
UpdatePanel.&amp;nbsp; With the UpdatePanel, the ASP.NET team has provided an 
easy way to integrate AJAX functionality into WebForms applications.&amp;nbsp; 
This session will focus on:&lt;br /&gt;UpdatePanel.&lt;br /&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Introduction.&amp;nbsp;
 The UpdatePanel will be introduced along with some of the rules that 
must be followed to use it properly.&lt;/li&gt;&lt;li&gt;History.&amp;nbsp; Users have been 
trained that clicking on the back button will take the application to 
the previous state of the application. We’ll explore how to implement 
support for History, so that when a user clicks the back button they get
 the action that they expect.&lt;/li&gt;&lt;li&gt;Client side events. The 
UpdatePanel exposes a set of client side events that are similar to 
server side events.&amp;nbsp; We’ll look at what these are good for and how to 
implement them.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;WebForms.&amp;nbsp; &lt;/p&gt;&lt;ul&gt;&lt;li&gt;We’ll look at some of
 the improvements in ASP.NET 4 WebForms that make working with AJAX 
simpler.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;AJAX Control Toolkit.&lt;br /&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Introduction.&amp;nbsp;
 We’ll do an introduction to the AJAX Control Toolkit.&amp;nbsp; What is it and 
how it can help out WebForms developers.&lt;/li&gt;&lt;li&gt;Creating your own 
control just like the ones in the AJAX Control Toolkit.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;img src="http://morewally.com/cs/aggbug.aspx?PostID=1828" width="1" height="1"&gt;</description><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/.NET/default.aspx">.NET</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/ASP.NET/default.aspx">ASP.NET</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/ASP.NET+WebForms/default.aspx">ASP.NET WebForms</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/Community+News/default.aspx">Community News</category></item><item><title>ASP.NET DevConnections and VSLive - 2010</title><link>http://morewally.com/cs/blogs/wallym/archive/2010/06/07/vslive-and-asp-net-devconnections-2010.aspx</link><pubDate>Mon, 07 Jun 2010 13:00:00 GMT</pubDate><guid isPermaLink="false">29a72425-8e70-4836-ba80-85c822e0df2a:1827</guid><dc:creator>wallym</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;I&amp;#39;m excited to announce that I&amp;#39;ll be speaking at ASP.NET Connections / DevConnections in November, 2010 in Las Vegas, NV.&amp;nbsp; I&amp;#39;ll be speaking on:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;div&gt;What&amp;#39;s New in ASP.NET 4 WebForms.&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;ASP.NET AJAX with the UpdatePanel, WebForms, and the AJAX Control Toolkit.&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;Introduction to Windows Azure.&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;I&amp;#39;m really excited about this.&amp;nbsp; Many thanks to Paul Litwin and Dan Wahlin.&lt;/p&gt;
&lt;p&gt;This is in addition to my speaking at VSLive Redmond in August.&lt;/p&gt;&lt;img src="http://morewally.com/cs/aggbug.aspx?PostID=1827" width="1" height="1"&gt;</description><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/Community+News/default.aspx">Community News</category></item><item><title>ASP.NET Podcast Show #142 - MonoTouch - iPhone Development with .NET/C# - Video &amp; Audio</title><link>http://morewally.com/cs/blogs/wallym/archive/2010/06/03/asp-net-podcast-142-monotouch-iphone-development-with-net-c-video-amp-audio.aspx</link><pubDate>Thu, 03 Jun 2010 16:00:00 GMT</pubDate><guid isPermaLink="false">29a72425-8e70-4836-ba80-85c822e0df2a:1824</guid><dc:creator>wallym</dc:creator><slash:comments>2</slash:comments><description>&lt;p&gt;&lt;a href="http://aspnetpodcast.com/CS11/blogs/asp.net_podcast/archive/2010/06/03/asp-net-podcast-142-monotouch-iphone-development-with-net-c-video-audio.aspx" target="_blank"&gt;Link to original post&lt;/a&gt;. &lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.scalabledevelopment.com/ftp/ScalabilityWithDotNet.xml"&gt;Subscribe
 to Everything&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://www.scalabledevelopment.com/ftp/ASPNetPodcast-wmv.xml"&gt;Subscribe
 to WMV&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://www.scalabledevelopment.com/ftp/ASPNetPodcast-MP4.xml"&gt;Subscribe
 to M4V&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://www.scalabledevelopment.com/ftp/ASPNetPodcast-MP3.xml"&gt;Subscribe
 to MP3&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://www.aspnetpodcast.com/VideoFiles/ASPNETPodcast20100603-MonoTouchTalk.wmv" target="_blank"&gt;Download
 WMV&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://www.aspnetpodcast.com/VideoFiles/ASPNETPodcast20100603-MonoTouchTalk.m4v"&gt;Download
 M4V&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://www.aspnetpodcast.com/VideoFiles/ASPNETPodcast20100603-MonoTouchTalk.mov"&gt;Download
 MOV&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://www.aspnetpodcast.com/podcastfiles/ASPNETPodcast20100603-MonoTouchTalk.mp3"&gt;Download
 MP3&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Show Notes: &lt;/p&gt;&lt;ul&gt;&lt;li&gt;Apple, Developers, and Licensing.&lt;/li&gt;&lt;li&gt;Why Develop on the iPhone.&lt;/li&gt;&lt;li&gt;What is Mono and MonoTouch.&lt;/li&gt;&lt;li&gt;Getting started with a Hello World style application.&lt;/li&gt;&lt;li&gt;UITableView with a custom table cell.&lt;/li&gt;&lt;li&gt;Acceleration. Note: There is a shake event, this is done to show acceleration.&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.amazon.com/Building-iPhone-Applications-Developer-MonoTouch/dp/B003A6RCF2/ref=sr_1_2?ie=UTF8&amp;amp;s=books&amp;amp;qid=1275577352&amp;amp;sr=8-2" target="_blank"&gt;MonoTouch ebook&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.amazon.com/Professional-iPhone-Programming-MonoTouch-NET/dp/047063782X/ref=sr_1_1?ie=UTF8&amp;amp;s=books&amp;amp;qid=1275577352&amp;amp;sr=8-1" target="_blank"&gt;Professional iPhone Development wit MonoTouch and .NET/C#.&lt;/a&gt; &lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;PS.&amp;nbsp; This show is a little different than the others.&amp;nbsp; It was originally recorded for a user group that I am not able to travel to.&lt;br /&gt;&lt;/p&gt;
&lt;img src="http://morewally.com/cs/aggbug.aspx?PostID=1824" width="1" height="1"&gt;</description><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/.NET/default.aspx">.NET</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/Apple/default.aspx">Apple</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/c_2300_/default.aspx">c#</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/iphone/default.aspx">iphone</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/monodevelop/default.aspx">monodevelop</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/monotouch/default.aspx">monotouch</category><category domain="http://morewally.com/cs/blogs/wallym/archive/tags/monotouch+development/default.aspx">monotouch development</category></item></channel></rss>