Sign in
Ian's Software for Mere Mortals
Youngjune or Ian's blog about Connectivity
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Common Tasks
Blog Home
Email Blog Author
OK
RSS for comments
RSS for posts
Atom
Search
Tags
.NET programming
ASP.NET
BizTalk
Custom Template
MVC 4
Pages
Powershell
Project Template
Windows Workflow Foundation
Monthly Archives
Archives
December 2012
(1)
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)
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Ian's Software for Mere Mortals
Using Enterprise Library 2.0 in the BizTalk Server 2006 applications with SSO
Posted
over 7 years ago
by
Youngjune
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...
Ian's Software for Mere Mortals
You will love the new shell named Powershell!
Posted
over 7 years ago
by
Youngjune
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...
Ian's Software for Mere Mortals
Welcome to Young's blog.
Posted
over 9 years ago
by
Youngjune
4
Comments
Hello, this is the first time of my blogging. I'm interested in every aspect of the software development and every kind of technology as well. The most attracting technologies are .NET and BizTalk related matters. And I’m also interested in good programming...
Ian's Software for Mere Mortals
Consolas, the programmers’ font, is now available
Posted
over 7 years ago
by
Youngjune
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...
Ian's Software for Mere Mortals
C# sample code for interface injection
Posted
over 7 years ago
by
Youngjune
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...
Ian's Software for Mere Mortals
How to create a function name to the global scope in a Powershell script file
Posted
over 7 years ago
by
Youngjune
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...
Ian's Software for Mere Mortals
Just another speech regarding BizTalk Server at MSDN seminar in 15th, January 2005
Posted
over 8 years ago
by
Youngjune
3
Comments
I’ve made several speeches about BizTalk Server already. During the presentation, I often felt that the attendees were interested in the product. But, after then, to be honest I got several feedbacks that it isn’t easy to start. I have to make a speeches...
Ian's Software for Mere Mortals
When CSC.Exe Generates a Different Size of Assembly From VS IDE
Posted
over 6 years ago
by
Youngjune
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...
Ian's Software for Mere Mortals
Custom MVC 4 Template Walkthrough
Posted
5 months ago
by
Youngjune
3
Comments
Introduction One of the cool features of MVC 4 Tool Update for Visual Studio 2012.2 is the MVC custom template support. This was possible before as in described here , but it required to edit registry to make the custom templates appear in the MVC...
Ian's Software for Mere Mortals
Passing arguments from the command line to downstream functions in Powershell
Posted
over 7 years ago
by
Youngjune
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...
Ian's Software for Mere Mortals
BizTalk Server 2006 R2
Posted
over 7 years ago
by
Youngjune
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...
Ian's Software for Mere Mortals
How to create multiple or jagged arrays in Powershell
Posted
over 7 years ago
by
Youngjune
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...
Ian's Software for Mere Mortals
How to send the feedbacks for the BizTalk Server documentation!
Posted
over 7 years ago
by
Youngjune
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...
Ian's Software for Mere Mortals
BizUnit Code Snippets for Visual Studio 2005
Posted
over 7 years ago
by
Youngjune
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...
Ian's Software for Mere Mortals
Notes on creating EDI schemas for BizTalk Server 2004
Posted
over 8 years ago
by
Youngjune
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...
Ian's Software for Mere Mortals
Are the BizTalk APIs regrading pipeline and adapters confusing?
Posted
over 9 years ago
by
Youngjune
1
Comments
I’ve always heard from customers and partners that Adapters and Pipeline interfaces of BizTalk Server aren’t well organized, and they seem to be COM API, not .NET API. For example, they usually use interface, not inheritance even when inheritance seems...
Ian's Software for Mere Mortals
10 more BizTalk samples are live in the MSDN Web site
Posted
over 7 years ago
by
Youngjune
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...
Ian's Software for Mere Mortals
Changing text encodings of output files redirected from PowerShell.
Posted
over 6 years ago
by
Youngjune
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...
Ian's Software for Mere Mortals
Some strange behavior of the IPersistPropertyBag.Load method in the BizTalk adapter initialization
Posted
over 8 years ago
by
Youngjune
0
Comments
When developing the BizTalk adapter’s runtime component, it is required to implement IPersistPropertyBag interface and its Load method. Through the IPropertyBag parameter of the method, the messaging engine passes the adapter’s handler properties to the...
Ian's Software for Mere Mortals
A common issue of the installation problem of the BizTalk Adapter v2.0 for mySAP Business Suite
Posted
over 8 years ago
by
Youngjune
0
Comments
A customer asked a question about the installation problem of BizTalk Adapter v2.0 for mySAP Business Suite. The reason was that the BizTalk Adapter v2.0 for mySAP Business Suite can’t be installed with SAP .NET Connector 2.0. You have to use SAP .NET...
Ian's Software for Mere Mortals
Lab: Implementing BizTalk Dynamic Application Adapter Design Time Component
Posted
over 8 years ago
by
Youngjune
0
Comments
This MOC style lab is the first 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 Dynamic Application Adapter Design Time Component in C#. The purpose of this lab isn...
Ian's Software for Mere Mortals
Lab: Implementing BizTalk Dynamic Application Adapter Design Time Component
Posted
over 8 years ago
by
Youngjune
0
Comments
This MOC style lab is the first 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 Dynamic Application Adapter Design Time Component in C#. The purpose of this lab isn...
Ian's Software for Mere Mortals
A small problem in DotNetFile Adapter in BizTalk SDK
Posted
over 8 years ago
by
Youngjune
0
Comments
There is a small problem in DotNetFile Adapter in BizTalk Server 2004 SDK. You could find it when you change any receive handler property of the adapter by BizTalk Administration tool. After the modification of the value, you would encounter an error...
Ian's Software for Mere Mortals
The GetServiceDescription and GetServiceOrganization methods in IStaticAdapterConfig interface
Posted
over 8 years ago
by
Youngjune
0
Comments
The other day, a partner asked me the relationship between GetServiceDescription and GetServiceOrganization methods in IStaticAdapterConfig interface. The help documentation isn’t in detail enough to understand it. At first, the static adapter design...
Ian's Software for Mere Mortals
Does the BizTalk project support the Enterprise Template?
Posted
over 8 years ago
by
Youngjune
0
Comments
When you create a BizTalk project as a part of the Enterprise Template of Visual Studio .NET 2003, an additional .(dot) would follow the project name which you input. For example, if you enter the “Project1” as the BizTalk project name, the generated...
Page 1 of 2 (39 items)
1
2