Sign In
Young's Software for Mere Mortals
Young Jun Hong's blog about BizTalk
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
.NET programming
BizTalk
Pages
Powershell
Windows Workflow Foundation
Archive
Archives
September 2007
(1)
June 2007
(1)
April 2007
(1)
July 2006
(5)
June 2006
(4)
May 2006
(7)
June 2005
(2)
April 2005
(3)
January 2005
(11)
December 2004
(3)
MSDN Blogs
>
Young's Software for Mere Mortals
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Young's Software for Mere Mortals
When CSC.Exe Generates a Different Size of Assembly From VS IDE
Posted
over 5 years ago
by
yjhong
3
Comments
I struggled for the reason why CSC.EXE results in an assembly differently from VS IDE, because VS IDE generates an assembly of 20KB while CSC.exe compiles it in 8KB with the same source code. I checked the compiler options for the two compilers, but I...
Young's Software for Mere Mortals
Changing text encodings of output files redirected from PowerShell.
Posted
over 5 years ago
by
yjhong
1
Comments
I created a logman setting file as follows: typeperf -q | where { $_ -like "\Phy*" } | foreach { '"' + $_.Trim() + '"' } > counter.txt But, logman raised an error reading “Invalid counter path” when I tried to update a counter data collection with...
Young's Software for Mere Mortals
The public beta 2 of BizTalk Server 2006 R2 has been released.
Posted
over 5 years ago
by
yjhong
0
Comments
It's been long time since I posted the last one. I was pretty busy in working on the WCF adapter documentation for R2. In addition to the WCF adapters, R2 also has EDI, RFID, and WCF/WinWF interceptors. I think this release has a very high quality. The...
Young's Software for Mere Mortals
BizTalk Server 2006 R2
Posted
over 6 years ago
by
yjhong
2
Comments
I think there will be no engine changes in R2, but this product refresh will include a number of interesting features and enhancements. For example, R2 adds EDI, RFID, WCF and WF BAM Interceptors, the WCF adapter and supports the R2 Adapter Framework...
Young's Software for Mere Mortals
Passing arguments from the command line to downstream functions in Powershell
Posted
over 6 years ago
by
yjhong
2
Comments
$args is a special variable, an array of all arguments passed to a function on the command line. But, $args is always treated as an array in PowerShell. And It may cause an interesting side effect when passing $args to a downstream function. Suppose we...
Young's Software for Mere Mortals
How to create a function name to the global scope in a Powershell script file
Posted
over 6 years ago
by
yjhong
3
Comments
I created a script named s.ps1 to define a function named s1. # s.ps1 function s1 { // } But, after I run this script, the s1 function is not available in the global scope like: .\S.ps1 S1 s1' is not recognized as a cmdlet, function, operable...
Young's Software for Mere Mortals
How to create multiple or jagged arrays in Powershell
Posted
over 6 years ago
by
yjhong
2
Comments
For me, it was not apparent to create multiple dimensional or jagged arrays in Powershell. I tried the following command, but it only made a single dimensional array: $b = ((‘a’,’a’)) $b.Count 2 Bruce Payette gave me the answers for this basic...
Young's Software for Mere Mortals
You will love the new shell named Powershell!
Posted
over 6 years ago
by
yjhong
5
Comments
When I installed Windows SDK to test Indigo stuff, I found another toy named Powershell. Powershell is the new name of MSH code named Monad . It is a shell or command interpreter based on .NET framework. I thought the cmd.exe shell is too simple for practical...
Young's Software for Mere Mortals
10 more BizTalk samples are live in the MSDN Web site
Posted
over 6 years ago
by
yjhong
1
Comments
10 more BizTalk samples are live in the MSDN Web site . I wrote four of them as follows: 1) BAM and HAT Correlation This sample demonstrates how to use the enhanced BAM features, and how to customize BAM and HAT integration. This sample also includes...
Young's Software for Mere Mortals
How to suppress the annoying warning message, "The dependency 'Microsoft.BizTalk.Tracing' could not be found."
Posted
over 6 years ago
by
yjhong
0
Comments
I got the following warning messages when building a BizTalk project. ------ Build started: Project: BizTalkApp, Configuration: Development .NET ------ Updating references... The dependency 'Microsoft.BizTalk.Tracing' could not be found. The dependency...
Young's Software for Mere Mortals
How to send the feedbacks for the BizTalk Server documentation!
Posted
over 6 years ago
by
yjhong
2
Comments
I attended a customer awareness workshop last week, and one of the feedbacks from customers is about how to send the feedbacks about the BizTalk Server documentations. Each topic of the online or offline documentations has the following table at the bottom...
Young's Software for Mere Mortals
10 more samples for BizTalk Server 2006 live at the MSDN Web site
Posted
over 6 years ago
by
yjhong
0
Comments
10 more samples for BizTalk Server 2006 live at the MSDN Web site . I wrote the following samples of them. 1) Using Long Running Transactions in Orchestrations (BizTalk Server Sample) 2) Recoverable Interchange Processing Using Pipelines (BizTalk...
Young's Software for Mere Mortals
Using Enterprise Library 2.0 in the BizTalk Server 2006 applications with SSO
Posted
over 6 years ago
by
yjhong
6
Comments
Enterprise Library 2.0 was released early this year. The library consists of several application blocks for so called enterprise level applications; logging, data access, security, configuration, exception handling, and so on. BizTalk Server 2006 provides...
Young's Software for Mere Mortals
C# sample code for interface injection
Posted
over 6 years ago
by
yjhong
3
Comments
I read a great article titled " Inversion of Control Containers and the Dependency Injection pattern " written by Martin Fowler. But, as for me the interface injection pattern was a little confusing. I wrote a sample code in C# based on his article, but...
Young's Software for Mere Mortals
5 more BizTalk samples are live in the MSDN Web site.
Posted
over 6 years ago
by
yjhong
0
Comments
5 more BizTalk samples are live in the MSDN Web site . I wrote three of them as follows: 1) SSO as Configuration Store This sample provides an implementation of a sample class and a walkthrough that demonstrates how to use the SSO administrative utility...
Young's Software for Mere Mortals
Consolas, the programmers’ font, is now available
Posted
over 6 years ago
by
yjhong
3
Comments
Have you heard of Consolas ? Consolas has intentionally been developed for programmer’s needs and it will be bundled with Windows Vista. Many people seem to love it, but I think it isn’t allowed to distribute it themselves. I copied the font from the...
Young's Software for Mere Mortals
BizUnit Code Snippets for Visual Studio 2005
Posted
over 6 years ago
by
yjhong
1
Comments
I think the BizUnit is a must tool for BizTalk developers. But, as for me, it isn’t easy to memorize the syntax for the steps. I had to switch back and forth between a working solution and the BizUnit sample solution to copy and paste the XML nodes. So...
Young's Software for Mere Mortals
Some thought after using WWF (Windows Workflow Foundation)
Posted
over 6 years ago
by
yjhong
0
Comments
I thought WWF would be similar to HWS, but I was wrong. After spending some times to use WWF, I realized that it is so cool and I'm convinced that it will be great if the next version of BTS adopts the technology. I think it provides a good programming...
Young's Software for Mere Mortals
BizTalk Server Developer Center and the Microsoft BizTalk Server TechCenter have been renewed.
Posted
over 6 years ago
by
yjhong
0
Comments
It has been long time since I posted. I’ve been too pressed with my works and survival in the whole new country. By the way, the BizTalk Server Developer Center and the BizTalk Server TechCenter are renewed with BizTalk Server 2006. Unfortunately...
Young's Software for Mere Mortals
“Completed with discarded messages” again
Posted
over 7 years ago
by
yjhong
0
Comments
Yesterday some customers told me that they were suffering from “Completed with discarded messages” in an orchestration using the sequential convoy. They asked me how to solve. I heard from other customer about the same issue last year. I think it is the...
Young's Software for Mere Mortals
The BizTalk Server 2006 CTP version installation guide
Posted
over 7 years ago
by
yjhong
0
Comments
I guess the BizTalk Server 2006 CTP (Community Technical Preview) version will be distributed to TechEd 2005 attendees. I used be involved in a customer program introducing BizTalk Server 2006 to real customers. When they faced the major features of BizTalk...
Young's Software for Mere Mortals
Notes on creating EDI schemas for BizTalk Server 2004
Posted
over 7 years ago
by
yjhong
0
Comments
Originally BizTalk Server 2004 has the limitation of adding new EDI schemas. However SP1 now allows to add new schemas and the KB article 840113 describes how to implement EDI schemas for BizTalk. I had implemented new EDI schemas with the KB article...
Young's Software for Mere Mortals
Notes on creating EDI schemas for BizTalk Server 2004
Posted
over 7 years ago
by
yjhong
1
Comments
Originally BizTalk Server 2004 has the limitation of adding new EDI schemas. However SP1 now allows to add new schemas and the KB article 840113 describes how to implement EDI schemas for BizTalk. I had implemented new EDI schemas with the KB article...
Young's Software for Mere Mortals
41 (K)EDIFACT schemas for BizTalk Server 2004.
Posted
over 7 years ago
by
yjhong
0
Comments
I've been very busy for last two months. During that time, I made a converting tool for BizTalk Base EDI Adapter. Originally, BizTalk Server 2004 had the limitation of adding new EDI schemas. However, BizTalk Server SP1 now allows to add new schemas....
Young's Software for Mere Mortals
Lab : Implementing BizTalk in-process receive adapter
Posted
over 7 years ago
by
yjhong
0
Comments
This MOC style lab is the second one of the series of labs that I'll write about how to develop the BizTalk adapters. Especially, this one will show you how to develop BizTalk In Process File Receive Adapter in C#. The purpose of this lab isn’t to provide...
Page 1 of 2 (38 items)
1
2