Sign In
Biztalk Discoveries, Experiences
My Biztalk Discoveries, Experiences on day to day work, during Dev , Qa ,Deployment , Production environments etc
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
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
Archive
automated build
Bindings
Biztalk
biztalk administration
biztalk Map
Biztalk Messages
btproj
build
Commerceserver Adapter
Debug
Deploy
Distinguished Property
Email
functoid
Host Instances
how to Map
Log
map
Message
msbuild
Orchestration
PortType
sdctasks
Testcases
Archive
Archives
August 2008
(2)
July 2008
(15)
June 2008
(5)
May 2008
(2)
April 2008
(6)
February 2008
(2)
January 2008
(4)
MSDN Blogs
>
Biztalk Discoveries, Experiences
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Biztalk Discoveries, Experiences
Biztalk Map Runtime Error: Error converting data type nvarchar to numeric
Posted
over 4 years ago
by
Y2KPRABU
0
Comments
this Error is quite cryptic because it doesnt say which field failed. After a long struggle I figured out that it was because of mapping a string element to a decimal element in xml. it was trying to insert empty string "" into a decimal field....
Biztalk Discoveries, Experiences
Biztalk Build Error 'System.String' must be Xml serializable to be a message part type
Posted
over 4 years ago
by
Y2KPRABU
0
Comments
hi I encountered this error today while building an Orchestration Error 9 'System.String' must be Xml serializable to be a message part type -- check event log for more information C:\asa\sds\oresCanonical.odx the Only solution I have is to restart...
Biztalk Discoveries, Experiences
Msbuild Biztalk Add Resources, Add Application
Posted
over 4 years ago
by
Y2KPRABU
2
Comments
<Project xmlns=" http://schemas.microsoft.com/developer/msbuild/2003 " DefaultTargets="AddBtResx;"> <PropertyGroup > <BTServerName></BTServerName> <BTServerDatabase></BTServerDatabase> <MsgFailed>Failed...
Biztalk Discoveries, Experiences
Msbuild Send Email SMTP Server
Posted
over 4 years ago
by
Y2KPRABU
2
Comments
< Project xmlns = " http://schemas.microsoft.com/developer/msbuild/2003 " DefaultTargets = " EmailIt " > < Import Project = "c:\sdc \Microsoft.Sdc.Common.Tasks " /> < PropertyGroup > < MsgFailed > Failed Email for <...
Biztalk Discoveries, Experiences
Msbuild Archive Files Unique Zip file Name
Posted
over 4 years ago
by
Y2KPRABU
1
Comments
this Explains how to use Msbuild to zip some log files. the zipfilename is generated from date time information, hence unique. < Project xmlns = " http://schemas.microsoft.com/developer/msbuild/2003 " DefaultTargets = " ZipLogs " > <Import...
Biztalk Discoveries, Experiences
Msbuild Run Test Cases
Posted
over 4 years ago
by
Y2KPRABU
1
Comments
< Project xmlns = " http://schemas.microsoft.com/developer/msbuild/2003 " DefaultTargets = " RunUnitTests " > < Target Name = " RunUnitTests " > < Exec Command = ' MSTest.exe /testmetadata:"c:\testproj.vsmdi" ' /> <...
Biztalk Discoveries, Experiences
Msbuild Biztalk Start Host Instances
Posted
over 4 years ago
by
Y2KPRABU
1
Comments
< Project xmlns = " http://schemas.microsoft.com/developer/msbuild/2003 " DefaultTargets = " StartHosts " > <Import Project="c:\sdc\Microsoft.Sdc.Common.Tasks" /> < PropertyGroup > < MsgFailed > Failed StartHosts for <...
Biztalk Discoveries, Experiences
Msbuild Biztalk Start Biztalk Applications
Posted
over 4 years ago
by
Y2KPRABU
1
Comments
< Project xmlns = " http://schemas.microsoft.com/developer/msbuild/2003 " DefaultTargets = " StartBizTalkApplication " > <Import Project="c:\sdc\Microsoft.Sdc.Common.Tasks" /> < PropertyGroup > < MsgFailed > Failed StartApp...
Biztalk Discoveries, Experiences
Msbuild Publish WebServices
Posted
over 4 years ago
by
Y2KPRABU
0
Comments
< Project xmlns = " http://schemas.microsoft.com/developer/msbuild/2003 " DefaultTargets = " PublishSite " > <Import Project="c:\sdc\Microsoft.Sdc.Common.Tasks" /> < PropertyGroup > < MsgFailed > Failed PublishWebSite...
Biztalk Discoveries, Experiences
Msbuild Biztalk Import Bindings
Posted
over 4 years ago
by
Y2KPRABU
1
Comments
< Project xmlns = " http://schemas.microsoft.com/developer/msbuild/2003 " DefaultTargets = " AddReferences;ImportBindings " > <Import Project="c:\sdc\Microsoft.Sdc.Common.Tasks" /> < PropertyGroup > < MsgFailed > Failed...
Biztalk Discoveries, Experiences
Msbuild Biztalk Stop Applications
Posted
over 4 years ago
by
Y2KPRABU
0
Comments
< Project xmlns = " http://schemas.microsoft.com/developer/msbuild/2003 " DefaultTargets = " CheckAppExists;StopApplication;RemoveReferences;UnDeploy " > < Import Project = "c:\sdc \Microsoft.Sdc.Common.Tasks " /> < PropertyGroup...
Biztalk Discoveries, Experiences
Msbuild Biztalk Stop Host Instances
Posted
over 4 years ago
by
Y2KPRABU
1
Comments
< Project xmlns = " http://schemas.microsoft.com/developer/msbuild/2003 " DefaultTargets = " StopHosts " > < Import Project = "C:\sdc \Microsoft.Sdc.Common.Tasks " /> -- Download sdctasks from Codeplex.com and put it here < PropertyGroup...
Biztalk Discoveries, Experiences
Msbuild Deploy Biztalk Solution Projects
Posted
over 4 years ago
by
Y2KPRABU
1
Comments
< Project xmlns = " http://schemas.microsoft.com/developer/msbuild/2003 " DefaultTargets = " BuildSolutions;SuccessLog " > < PropertyGroup > < MsgBuildFailed > Failed deploy for </ MsgBuildFailed > < MsgBuildSuccess...
Biztalk Discoveries, Experiences
Msbuild Build Biztalk Project
Posted
over 4 years ago
by
Y2KPRABU
1
Comments
I have used exec task inside msbuild and achieved the same.. for the rest like stopping / starting host instances, I use sdc tasks.. < Target Name = " BuildSolutions " > < Exec Command = ' devenv.com /build $(BuildType) "c:\customer...
Biztalk Discoveries, Experiences
Msbuild Get Latest From TFS
Posted
over 4 years ago
by
Y2KPRABU
0
Comments
< Project xmlns = " http://schemas.microsoft.com/developer/msbuild/2003 " > < Target Name = " GetLatestFromTFS " > < Message Importance = " normal " Text = " start GetLatest for " ></ Message > < Exec Command = ' TF...
Biztalk Discoveries, Experiences
Biztalk :Value does not fall within the expected range- Fixed
Posted
over 4 years ago
by
Y2KPRABU
1
Comments
When we have 2 different Orchestration running under different host instances under the same application, we get the following Error, when we start the Application from biztalk admin console or scripts Could not enlist orchestration abc,Orchestrations...
Biztalk Discoveries, Experiences
Should I Use the sp_ Prefix for Procedure Names?
Posted
over 4 years ago
by
Y2KPRABU
1
Comments
SQL Server gives name-resolution preference to the master database for procedures that have the sp_ prefix. SQL Server looks for a compiled plan for the procedure associated with the master database and doesn't find it because, in this case, the sp_Select1...
Biztalk Discoveries, Experiences
Biztalk 1 Port with Multiple Operations
Posted
over 4 years ago
by
Y2KPRABU
0
Comments
1 single Biztalk Port can have many Biztalk Operations. Surprising !! We can right click on the Port and Add New Operation. If you notice closely, the operation gets added to the PortType in the orchestration view. so say you are receiving and message...
Biztalk Discoveries, Experiences
Biztalk PortType, Port, Operation == Class, Instance, Methods
Posted
over 4 years ago
by
Y2KPRABU
0
Comments
I have seen many people creating New PortTypes for every Port even if they are of the same data type. So I am giving a simple correlation between OOPs Classes and Biztalk PortTypes. Class (Similar To) PortTypes - Just defines Oneway or TwoWay ...
Biztalk Discoveries, Experiences
Biztalk Map Input xml Node Exists ?
Posted
over 4 years ago
by
Y2KPRABU
1
Comments
Today I figured out the easiest way to Map a xml node to a destination node only if source node exists. if the source node doesnt exist, the destination node doesnt get created at all in the output xml. No need of any functoids. just Drag a map...
Biztalk Discoveries, Experiences
Biztalk BuildHelper
Posted
over 4 years ago
by
Y2KPRABU
0
Comments
Biztalk projects dont use the assemblyinfo.cs as you are aware. it uses the btproj property instead. http://www.codeplex.com/biztalk .useful in automating daily builds etc. Biztalk buid helper is a command line tool It increments the version numbers...
Biztalk Discoveries, Experiences
Biztalk Transform Map it Easy
Posted
over 4 years ago
by
Y2KPRABU
0
Comments
Open a btm, click on the Grid. go to properties->General-> AutoLinkBy By default value is structure. In mosf of the scenarios the structure may be different, but node names are similar, they can be in any order. In these scenarios, ...
Biztalk Discoveries, Experiences
Biztalk Assembly Version Updater
Posted
over 4 years ago
by
Y2KPRABU
2
Comments
The attached document Describes in step by step fashion, how to update biztalk assembly versions in daily build scenarios. Since btprojs dont use assemblyinfo.cs they are treated differently.
Biztalk Discoveries, Experiences
Reuse of Port types
Posted
over 4 years ago
by
Y2KPRABU
2
Comments
we have a A.btproj which has port type AcctPort which is a webref or a soap adapter port. we have a B.btproj which refrences A.btproj, Now when i need to create a port in B which is of same type AcctPort. can I reuse A.AcctPort . Is there any disadvantage...
Biztalk Discoveries, Experiences
Biztalk quick deploy
Posted
over 4 years ago
by
Y2KPRABU
1
Comments
whenever we work in a dev environment , most of the time we make changes to orchestration very often. and deploying these every now and then becomes timeconsuming. FAstest way is: 1. Add the modified / updated biztalk dlls to the GAC (Make sure...
Page 1 of 2 (35 items)
1
2