By Wilfried Mausz on
31.03.2008 11:22
This blog describes how one can check if a user is a member of a certain Sharepoint group.
Read More »
|
By Wilfried Mausz on
19.02.2008 11:59
The tutorial at http://technet.microsoft.com/en-us/library/bb798134.aspx about developing the EchoAdapter explains how WCF LOB Adapters are created and used inside a .NET application. What is missing is a tutorial about how this adapter is used inside BizTalk, which can be tricky in some scenarios as well. This article explains how the EchoAdapter is used inside a BizTalk Receive Location go get messages from the OnReceiveEcho operation.
Read More »
|
By Wilfried Mausz on
17.02.2008 17:56
This article describes how the new SAP adapter which is shipped with the new BizTalk Server 2006 R2 Adapter Pack is used.
Read More »
|
By Wilfried Mausz on
08.02.2008 14:31
While working through the LOB SDK sample on Microsoft TechNet I found a documentation bug in Step 8 - Implement the Synchronous Inbound Handler for the Echo Adapter
Read More »
|
By Wilfried Mausz on
24.01.2008 12:07
I just created an installation package for a BizTalk solution which exposes some orchestrations via webservices. Normally that should not be a problem and the MSI package creates the webservices as well, but on my production machine the IIS directories will get different names to the application where I created the installer from.
When the MSI package for a BizTalk solution is created it takes care of the BizTalk proxy webservices as they are used in the application. If you use different path names on the production machine you should read the following article which I have currently found:
http://geekswithblogs.net/paulp/archive/2006/03/30/73900.aspx
|
By Wilfried Mausz on
14.01.2008 14:48
For every new project where I have to get an assembly into the GAC I have to look up the post-build events for Visual Studio again and again . So this are the two lines that are needed:
"$(DevEnvDir)..\..\SDK\v2.0\Bin\gacutil.exe" /u "$(TargetName)" "$(DevEnvDir)..\..\SDK\v2.0\Bin\gacutil.exe" /i "$(TargetPath)"
So I'll post these two lines for me ... as far as I can remember where I have posted it ... and maybe it is useful to anybody else too.
|
By Wilfried Mausz on
10.12.2007 12:06
This blog shows how one can merge PDF files into one big file using the PDFsharp library - and it describes a possible bug (and how to fix it) of the library
Read More »
|
By Wilfried Mausz on
26.07.2007 06:55
This blog describes how one can send queries against textfiles like IIS log using Microsoft Log Parser.
Read More »
|
By Wilfried Mausz on
25.07.2007 11:47
This blog describes how one can split a message inside a BizTalk Orchestration. Furthermore, it uses an interesting function (xpath()) inside the Orchestratrion which is rather unknown and it uses a BizTalk map which gets two input messages.
Read More »
|
By Wilfried Mausz on
02.07.2007 08:59
For a SSIS workshop in Graz I had to use the DataReader-Source in my SSIS packages because for our source database there was no OLE DB driver available. The DataReader-Source could connect via ODBC without any problems. After building some packages we encountered a job that requires changing the SQL statement of the DataReader-Source during execution of the package which is obviously not supported by this component...
Read More »
|