by community-syndication | Jan 15, 2009 | BizTalk Community Blogs via Syndication
This has been a while coming, and is a big change for me personally, so I can be verbose in my post about it.
When I joined Neudesic (wow, I’ve been blogging a long time) more than 5 years ago, I was employee #12. The company has grown rapidly to somewhere over 250 people now, offices across the US and offshore. During my tenure with Neudesic, I had the opportunity to be involved in some very advanced, high-profile and challenging projects. It was a fun ride, and I like to think that my efforts contributed to the growth of the company and its reputation.
However, all that changes this week, as I have joined Microsoft. My title is Principal SOA Architect, and my territory is the US SouthWest.
Some things will change:
- I’m not an MVP anymore as I’m no longer “independent”
- I resigned as President of the San Diego .NET user group (after something like 7 years) although I continue to lead the Connected Systems SIG, and remain a Director (they wouldn’t let me leave)
Other things will not change:
- I will continue helping customers use technology to improve processes, realizing operational cost savings and increased efficiencies
- I will continue to immerse myself in new technologies, and evangelize them
- I keep living in San Diego, although I may continue playing a role in supporting various airlines 🙂
- This blog lives on: it is my intention to continue blogging here (remember the new URL: blog.BrianLoesgen.com). This may change, but I don’t think so at this time.
The reaction I’ve gotten from everyone (inside and outside Microsoft) has been phenomenal. Everyone thinks this role is ideal for me, and I think so too. I get to harness my passion for technology to help customers, and to do so on a greater scale than before, what’s not to like? If you’ve been following my posts or seen me speak about Oslo/Dublin/BizTalk/Azure/.NET 4, you’ll know that I’m really excited about this whole wave of technologies coming towards us. This time around, I’ll surf the wave from inside.
So, I’m excited, and looking forward to the road ahead
by community-syndication | Jan 15, 2009 | BizTalk Community Blogs via Syndication
Every developer knows about and uses Reflector 😉 I use it a lot to learn about the inner workings of products. When analyzing what goes where and why, it’s easy to lose track (jumping from method to method to base class, etc.). Bookmarks are quick and easy, but don’t allow for a description to be added. If I need to get back to a certain point within my analysis two weeks (ok, ok, two minutes ;-)) later, the Type declaration from the bookmarks doesn’t help me.
Meet Reflector Favorites!
I wrote Reflector Favorites. It allows for developers to:
- Easily tag a location within Reflector, adding a description that works for you.
- Import/Export favorites between computers.
- Share favorites (they work as long as you have the right assemblies opened in Reflector).
Reflector Favorites in action.
I hope someone finds this useful. As always, use at your own risk, no warranties of any kind.
by community-syndication | Jan 14, 2009 | BizTalk Community Blogs via Syndication
I’ll be doing an “Oslo” presentation tomorrow night at the International Association of Software Architects (IASA) SoCal chapter. Meeting is at Rancho Santiago Community College District, 2323 N. Broadway, Santa Ana. Meeting starts at 7:00 pm, pizza and networking 6:30 pm. RSVP by emailing to [email protected] if you plan to attend. Hope to see you there!
A Look at Microsoft’s “Oslo” Modeling Platform
Microsoft’s “Oslo” project is part of a major initiative that represents a wave of technologies aimed at making it easier to construct, deploy and manage distributed applications and services. It is an evolution of SOA technologies, encompassing Windows Communications Foundation, the next version of .NET, BizTalk Server, Windows Workflow Foundation, Visual Studio and more. Using those technologies as a starting point and building on them, Oslo introduces a modeling language, tooling and a repository that allow the creation of role-based tools that can be used throughout an application’s lifecycle.
The impact “Oslo” will have on the developer community using Microsoft tools cannot be understated. The goal of “Oslo” is to provide a 10x productivity gain by making model-driven applications mainstream with domain-specific models, languages, and tools.
In this session we will take an early look at the architecture, some of the capabilities and tools that “Oslo” provides and enables.
Technorati Tags: Oslo,SOA,Dublin,BizTalk
by community-syndication | Jan 14, 2009 | BizTalk Community Blogs via Syndication
List of a few new downloadable posters, whitepapers and help documents. BAM Activity Monitoring in Depth for Developers Using Custom Behaviors with the BizTalk WCF Adapters, part 1 and part 2 BizTalk Server 2009 beta chm , also updated R2 chm BizTalk…(read more)
by community-syndication | Jan 14, 2009 | BizTalk Community Blogs via Syndication
In my previous post, I briefly mentioned a tool that helped with the testing of web-service consumers. I’m happy to announce that this is now publicly available on CodePlex under the moniker “MockingBird’. Here are some details about the tool – where it came from, how it helps and where it is going. (Most of […]
by community-syndication | Jan 14, 2009 | BizTalk Community Blogs via Syndication
Richard Hallgren recently sent me a link to a question that was posted on StackOverflowdealing with “Mocking Web Services consumed by Biztalk Request Response ports” and asked for my thoughts on the subject as BizUnit and BizUnitExtensions were both mentioned. There were a couple of posts there at the time, one questioning why bother, another […]
by community-syndication | Jan 14, 2009 | BizTalk Community Blogs via Syndication
In a lot of the web applications that I write, there is a need to stream a report back to the browser as a PDF. With code something like this:
//response to user’s web.
Response.Expires = 0;
Response.Buffer = true;
Response.ClearContent();
Response.AddHeader(“content-disposition”, “inline; filename=” + “output.pdf”);
Response.ContentType = “application/pdf”;
Response.BinaryWrite(outBuf);
outStream.Close();
Response.End();
Now that I am playing around with the Ajax Toolkit (specifically the ModalPopupExtender) in Visual Studio 2008, it has become clear that you really need to control whether you want asynch or full postback.
If your button that produces the report is in an UpdatePanel, and you are manipulating the Reponse to stream the report back, then you will probably want a normal postback.
This is accomplished by adding a Triggers element to your UpdatePanel as below:
<asp:UpdatePanel ID=”UpdatePanel2″ runat=”server”>
<Triggers>
<asp:PostBackTrigger ControlID=”btnApplicationOK” />
</Triggers>
In this case the button btnApplicationOK is inside the UpdatePanel so it’s default behaviour is to perform a partial (Ajax) postback and it will not like you manipulating the Reponse, so you will get an error like the one below. The fix is to add the PostBackTrigger as mentioned.
by community-syndication | Jan 14, 2009 | BizTalk Community Blogs via Syndication
Oslo is in my near future – but after birthing my REST
book – I’m excited to birth Pluralsight’s
REST course. Feb 9-12th in Irvine. If you want to learn how to build
real “web” services using WCF – please signup. (You’ll get a free copy of my
book too ;-))

Check out my new book on REST.
by community-syndication | Jan 13, 2009 | BizTalk Community Blogs via Syndication
Just a quick note to those that frequently use the tool (like me) while analyzing and gathering details from a BizTalk Server environment: I’ve just noticed that Jean-Pierre Auconie has released version 10 of his extremely useful Message Box Viewer tool. Here is the link: http://blogs.technet.com/jpierauc/pages/msgboxviewer.aspx
Thanks JP!

by community-syndication | Jan 13, 2009 | BizTalk Community Blogs via Syndication
In my previous blog post I’ve described how I consumed a service that uses ws2007FederationHttpBinding from BizTalk Server; my next task was to expose an orchestration as a WCF service that uses this binding.
In that post I’ve described what I think is a bug in BizTalk R2/2009 which prevents me from setting the issuer configuration through the UI.
When consuming such a service this configuration exists in the send port, and I’ve managed to get enough time to manually edit a BizTalk bindings file to import in order to set the required configuration I can’t set through the UI; I have tried to do the same for the receive location, but the binding file’s format is different and my few attempts before my time ran out did not work.
I have submitted this buy to Microsoft, and hopefully they’ll provide a fix/some information about a possible work around; I suspect my best bet is to use the explorer OM to configure the receive location, but I just can’t get the time to do it now, so – I’m afraid this post is mostly a place holder, and I really hope I’d be able to come and update it with some more details soon.