Thursday, February 23, 2006
Thea Burger went to a Women in IT networking event. She met a woman who made a startling comment when Thea introduced herself as a devloper. There is now a funny ongoing thread of comments about this on her post...

Don't Forget: www.acehaid.org
Thursday, February 23, 2006 3:45:39 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

I think this post is just for my friend Dave who works at home and has more than his fair share of blog posts about donuts.

Rich bought a box of little chocolate covered donuts last night. I begged and pleaded with him to let me have some. He's a good husband though and tries to help me when it comes to succumbing to my dreadful addiction to chocolate. Especially as he's the one who has to hear me whine about the way my jeans fit (or don't, as the case may be).

His first response was "donuts are for people who go to work". That did not go over well since I happen to work about 12 or more hours a day. So then he tried "donuts are for people who leave the house to go to work." Boo hiss.

After he "left the house to go to work" this morning I came downstairs knowing that surely, because he loves me so very very much, he had left me a few of these little tasty treats. But they were nowhere to be found. He told me later that he had departed with the fully sealed box of donuts this morning. I had to make due with oatmeal, since the closest possible source is a 25 minute round trip drive. So here it is, nearly lunchtime, and I'm still thinking about those damned donuts!



Don't Forget: www.acehaid.org
Thursday, February 23, 2006 11:50:37 AM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
Scott Guthrie blogs about the RSS Toolkit for ASP.NET 2.0 created by Dmitry Robsman on the ASP.NET team. The toolkit exposes an RSSDataSource which you can use with any of the databinding controls in ASP.NET 2.0. Check out Scott's post for all the details and how to's.

Don't Forget: www.acehaid.org
Thursday, February 23, 2006 10:10:58 AM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

Seems pretty inane, but this is the kind of stuff one has to worry about when writing articles. Although sometimes I can leave that to the great tech editors I get to work with like Melanie Spiller. I have gotten very good at properly casing things like SqlNotification and DataSet. But [web services] was always an issue for me. So today I went onto the W3C site and found the following on this page:

"The World Wide Web is more and more used for application to application communication. The programmatic interfaces made available are referred to as Web services."

Okay, so I'm sticking with capital W and all lower case for the rest.



Don't Forget: www.acehaid.org
Thursday, February 23, 2006 9:24:42 AM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
 Wednesday, February 22, 2006

"Error Creating Window Handle" is not a .NET error, but is coming from Win32, which, in itself, is a big clue when trying to solve this problem, which I had to do today. [Read more ...]

[A DevLife post]



Don't Forget: www.acehaid.org
Wednesday, February 22, 2006 9:49:03 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
 Tuesday, February 21, 2006
Tuesday, February 21, 2006 8:47:28 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

I can barely contain my excitement over this article, "Practical Tips for Boosting the Performance of Windows Forms Apps" by Milena Salman in MSDN Mag (March 06). I read most of it this morning over breakfast and came down to my office with the sole intent of opening up the windows forms app I am getting ready to re-deploy in it's shiny new .NET 2.0 makeover and finding any place that I can apply all of the awesome advice Milena dishes out in this article.

Of course, now it's 2:00 and if I can just turn off Outlook, I.M. and the phone, I might actually get started on this.



Don't Forget: www.acehaid.org
Tuesday, February 21, 2006 1:52:50 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

I have mentioned my use of the XCeed streaming compression for returning data from web services a number of times in this blog. Here is a post when I first discovered that it reduced a 2.9 minute download of  4 MB to 12 seconds! I have since mentioned it a few times but never showed exactly how it is coded. Last night Rod Paddock pinged me to find out if I thought that component would work for him and it turned out he had the exact same scenario as I have been using it for. Therefore I showed him my code and thought I would put it here as well.

The key to all of this is that the component compresses bytes, so whatever you are returning, you want to convert it to bytes first. I'm sure this may make some web service purists cringe, but is it any different than returning a binary attachment with MTOM - which is a W3C standard? (I'm open to further education on this, my purist friends!)

Anyway, back to stream compression.

Let's say you have a .NET client to .NET service scenario and are writing both ends. (That is a setup to avoid any rotten tomatoes for using a dataset in this example :-) ).

On the web service end, I have a method that accepts the dataset, converts it to a byte array, compresses that into another byte array using XCeed QuickCompression class and then returns this compressed byte array.

Using ms As New System.IO.MemoryStream
 ds.WriteXml(ms)
 Dim bytearray(ms.Length) As Byte
 
bytearray = ms.GetBuffer
 
Dim CompressedBytes() As Byte
 
CompressedBytes = QuickCompression.Compress(bytearray, CompressionMethod.Deflated, CompressionLevel.Normal)
 
Return CompressedBytes
End Using 

On the client end, having called this web service operation, I decompress the received bytes into a new byte array, then read that byte array into a new DataSet. Et Voila!

Dim ds As New DataSet
Dim compressedBytes() As Byte = WSProxy.GetDataSetasCompressedBytes
Dim byteArray() As Byte
= QuickCompression.Decompress(compressedBytes)
Using ms As New
MemoryStream
  ms.Write(byteArray, 0, byteArray.Length)
  ms.Position = 0
 
ds.ReadXml(ms)
End Using

I remember when I was first looking for a means of doing this and reading about this component, it wasn't obvious how to do this in a web service, so I had a pointer from someone in tech support as to how to accomplish this.

I have used this combined with WSE 2.0 and now with WSE 3.0 to protect this data in addition to compressing it. If you have really humongous files, you can combine compression with MTOM in WSE 3.0 as well. I'll have to check this out with WCF at some point.



Don't Forget: www.acehaid.org
Tuesday, February 21, 2006 10:23:57 AM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
 Monday, February 20, 2006
I'm looking at Rod Paddock's editorial in the current CoDe Mag issue. This is the future tehcnologies issue wiht articles on WPF, LinQ and Ajax. In the editorial he says that there is going to be a 6 article series on WCF starting with the next issue. I'm really looking forward to this. Especially considering who is going to be writing some of these: Michele Leroux Bustamante, Juval Lowy, Christian Weyer.

Don't Forget: www.acehaid.org
Monday, February 20, 2006 9:37:21 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

Ex-Microsoftie Alec Saunders' teenage boys believe they have found a really good use for a piece of carpentry (as opposed to computer) hardware. I'm married to a carpenter who is in many ways like a teenage boy. But I don't think he'll be trying out this technique in the kitchen any time soon.



Don't Forget: www.acehaid.org
Monday, February 20, 2006 8:49:48 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

Here's what one software giant, Peter Norton, did with his millions ... [Read more ...]

[A DevLife post]



Don't Forget: www.acehaid.org
Monday, February 20, 2006 8:44:10 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

note - this is very clearly categorized under Purely Personal - so don't give me any grief

http://www.cnn.com/2006/POLITICS/02/20/port.security/index.html



Don't Forget: www.acehaid.org
Monday, February 20, 2006 5:48:05 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
 Sunday, February 19, 2006

Did you hear that the ADO.NET 2.0 indexing engine screams? But not in the way I was expecting! [Read more ...]

[A DevLife post]



Don't Forget: www.acehaid.org
Sunday, February 19, 2006 2:11:33 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

Sorry, couldn't help it but I can't think of Rich without thinkng of the phrase "No! Nope! Niet! Non! Negative! Nuh-huh! [shake head vigorously]!!!" in response to the question "is .net remoting dead?"

He's off to be p.m. for InfoCards, whic makes perfect sense. I think outside of Microsoft, Michele is the one person who knows anything about InfoCards so far - but that too, is a natural given her work in interop.



Don't Forget: www.acehaid.org
Sunday, February 19, 2006 9:24:47 AM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
 Saturday, February 18, 2006

Wow, what a surprise but such a great one. INETA just added 5 new speakers

Scott Cate
Richard Hundhausen
Wally McClure
Sahil Malik
Robert Green (hey Robert, where's your blog?)

Although out of this bunch I have only ever personally attended sessions by Richard, the other 4 guys are not only some of the top experts in their fields, have done a ton of presenting and written a host of books, but every one of them (including Richard) are really nice guys and will be awesome to have at your user groups.

Congrats guys.



Don't Forget: www.acehaid.org
Saturday, February 18, 2006 9:59:40 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
 Friday, February 17, 2006
Sent: Friday, February 17, 2006 4:45 PM
Subject: why do you auto highlight your pages? (via Julia Lerman Blog)

It took my like 300,000K of my memory, 50% of my CPU and 10 minutes to load one of your pages.

Why do you torture your visitors by doing highlighting at all, and even worse, by doing it on their side?

I didn't even read the content because I was so bothered by the fact that it was trying to highlight everything, including the letter 'i' whereever it occured.
 
****************************************************
 
Dear Chris,
 
Is this for real or does everyone with a dasblog get this email?
 
The only way you would possibly get this behavior is if you did a search (using the search tool built into dasblog) on the letter "i".
 
Here is the url when you use that search tool to search for "julie" in my blog:
 
 
So clicking that link you will first get a definite lag time while everyone of my posts is searhced for the word "julie" and then when it renders (with EVERY post on my entire weblog that has this word in it), it will highlight in yellow the word "julie" on the resulting page.
 
So imagine doing the search in the letter "i". It will take quite some time to search through all of my posts and then return hundreds and hundreds of posts which will take a long time to render and THEN it will go through that entire rendered page and highlight the "i" s. And if that took ONLY 10 minutes, you must have one fast machine!
 
On the other hand, if you are searching for every time I used the letter "i" in a post over the last 2+ years, you have much bigger things to worry about.
 
Julie
Friday, February 17, 2006 5:04:59 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
 Thursday, February 16, 2006
For anyone who hasn't noticed, Infragistics and Telligent are both hiring. Telligent's growth never ceases to astound me! Both are great places to work where your .NET skills and your brains will be used, challenged and heightened.

Don't Forget: www.acehaid.org
Thursday, February 16, 2006 8:05:34 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

Jean-Rene sent out a great email about DevTeach today. Here are some key elements from it:

Save 200$ by taking advantage of DevTeach early bird.
This year, we are offering an early bird of 200$ CAN for attendees that are registering before February 28th, 2006. Registered attendees have accessed to the DevTeach 2005 Archive sessions material for download.

User group members rebate at DevTeach 2006
The User Groups Rebate program is back in 2006. We are offering 50.00$ off the registration cost to all members of user groups registered with INETA, Pass, Culminis or the Universal Thread User Group Meeting Tracker. To benefit of this rebate, members need to enter a rebate code when processing their registration. This rebate can be combined with the early bird discount which gives a 200.00$ rebate until Fabruary 28th. User group leaders can request this rebate code good for 50$ off the registration by sending an email to jrroy@DevTeach.com.

Get to know our speakers by reading their blog and listening to their talk show interviews.
Most of our speakers write regularly in their blog and have been interviewed by the Dot Net Rock Talk Show or the Visual Studio Show. Get to know our speakers by reading their blog and listening to their latest interview on talk shows. The DevTeach conference include a top selection of speakers having a strong experience in various areas. Most of these speakers are presenting at major conferences around the world on a regular base and in other areas as well such as user groups, corporate training and class training.



Don't Forget: www.acehaid.org
Thursday, February 16, 2006 1:06:55 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
Hip hip hooray. Blue House Group in Richmond, VT has created a beautiful and informative website for VTSDA. There is still some tweaking to do, but the new site is now live. www.vtsda.org.

Don't Forget: www.acehaid.org
Thursday, February 16, 2006 12:38:30 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
 Wednesday, February 15, 2006

Greg was my A#1 contact for all things INETA down under, so I was happy to see this announcement on Frank Arrigo's blog this morning.



Don't Forget: www.acehaid.org
Wednesday, February 15, 2006 8:41:10 AM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  |