BizTalk Utilities CV ,   Jobs ,   Code library
 
Go to the front page to continue learning about XML or select below:

Contents

ReBlogger Contents

 
WSE
SOA
XML

 
 

TopXML contents

Page 1 of 351

2008 Aug 29

1 of 17510 | All Eyes on the Engineering Windows 7 Blog and more from the Blogosphere - Yes. The Engineering Windows 7 blog is getting a lot of attention.  Robert Scoble blogged about some organizational changes in the Windows Client team that could positively impact Windows 7. He also refers to PDC and the Windows 7 announcements to be made at the conference: "I’m hearing that there’s some very cool stuff that will be shown at the Professional Developer’s Conference (Microsoft’s big developer conference) and that, unlike when Longhorn was shown off, that this stuff will actually be based on shipping code... I’ll see you at the Professional Developer Conference in late October." Even with all the buzz around Windows 7, Cloud Computing and Oslo still are top of mind for d......

2 of 17510 | BizTalk Test Workshop, Cloud Platforms Whitepaper & Jon Flanders in Stockholm - BizTalk Test Workshop I’ll be running the first public delivery of the BizTalk Test Workshop I have been creating on the 18-19th of September in Stockholm. It’s a two-day course that covers an introduction to test strategies, and then looks at applying those strategies to a BizTalk project. Unit testing, stress testing, integration testing, functional testing and user acceptance testing are covered. NUnit, VSTS Test, BizUnit and Load Gen will be used as the main testing tools, with InfoPath and Excel used to drive the user acceptance tests. The course will also look at using other diagnostics tools to examine the performance and reliability of a BizTalk Server solution. I’ve already taught......

3 of 17510 | Creating Workflows in Microsoft Office Live - Hi all, Rohit Puri here.  SPD makes it super easy to create workflows on Microsoft Office Live site.  You should try to create one on your own.  Here are step by step instructions. steps: 1. Launch SPD. 2. Open Site and pass it your office live site e.g http://samplecom.officelive.com/teamworkspace/ 3. You will see the site structure inside SPD 4. Right Click on the Workflows Node -> New -> SharePoint Content 5. This brings up the Workflow wizard that walks you through defining your actions in the workflow. 6. In the sample here screen shots here I create one in which if the Title of the item contains the word Demo I update the title to say “UpdatedViaWorkflow”. ......

4 of 17510 | Free Silverlight and WPF Workshop in NYC 9/3/2008 - Next week, my teammate Michael Scherotter will be holding a free half-day mini-workshop  at the Microsoft office on 6th Avenue to teach people about building Silverlight and WPF applications with Expression Studio and Visual Studio.  Since we work with Media and Communications companies, there will be a slight bent towards scenarios involving online publishing and media: Overview of Silverlight & WPF Designer developer workflow using XAML Using Expression Studio to craft Silverlight and WPF User Experiences Styling and Skinning Data Binding Using Visual Studio to hook up Silverlight on the front end to services & Windows Live on the back end and in the cloud IE8 an......

5 of 17510 | How It Works: Creating An EndPoint Adds An Entry To SysLogins - My SQL Server does not have individual windows users established as separate logins.   Instead it has the Domain\SQLUsers group established as a WINDOWS GROUP login.  You can review your mappings using the following DMVs. select * from syslogins select * from sys.server_principals select * from sys.server_permissions When I used the following CREATE ENDPOINT statement the Domain\UserName appeared in syslogins and server_principals. CREATE ENDPOINT endpoint_test_tsql     AS TCP ( LISTENER_PORT = 5033 )     FOR TSQL() Principals are entities that can request SQL Server resources. Like other components of t......

6 of 17510 | Manipuler les fichiers Office 2007 avec Open XML et le .NET Framework 3.5 - Le nouveau format des fichiers Word, Excel et Powerpoint 2007 est Open XML. Le .NET Framework 3.5 permet de travailler directement avec ce format grâce à l’espace de nom System.IO.Packaging. Pour faciliter le travail de développement, Microsoft fournit « Open XML Format SDK ». Il s’agit d’une libraire construite sur System.IO.Packaging permettant de créer/manipuler/modifier les fichiers avec des classes de haut niveau et typées. C’est une première version. Une seconde version, beaucoup plus riche en termes de fonctionnalités, est prévue. Il est à noter que pour les applications serveurs, la manipulation des fichiers se fait sans avoir Office installé.   Librairie en ligne : « Welc......

7 of 17510 | Marc Canter asks how Live Mesh will play with the 'Open Mesh' - If you haven't read Marc's post go read it, then go read this post - all should be answered. With a mantra of comprehensive, simple, open we'll fit fine into the 'Open Mesh' (plus we've built on HTTP, FeedSync, REST, ATOM(PUB), JSON, then the identity system uses: WS-Fed/WS-Trust). hit the forum if you have any questions...

8 of 17510 | MSPA Newsletter, September 2008 Issue - Welcome to the first volume of the Microsoft Services Partner Advantage newsletter. The objective of our newsletter is to provide our partners with information about our services and to tout the great work that the ISV Practice does every day to empower our partners using Microsoft technologies! In the MSPA newsletter, you will learn about actual engagements, get a sneak peek into services that we deliver, keep up to date on products, technologies and support and view scheduled offerings that you can take advantage of today. We want our partners to fully capitalize on their investments in Microsoft services, so read on! In the September 2008 issue of the MSPA Newsletter, you will......

9 of 17510 | Null Strings in ASP.NET Declarative DataSource Updates - I just spent about 15 minutes debugging a problem where a document was getting unexpected nulls where empty strings should have been. Indeed controls like the TextBox have code in them that allows you to set the Text property to null and the TextBox will convert that into an empty string. So it's a bit counterintuitive that the declarative data source works the opposite way by default. When you use a declarative data source to perform a parameterized update that contains string parameters, consider setting ConvertEmptyStringToNull='false' on your <asp:Parameter> elements, because it's true by default! In other words, if a text field contains an empty string, it'll ......

10 of 17510 | Photosynth = Flickr killer? wait for improvements - Ever since I read about the official release of Photosynth, I couldnt wait to get home and get my hands on photosynth.  I have looked at the beta site 6 months ago and have been wanting to see it live, hence the urge. Got to my home, picked up the digital camera, powered it on, storage full message.  Aargs...  Pam(my wife) has filled the 1 GB memory card with pictures.  She was getting out, so I had to clean up the memory card, backing up all the image to my computer and finally picked up the camera and shot around 20 pics of a painting hanging on our livging room wall.  I started photosynth.  Install went smooth.  Created user id as "gajakannan" (ofcourse), and started the "create synt......

11 of 17510 | PowerShell – Base64 Encode/Decode a string - An easy way to convert data to/from base64 (or uuencode/uudecode, quoted-printable, url encode/url decode, JIS, Yenc, hex, or even creating md5 or sha1 hashes) is to use the NetCmdlets convert-data cmdlet. To encode: PS C:\> convert-data -data "Hello, World!" -to base64 Data Size Format ---- ---- ------ SGVsbG8sIFdvcmxkIQ== 20 base64 To decode: PS C:\> convert-data -data $encoded.Data data -from base64 Data Size Format ---- ......

12 of 17510 | SharePoint Administration Toolkit 2.0 is Now Available! - [Cross-posted from Zach Rosenfield's blog.]  I’m excited to announce that the second version of the Microsoft SharePoint Administration Toolkit is available for download!  As I said back in April, we would be offering regular updates to this toolkit with new features and functionality for both Microsoft Office SharePoint Server 2007 and Windows SharePoint Services v3.0.   With this release we added functionality to address some of the challenges associated with running a highly available and/or geographically disperse MOSS 2007 deployment—particularly aimed at synchronizing user profiles in the Shared Service Provider (SSP).   Let’s look at these two areas: H......

13 of 17510 | Silverlight Cream for August 28, 2008 -- #358 - Anna Wrochna on justifying/aligning text, and Ronnie Saurenmann on WCF without a web server. If you find yourself in Austrailia, take a look at DevSTA Challenge 2008... it hasn't started yet, but it looks cool, and great prizes! From SilverlightCream.com: Silverlight and text-align:justify. Anna takes a pretty good shot at getting text justified on a page... her results are very nice, but wow... what a bunch of work! Serving Silverlight applications on client PCs without a web server using WCF 3.5 This is a post by Ronnie Saurenmann of the Swiss MSDN Team blog... he's basic it on an embedded machine needing to run without a web server, like for some sort of controller ... I immedi......

14 of 17510 | Ten Digits MobileAccess for Dynamics CRM - Ten Digits and Microsoft announced an alliance right before the Worldwide Partner Conference to provide CRM Mobile clients for both Blackberry and Windows Mobile devices.  Full press release below: http://www.microsoft.com/presspass/press/2008/jul08/07-03MobileBlackberryPR.mspx Here's the link to the Ten Digits site: http://www.tendigits.com/ MobileAccess® for Dynamics CRM is the company's latest product line that consists of the MobileAccess Client for BlackBerry and MobileAccess Server for Dynamics CRM. These products enable organizations that have deployed Microsoft Dynamics CRM to increase the productivity of their mobile users by allowing them to use CRM online or offli......

15 of 17510 | ToString() and the underestimated IFormattable ( IFormatPorvider, ICustomFormatter) - Why to use it! - ToString() and the underestimated IFormattable Everyone knows you always should override the ToString() function on you custom objects but most programmers (including me until yesterday) leave it there. But I ran into a problem where I wanted a specific xml representation and a tap separated representation of the same custom object. The "experienced" programmer would just write their own format function. But it felt more old fashion and not quite OO like. And then I read the Tip 5 in the book Effective C# programming - and it change my life again (there is lot's of life changing......

16 of 17510 | Update on My Illustrator Plug-In and Flash to XAML Conversion Tool - Just over three years ago, in July, 2005, I released the first version of my Adobe Illustrator to Avalon/XAML Export Plug-In. The plug-in started off as a weekend project, and it’s since become quite popular. The plug-in is included in most WPF and Silverlight books, and it’s fun to see it referenced when I’m thumbing through new releases at Borders or Barnes & Noble. I hadn’t been watching the download stats, so I checked tonight and was surprised to see that it’s been downloaded over 75,000 times (actually a bit more, but the stats aren’t complete). Even if I only counted the most recent release, that would make it the #1 download on CodePlex. That’s pretty cool. I receive e-mail ab......

17 of 17510 | UX Improvements in IE8 Beta 2 - Scenario1: when you browse the web for some foreign food, you come across words you don't know. You want to find out what do they mean quickly in your own language. Scenario 2: you'd like to keep up with your friends status on Facebook. Instead of going to Facebook homepage and logging in, is there a easier way to subscribe to any update changes and be notified when your friends' change their status automatically? Scenario3: tabbed browsing is a great innovation but it also generates its own usability problems when you have many tabs open at the same time and some of them are from the same domain. Something like the picture below. Don't you wish there's a way they can be grouped! Scen......

18 of 17510 | What's New in Visuall Studio 2008 SP1 ClickOnce Tooling - Here is a post I've been meaning to do for a while, but avoided because there is some MSDN info on it. But a recent question to the forums made me think that maybe it was time to talk about things that were not addressed in the document: what's really new in Visual Studio 2008 SP1 (at least in respect to ClickOnce tooling). But before we start talking about what's new, let's start talking about what's old. One great thing about ClickOnce applications is that the deployment model is very declarative: simply by looking at an XML file, you can earn all sorts of things about the installation. Have you ever tried looking at an MSI file? It's pretty complicated. And that's not a knock: it's comp......

19 of 17510 | Why I love the F# CTP - OK, I've been working flat out on the F# CTP of late. Not enough blogging, but lots of design work, compiler work, specification writing. And in truth, I've been absolutely loving it. What a great team to work with. As a pause, I thought I'd explain why I love the way this release is shaping up Explorative scripting with F#. New File -> F# Script. A joy. A fundamental part of my day Intellisense. It's simpler. It's cleaner. It's easier than ever to find my way around the F# library #r in scripts. Never has so much been accessible so easily. Workflows/computation expressions. Simpler. Cleaner. Effective.  Projects in Visual Studio, with both GUI and a project file format tha......

20 of 17510 | Why I love the F# CTP - OK, I've been working flat out on the F# CTP of late. Not enough blogging, but lots of design work, compiler work, specification writing. And in truth, I've been absolutely loving it. What a great team to work with. As a pause, I thought I'd explain why I love the way this release is shaping up Explorative scripting with F#. New File -> F# Script. A joy. A fundamental part of my day Intellisense. It's simpler. It's cleaner. It's easier than ever to find my way around the F# library #r in scripts. Never has so much been accessible so easily. Workflows/computation expressions. Simpler. Cleaner. Effective.  Projects in Visual Studio, with both GUI and a project file format tha......

21 of 17510 | XFDF XML mit C# und einem Schema validieren ... -   In meinen letzten Blogseintrag "XFDF Felder mit C# lesen ..." habe ich über meine ersten Erfahrungen mit XFDF berichtet. Das Projekt schreitet voran und ich habe noch einige interessante Dinge XFDF mit .NET und Visual Studio 2008 zu berichten. Um die eingegangen XML XFDF Daten sinnvoll zu verarbeiten, wollte ich  mit folgendem Code die XML Daten mit dem offiziellen XSD Schema von Adobes Website  validieren.              try             {                 // Create a schema set......

22 of 17510 | XmlSerialization to generate and consume XML - I want to talk about Xml Serialization this month. One of the work I was involved in recently required generation of XML and a I came across this wonderful technology which helps you generate and consume XML seamlessly.   If you are generating XML in a clumsy way using printf containing the XML tags, I would strongly suggest you to look into this technology. Incidetaly this plays well with Linq too. The XML after it is loaded into the object can be parsed with Linq queries. I will write a sample for that soon.     using System; using System.Collections.Generic; using System.Xml; using System.Xml.Serialization;   namespace Sample {     public cl......

2008 Aug 28

23 of 17510 | BAM Deployment Issue - I discovered a weird problem recently when deploying a BAM definition spreadsheet using the bm.exe program.Basically, I was getting multiple message boxes containing fn_GetString in the title, plus some other blank message boxes until finally the process ended. It looked pretty terminal!The problem turned out to be that on my machine the locale was set to English (United Kingdom) and it looks like the BAM deployment process doesn't like it. The message boxes look like they come from Excel so I guess the BAM Excel spreadsheet macro code is to blame.Changing the locale to English (United States) solved the issue and the bm.exe program was able to export the BAM definition XML successfully fro......

24 of 17510 | BizTalk and SOA - So, it's been a while since I've blogged. Life has been hectic and I'm currently spreading my time between two projects so blog time has been in short supply, even though my blog-to-do list is growing! Anyway, so what is this post all about? It's about where BizTalk fits architecturally within the new "hot" world of Service Oriented Architectures. BizTalk Server, as we know, is a middleware product that enables integration between LOB applications and systems in an EAI scenario and trading partners in a B2B scenario. As part of this broad area of responsibility BizTalk is able to execute business processes that implement complex integration or workflow scenarios, transform data fr......

25 of 17510 | Biztalk and windows workflow - A lot has been said regarding Biztalk server and Windows worflow foundation, here are some references that might come handy: BizTalk Server 2004/2006 and Windows Workflow Foundation by Brian LoesgenWindows Workflow Foundation vs BizTalk Server by Lamont HarringtonWindows Workflow Foundation - Where does BizTalk fit in? by Darren JeffordIntroducing Microsoft Windows Workflow Foundation: An Early Look by David Chappell...

26 of 17510 | Biztalk clinic - for those of you interested in learning biztalk server i recommend taking a look at First Look: Microsoft® BizTalk® Server 2006 for Developers...

27 of 17510 | Biztalk performance - Darren Jefford has a list of performance tips for BizTalk Server 2004 implementations, from the blog:"Another issue that came up recently which I didn’t fully appreciate is how “expensive” Atomic Scopes are, don’t get me wrong, they’re great and need to be there but I’m increasingly seeing customers using them where they don’t have to – For those of you with a COM+ background it’s analogous to running your code within a Transaction, most customers didn’t need them but turned it on anyway causing significant problems"......

28 of 17510 | Biztalk Server Interview Answers - on recent days Stephen W Thomas posted on his blog Biztalk Server Interview Questions what a biztalk interview might contain, i´d like to provide the answers to those questions -at least try- gathered from different sources, any comments are welcome: Development Focused Questions What is BizTalk?  for this one i prefer the formal definition provided by webopedia: "BizTalk Server is Microsoft's central platform for Enterprise Application Integration (EAI) and Business Process Management (BPM) and embodies the integration and automation capabilities of XML and Web Services technologies. BizTalk Server functions as a process execution engine and ......

29 of 17510 | BTS Easy reflector - My good friend Carlos Medina has published a nice example demostrating how to use Microsoft's Microsoft.BizTalk.Deployment.dll unsupported assembly, you can find it here...

30 of 17510 | BTS Guys Understand SOA and Contract First - Aaron Skonnard has put up a good post about why BTS developers understand SOA and contract first. This is a hot topic at Solidsoft Towers and James and Duncan certainly have championed this at work for some time.I was talking with James the other day about the ASHX HTTP handler that bypasses all of the unnecessary XML->Object and Object->XML deserialisation and serialisation that goes on. We agreed that as a lightweight 'web service' for BTS running at the core of a SOA architecture it is essential as it reduces the evil of latency that BTS can introduce (due to its primary task of ensuring messages are durable which means trips to SQL Server that could be avoided in a request-respo......

31 of 17510 | Concurrent connections when consuming web services - Think I may have mentioned this before - but check out this post from Darren Jefford re. the low-level throttling of web requests when consuming web services from BizTalk....

32 of 17510 | Connected Systems Competition - I would be tempted to enter this contest, but my day-job seems to be taking up too much time :-S. I think that a SOAP receive adapter, for polling web services, would be a good bet for category #14? On the subject of the day-job, I obviously haven't posted for a while, and that's largely 'cos I'm so busy. I've spent the last month working at the commercial end of the business, spending 8 hours a...

33 of 17510 | Cool XSD Validation Function for Orchestration - As I promised in an earlier post, here's a cool XSD validation function that can be called from within orchestration. Just add to a library - I tend to put it into a BizTalk Utilities library full of useful little functions that complement orchestration (most of which should be provided by the orchestration engine, but that's a rant for another day!).public static void ValidateDocument( XmlDocument businessDocument, string schemaStrongName ){  // Constants  const int PARTS_IN_SCHEMA_STRONG_NAME = 2;  const int PART_CLASS_NAME = 0;  const int PART_QUALIFIED_ASSEMBLY_NAME = 1;  // Parse schema strong name  string[] assemblyNameParts ......

34 of 17510 | DateTime Serialization in BizTalk - Possible Bug? - On a recent project, I came across an interesting issue with assigning the current date and time to a promoted property in a Message Assignment shape. The problem highlighted itself in our Audit database where we were auditing process state changes. The submission date of each audited record appeared to be 1 hour ahead than the current local time (based on GMT with Daylight Savings Time in effect - meaning we are currently +1 to UTC). Our scenario involves writing an audit record from the web site that is initiating the process, then each subsequent audit is performed at various steps within a BizTalk orchestration. Each audit record contains some meta data extracted from the en......

35 of 17510 | Debatching Sql receive adapter resultsets - I spent Friday with a client advising them on some basic design principles, specifically around the use of the Sql receive adapter. It was a fairly simple scenario - extracting data from a SQL Server database, then processing the output messages with some very simple orchestrations. It seemed fairly obvious to me that the easiest way to process the data was to split the output from the receive ...

36 of 17510 | Delivery Notification Doesn't Appear with Specify Now Binding - Now, I don't pretend to understand this, so if someone can enlighten me, I would appreciate it :)I have a web port type defined in orchestration to a OneWay web service. When I create a port based on the web port type and I select Specify Now in the port configuration, then the Delivery Notification property doesn't appear. If I go into the port properties window and change the binding to Specify Later, the Delivery Notification property appears! Change the binding back, and it disappears again! Eh?My guess is that the delivery notification property is implicitly set when using the SOAP adapter (which is the default using a web port type and specifying the binding in the orchestration),......

37 of 17510 | DNJ Interview with Solidsoft CTO Andy James - Ok, ok, so he's my boss ;-) Still, it's a good article about BizTalk and SOA from someone who's been about, if you know what I mean ;-)DNJ Interview Link...

38 of 17510 | Entering the world of Accelerators - Find it on TripAdvisor - So I thought it was time I built my own accelerator for IE8 as, well the guys in the IE team have made it so easily surely even I can build one :-) So I had a think about services I used, and quickly a favourite came to the top, after all who doesn't like going on holiday (that's vacation for my transatlantic colleagues and readers). So when searching around for a holiday I like to use TripAdvisor.com as the user reviews are great. Now often my workflow goes something like this: Search GenericHolidaySite.com for a location I'm interested in Cope and paste that location into TripAdvisor.com to see the hightest rated hotels. Go back to GenericHolidaySite.com and look at each of the hotel ......

39 of 17510 | Fed up of deploying BTS assemblies the 'standard' way? - Well, this is a little tip about deploying a BizTalk assembly quickly and easily without having to unbind, undeploy, redeploy, rebind and all that wonderful stuff.If you recompile a BizTalk assembly that does not affect the current bindings then all you need to do is the following: Open a view onto the GAC by clicking Start->Run and then typing assembly Compile BizTalk assembly Drag and drop the compiled assembly from the bin\Development folder (we're developing, right?) into the assembly view window Restart BizTalk NT service from BizTalk Administration snap-in, Services snap-in or the command line using net stop It really is as simple as that!...

40 of 17510 | Hacking files in BizTalk - The previous post on Sql debatching mentioned 'hacking' auto-generated files, something that may alarm some people (though not many, if my experience of developers is anything to go by.) Another example of this is the extraction of primitive values from auto-generated schemas, specifically (in my case) consumed web service responses. As an example, say that you consume a web service that returns...

41 of 17510 | IDEAlliance has posted the call for participation for XML 2008. - IDEAlliance has posted the call for participation for XML 2008. This year it moves back to the D.C. area (Marriott Crystal Gateway, Arlington, Virginia to be precise) after several years in Boston. I've had a great time at this show for the last couple of years, and it's the major XML event in the U.S. The show runs from December 8-10. I likely won't be able to attend this year, but I do highly recommend it nonetheless....

42 of 17510 | MSFT -= vapourware - Interesting quote from Rich Turner's blog today: "Microsoft explicitly does not claim to have a SOA. We do not subscribe to the notions of SOA and do not refer to any of our products as SOA. We do strongly subscribe to the notions of SO as abstract guidance and goals for building distributed systems. We have a broad range of powerful products, technologies and services which can be used to ...

43 of 17510 | Multiple Activate Receives and Returning Soap Faults Oddity - Imagine a scenario where you have an orchestration exposed as a web service that has two public ports. Each port accepts a message of the same type, but one port is used to send new messages, and the other is used to send update messages. The port type for the port has an access modifier of public, is a request-response port type, plus has a Fault message defined in addition to the request and response messages.In the orchestration, you create a listen shape and then add two activatable receives - one on each branch with one pointing to the request message of the new port, and one to the request message of the update port. So far so good.At this point you're going to want to create a cou......

44 of 17510 | New and Notable 270 - Agile/Software Development/ALT.NET The Art of Agile Development: Collective Code Ownership Raymond provides an entry into lean methodologies Jeffery was on the Software Quality Isn't Optional panel and the video is available The StyleCop team announced the release of a version 4.3 of the StyleCop tool. You can get it from here. Another e-book called Data Structures and Algorithms by Granville Barnett and Luca Del Tongo and is hosted on DotNetSlackers.  The book is a free PDF download. [via Rob] ASP.NET MVC ASP.NET MVC Tip #39 - Using the Velocity Distributed Cache ADO.NET Data Services (Astoria) The Astoria Team has started creating an "How do I?&qu......

45 of 17510 | News to know: IE 8; iPhone password locks; SOA; Palm Treo Pro reviews - Here are today’s notable headlines. You can get News To Know via email alert and RSS daily: Mary Jo Foley: IE 8 Beta 2 ready for download Ed Bott: Internet Explorer 8 gets a massive makeover Gallery: Internet Explorer 8 Beta 2 Adrian Kingsley-Hughes: Internet Explorer 8 Beta 2 vs. Firefox 3.0.1 Dana Blankenhorn: Has Firefox already matched IE privacy [...] ...

46 of 17510 | One more thing - When using the Sql adapter to receive batches of data, a couple of handy hints: 1. Use a stored procedure. It allows you more control and security, and abstracts the underlying table structure. 2. Always add a parameter that allows you to restrict the size of the output (using SET ROWCOUNT). This allows you to control the flow of input messages - if there's a chance that your sproc is going to ...

47 of 17510 | One-Way Web Methods - I made quite a cool little discovery the other day with OneWay web methods in ASP.NET. When I hooked the web service up to my orchestration, I discovered that BizTalk had actually taken the OneWay interaction style into account and only offered a request message type, rather than both a request and response message type. Many people probably know this already, but I found this to be really cool! How many times have I hooked up a web service with an orchestration and ignored the response because the method does not return any value?! More times than I care to remember......

48 of 17510 | Part 1. ????? Silverlight 2 ????? - ????????? TechEd 2008 Yokohama ???????????? MCS ???????????????????????????????????????????????????????…… ???????????????????????????? Live Writer ?????????????? SL2 ?????????????? [Step 1] Silverlight 2 ??????????? ???VS2008 ????????? Silverlight 2 ?????????????? SL2 ? SDK ???????????VS2008 ? SL2 ????????????????????????????????? SL2 ?????????? ?????SL2 ????????????? Web ???????????????????????????????????? SL2 ??????????????????????(SilverlightApplication1)?????????? ???????????????????.xap ????(SL2 ?????????????? zip ????)???????? .xap ?????????????? Web ???(SilverlightApplication1Web)??????(ClientBin ?????)?????????????????????????? [Ste......

49 of 17510 | patterns & practices SharePoint Drop is Available on Codeplex - In a previous post, I talked about starting a new project to create SharePoint guidance. We heard you need guidance to help with: Unit testing and debugging Packaging and deployment Setting up a team development environment Unclear which SharePoint features/ components to use and when Solution maintenance/upgrade How and when is SharePoint Designer applicable Based upon your feedback, we decided to guidance on SharePoint Intranet Development. This includes help with solution architecture, solution development, and packaging and deployment. Elevator Pitch: Target Customer: Primary: SharePoint Professional Developers (Includes Architects); Secondary: SharePoint IT Pro's Statement of Need: ......

50 of 17510 | PipelineTesting: XML Assembler and E_FAIL - Fellow BizTalk developer Bram Veldhoen was kind enough to send me some suggestions for a future version of my PipelineTesting library, as well as with a question that could point to a potential bug in the library. The problem basically revolves around consuming a stream returned by the XML Assembler component in a send pipeline when testing under a library. What Bram noticed was that executing the pipeline would seem to work, but trying to read the body part stream of the output message would fail with a ComException with error code 0x8004005 (E_FAIL). I was fairly confident this should've been working, based on my own use of the library, but......

Page 1 of 351

Newest posts