Wallace B. McClure
All About Wally McClure - The musings of Wallym on Web, HTML5, Mobile, Xamarin.iOS, Xamarin.Android, and Windows Azure.
-
Visual Studio 2010 Beta 1 and .NET 4.0 Beta 1 on msdn downloads
Since no one else has said it, I will. Visual Studio 2010 Beta 1 and .NET 4.0 Beta 1 are on msdn for subscribers. Just stay off until my download is complete. ;-)
-
ASP.NET Podcast Show #140 - ASP.NET 4.0 Ajax Databinding
-
ASP.NET Podcast Show #139 - David Penton and Pat Helland on Cloud Computing - audio
-
Codestock Session Submissions
If you are not familiar with it, CodeStock is June 26-27 in Knoxville, TN. If you have not submitted your talk, do so now. Run, don't walk over to http://www.codestock.org/Speakers.aspx and submit your session. Session submissions are due by the end of today (March 31).
-
More things that I have learned with Azure
I've been working on this application to run on Windows Azure. I wanted to share a few things that I have learned. I'm not sure if I have missed these being covered else where, but I want to bring them up here for my own knowledge. I find that I remember things much better if I blog them than if I put them on twitter.
-
More reminders / gotchas from the trenches with Azure
I've been working on setting up my VPC for Azure's March CTP. This is a fresh install. I had everything installed. Here are a couple of gotchas that you have to remember:
-
ASP.NET 4.0 AJAX - Caching Data on the client
-
Twitter API - Submit a post in C#
I used C# and WCF, but I could have just as easily used an ASMX web service. This code is fairly simple. No I didn't write it initially. I found it online (Hey, we all have to start somewhere). I massaged it a little to fit my needs and boom, here it is. I have decided to leave the comments for the original code sample in the post. Note: This code will not run as listed. You have to have a password. This code has that as a shared variable, but I'm not showing that to you, seriously. I hope that this is of some help to you.
-
Why am I writing against the Twitter API directly?
Yeah, so some of my friends asked me why I am not using a twitter library instead of calling the api directly. Yeah, I'm wondering that to. Seriously, the reason why I am doing that is that .net libraries to call out to twitter that I tried under VS 2008, did not work with Windows Azure. These libraries seemed to generate a security exception. Given azure's security requirements being a little more than regular asp.net, I decided to just drop the search for a library and make my calls on my own. Not sure if its a good decision or not, but its what I did.
-
ASP.NET 4.0 AJAX - Dynamic update to the DOM