by community-syndication | Jul 29, 2010 | BizTalk Community Blogs via Syndication
It’s not a secret that WCF configuration management is one of the biggest challenges that companies face when adopting WCF as part of their enterprise solutions. Whether the declarative capabilities of the WCF programming model enable a great level of…(read more)
by community-syndication | Jul 29, 2010 | BizTalk Community Blogs via Syndication
Earlier this week the Visual Studio team released updated VS 2010 Keyboard Shortcut Posters. These posters are print-ready documents (that now support standard paper sizes), and provide nice “cheat sheet” tables that can help you quickly lookup (and eventually memorize) common keystroke commands within Visual Studio.
This week’s updated posters incorporate a number of improvements:
- Letter-sized (8.5”x11”) print ready versions are now available
- A4-sized (210x297mm) print ready versions are now available
- The goofy people pictures on them are gone (thank goodness)
The posters are in PDF format – enabling you to easily download and print them using whichever paper size is in your printer.
Download the Posters
You can download the VS 2010 Keybinding posters in PDF format here.
Posters are available for each language. Simply look for the download that corresponds to your language preference (note: CSharp = C#, VB = VB, FSharp = F#, CPP = C++).
Hope this helps,
Scott
P.S. In addition to blogging, I am also now using Twitter for quick updates and to share links. Follow me at: twitter.com/scottgu
by community-syndication | Jul 29, 2010 | BizTalk Community Blogs via Syndication
Last week I stumbled upon the Tenth issue op BizTalk HotRod. I have looked into it a couple of times cause there are so much goodies in there. The items covered in this issue are: Creating Business Documents Automating deployments of BizTalk change requests…(read more)
by community-syndication | Jul 28, 2010 | BizTalk Community Blogs via Syndication
by community-syndication | Jul 28, 2010 | BizTalk Community Blogs via Syndication
I am sure you are excited about Windows Workflow foundation. Who is not? except those poor Java guys…
Here is a collection of Videos available on Windows Workflow Foundation 4. I hope you find it useful. The list will keep growing, so feel free to bookmark this page for later reference.
read more
by community-syndication | Jul 28, 2010 | BizTalk Community Blogs via Syndication
Today is a special day for us. After two years of steadily growing Tellago , we have decided to launch a new company to focus on building enterprise software. In principle the idea is very simple, we want to translate the lessons we have learned in our…(read more)
by community-syndication | Jul 28, 2010 | BizTalk Community Blogs via Syndication
Olaf and I were cracking away on some SharePoint 2010 work which we thought should
be simplepoint SPMetal to the site and start LINQ-ing to our hearts content..
with the one exception that we couldn’t select items from a list based on their Content
Type.
By default SPMetal.exe doesn’t include these ’system’ fields (apart
from ID + Title – go figure) and the secret is to use an Override file.
The good oil is:http://msdn.microsoft.com/en-us/library/ee535056.aspx
(Here’s a good article on how .NET Types are mapped to SharePoint – http://msdn.microsoft.com/en-us/library/ee536245.aspx)
The simple override/parameters file:
<Web AccessModifier="Internal" xmlns="http://schemas.microsoft.com/SharePoint/2009/spmetal">
<ContentType Name="Item" Class="Item">
<Column Name="ContentType" Member="ContentType" />
</ContentType>
</Web>
The SPMetal Command Line
The VS.NET Code
static void Main(string[]
args)
{
using (BreezeDataContext dc
= new BreezeDataContext("http://breezelocal"))
{
var myitems
= from i in dc.GetList<ContentListTraining>("My
Content List")
where i.ContentType
== "Training"
select i;
var courses
= myitems.ToList<ContentListTraining>();
Console.WriteLine("There
are {0} items",courses[0].Title);
}
Console.ReadLine();
}
by community-syndication | Jul 27, 2010 | BizTalk Community Blogs via Syndication
As part of our ongoing experimentation with the HTML5 WebSocket proposed standard for duplex communication between web browsers and servers, we have prototyped a WebSocket protocol implementation based on Microsoft technologies. The prototype consists of a WCF service and a Silverlight client with an HTML bridge to JavaScript implemented in jQuery. You can read more about it at http://tomasz.janczuk.org/2010/07/silverlight-html5-websocket-client-with.html. You can also check out a sample web chat application based on the prototype at http://40interop.epiq.msftlabs.com/html5/wsdemo.html. Let us know what you think!
Tomasz Janczuk
WCF Team
by community-syndication | Jul 27, 2010 | BizTalk Community Blogs via Syndication
We have consolidated some of our recent publications into a pocket-size, printer-friendly format and published them in the July issue of the BizTalk Hotrod Magazine:
- Instrumentation Best Practices for High Performance BizTalk Solutions (page 47)
- How To Boost Message Transformations Using the XslCompiledTransform class (page 93)
Check them out and share your feedback.
by community-syndication | Jul 27, 2010 | BizTalk Community Blogs via Syndication
This is the fourth in a series of posts on the new features included in BizTalk Server 2010 Beta. Even though new message transmission protocols and standards like the ones supported by WCF are becoming the first choice for data exchange nowadays, the File Transfer Protocol (FTP) is still very popular. FTP has been supported […]