@@ -0,0 +1,175 @@ | |||||
Sure, here's a simple .gitignore file for a .NET 4.6 framework project: | |||||
``` | |||||
## Ignore Visual Studio temporary files, build results, and | |||||
## files generated by popular Visual Studio add-ons. | |||||
## | |||||
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore | |||||
# User-specific files | |||||
*.suo | |||||
*.user | |||||
*.userosscache | |||||
*.sln.docstates | |||||
# User-specific files (MonoDevelop/Xamarin Studio) | |||||
*.userprefs | |||||
# Build results | |||||
[Dd]ebug/ | |||||
[Dd]ebugPublic/ | |||||
[Rr]elease/ | |||||
[Rr]eleases/ | |||||
x64/ | |||||
x86/ | |||||
bld/ | |||||
[Bb]in/ | |||||
[Oo]bj/ | |||||
[Ll]og/ | |||||
# Visual Studio 2015/2017 cache/options directory | |||||
.vs/ | |||||
# Uncomment if you have tasks that create the project's static files in wwwroot | |||||
#wwwroot/ | |||||
# Visual Studio 2017 auto generated files | |||||
Generated\ Files/ | |||||
# MSTest test Results | |||||
[Tt]est[Rr]esult*/ | |||||
[Bb]uild[Ll]og.* | |||||
# NUNIT | |||||
*.VisualState.xml | |||||
TestResult.xml | |||||
# Build Results of an ATL Project | |||||
[Dd]ebugPS/ | |||||
[Rr]eleasePS/ | |||||
dlldata.c | |||||
# Benchmark Results | |||||
BenchmarkDotNet.Artifacts/ | |||||
# .NET Core | |||||
project.lock.json | |||||
project.fragment.lock.json | |||||
artifacts/ | |||||
**/Properties/launchSettings.json | |||||
# StyleCop | |||||
StyleCopReport.xml | |||||
# Files built by Visual Studio | |||||
*_i.c | |||||
*_p.c | |||||
*_i.h | |||||
*.ilk | |||||
*.meta | |||||
*.obj | |||||
*.pch | |||||
*.pdb | |||||
*.pgc | |||||
*.pgd | |||||
*.rsp | |||||
*.sbr | |||||
*.tlb | |||||
*.tli | |||||
*.tlh | |||||
*.tmp | |||||
*.tmp_proj | |||||
*.log | |||||
*.vspscc | |||||
*.vssscc | |||||
.builds | |||||
*.pidb | |||||
*.svclog | |||||
*.scc | |||||
# Chutzpah Test files | |||||
_Chutzpah* | |||||
# Visual C++ cache files | |||||
ipch/ | |||||
*.aps | |||||
*.ncb | |||||
*.opendb | |||||
*.opensdf | |||||
*.sdf | |||||
*.cachefile | |||||
*.VC.db | |||||
*.VC.VC.opendb | |||||
# Visual Studio profiler | |||||
*.psess | |||||
*.vsp | |||||
*.vspx | |||||
*.sap | |||||
# Visual Studio Trace Files | |||||
*.e2e | |||||
# TFS 2012 Local Workspace | |||||
$tf/ | |||||
# Guidance Automation Toolkit | |||||
*.gpState | |||||
# ReSharper is a .NET coding add-in | |||||
_ReSharper*/ | |||||
*.[Rr]e[Ss]harper | |||||
*.DotSettings.user | |||||
# JustCode is a .NET coding add-in | |||||
.JustCode | |||||
# TeamCity is a build add-in | |||||
_TeamCity* | |||||
# DotCover is a Code Coverage Tool | |||||
*.dotCover | |||||
# AxoCover is a Code Coverage Tool | |||||
.axoCover/* | |||||
!.axoCover/settings.json | |||||
# Visual Studio code coverage results | |||||
*.coverage | |||||
*.coveragexml | |||||
# NCrunch | |||||
_NCrunch_* | |||||
.*crunch*.local.xml | |||||
nCrunchTemp_* | |||||
# MightyMoose | |||||
*.mm.* | |||||
AutoTest.Net/ | |||||
# Web workbench (sass) | |||||
.sass-cache/ | |||||
*.css.map | |||||
*.sass.map | |||||
*.scss.map | |||||
# Installshield output folder | |||||
[Ee]xpress/ | |||||
# DocProject is a documentation generator add-in | |||||
DocProject/buildhelp/ | |||||
DocProject/Help/*.HxT | |||||
DocProject/Help/*.HxC | |||||
DocProject/Help/*.hhc | |||||
DocProject/Help/*.hhk | |||||
DocProject/Help/*.hhp | |||||
DocProject/Help/Html2 | |||||
DocProject/Help/html | |||||
# Click-Once directory | |||||
publish/ | |||||
# Publish Web Output | |||||
*.[Pp]ublish.xml | |||||
*.azurePubxml | |||||
# Note: Comment the next line if you want to checkin your web deploy settings, | |||||
# but database connection strings (with potential passwords) will be unencrypte |
@@ -0,0 +1,36 @@ | |||||
| |||||
Microsoft Visual Studio Solution File, Format Version 12.00 | |||||
# Visual Studio 2013 | |||||
VisualStudioVersion = 12.0.40629.0 | |||||
MinimumVisualStudioVersion = 10.0.40219.1 | |||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Schemas", "Schemas\Schemas.btproj", "{DD0CDDD5-0D81-4C81-9E3E-24FE00EE99D9}" | |||||
EndProject | |||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Transforms", "Transforms\Transforms.btproj", "{B0C9D0D2-75D8-4A96-8593-6E71CAACBB4D}" | |||||
EndProject | |||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Deployment", "Deployment", "{3A1E9291-2F5C-4D79-81ED-921D9AFC3FE8}" | |||||
ProjectSection(SolutionItems) = preProject | |||||
Deployment\Deployment.btdfproj = Deployment\Deployment.btdfproj | |||||
Deployment\PortBindingsMaster.xml = Deployment\PortBindingsMaster.xml | |||||
EndProjectSection | |||||
EndProject | |||||
Global | |||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | |||||
Debug|Any CPU = Debug|Any CPU | |||||
Release|Any CPU = Release|Any CPU | |||||
EndGlobalSection | |||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | |||||
{DD0CDDD5-0D81-4C81-9E3E-24FE00EE99D9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | |||||
{DD0CDDD5-0D81-4C81-9E3E-24FE00EE99D9}.Debug|Any CPU.Build.0 = Debug|Any CPU | |||||
{DD0CDDD5-0D81-4C81-9E3E-24FE00EE99D9}.Release|Any CPU.ActiveCfg = Release|Any CPU | |||||
{DD0CDDD5-0D81-4C81-9E3E-24FE00EE99D9}.Release|Any CPU.Build.0 = Release|Any CPU | |||||
{DD0CDDD5-0D81-4C81-9E3E-24FE00EE99D9}.Release|Any CPU.Deploy.0 = Release|Any CPU | |||||
{B0C9D0D2-75D8-4A96-8593-6E71CAACBB4D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | |||||
{B0C9D0D2-75D8-4A96-8593-6E71CAACBB4D}.Debug|Any CPU.Build.0 = Debug|Any CPU | |||||
{B0C9D0D2-75D8-4A96-8593-6E71CAACBB4D}.Release|Any CPU.ActiveCfg = Release|Any CPU | |||||
{B0C9D0D2-75D8-4A96-8593-6E71CAACBB4D}.Release|Any CPU.Build.0 = Release|Any CPU | |||||
{B0C9D0D2-75D8-4A96-8593-6E71CAACBB4D}.Release|Any CPU.Deploy.0 = Release|Any CPU | |||||
EndGlobalSection | |||||
GlobalSection(SolutionProperties) = preSolution | |||||
HideSolutionNode = FALSE | |||||
EndGlobalSection | |||||
EndGlobal |
@@ -0,0 +1,39 @@ | |||||
using System.Reflection; | |||||
using System.Runtime.CompilerServices; | |||||
using System.Runtime.InteropServices; | |||||
using Microsoft.XLANGs.BaseTypes; | |||||
using Microsoft.BizTalk.XLANGs.BTXEngine; | |||||
// General Information about an assembly is controlled through the following | |||||
// set of attributes. Change these attribute values to modify the information | |||||
// associated with an assembly. | |||||
[assembly: AssemblyTitle("Schemas")] | |||||
[assembly: AssemblyDescription("")] | |||||
[assembly: AssemblyConfiguration("")] | |||||
[assembly: AssemblyCompany("")] | |||||
[assembly: AssemblyProduct("Schemas")] | |||||
[assembly: AssemblyCopyright("Copyright © 2024")] | |||||
[assembly: AssemblyTrademark("")] | |||||
[assembly: AssemblyCulture("")] | |||||
[assembly: Microsoft.XLANGs.BaseTypes.BizTalkAssemblyAttribute(typeof(BTXService))] | |||||
// Setting ComVisible to false makes the types in this assembly not visible | |||||
// to COM components. If you need to access a type in this assembly from | |||||
// COM, set the ComVisible attribute to true on that type. | |||||
[assembly: ComVisible(false)] | |||||
// The following GUID is for the ID of the typelib if this project is exposed to COM | |||||
[assembly: Guid("b8e219ef-7c03-43e4-82ea-069453f4d21a")] | |||||
// Version information for an assembly consists of the following four values: | |||||
// | |||||
// Major Version | |||||
// Minor Version | |||||
// Build Number | |||||
// Revision | |||||
// | |||||
// You can specify all the values or you can default the Build and Revision Numbers | |||||
// by using the '*' as shown below: | |||||
// [assembly: AssemblyVersion("1.0.*")] | |||||
[assembly: AssemblyVersion("1.0.0.0")] | |||||
[assembly: AssemblyFileVersion("1.0.0.0")] |
@@ -0,0 +1,80 @@ | |||||
<?xml version="1.0" encoding="utf-8"?> | |||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |||||
<PropertyGroup> | |||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | |||||
<SchemaVersion>2.0</SchemaVersion> | |||||
<ProjectGuid>{DD0CDDD5-0D81-4C81-9E3E-24FE00EE99D9}</ProjectGuid> | |||||
<ProjectTypeGuids>{EF7E3281-CD33-11D4-8326-00C04FA0CE8D};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> | |||||
<OutputType>library</OutputType> | |||||
<GenericProcessing>true</GenericProcessing> | |||||
<RootNamespace>TM.HelloBizTalk2013World.Schemas</RootNamespace> | |||||
<AssemblyName>TM.HelloBizTalk2013World.Schemas</AssemblyName> | |||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion> | |||||
<BpelCompliance>True</BpelCompliance> | |||||
</PropertyGroup> | |||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |||||
<DebugSymbols>true</DebugSymbols> | |||||
<DebugType>full</DebugType> | |||||
<Optimize>false</Optimize> | |||||
<OutputPath>bin\Debug\</OutputPath> | |||||
<DefineConstants>DEBUG;TRACE</DefineConstants> | |||||
<ErrorReport>prompt</ErrorReport> | |||||
<WarningLevel>4</WarningLevel> | |||||
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> | |||||
</PropertyGroup> | |||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | |||||
<DebugType>pdbonly</DebugType> | |||||
<Optimize>true</Optimize> | |||||
<OutputPath>bin\Release\</OutputPath> | |||||
<DefineConstants>TRACE</DefineConstants> | |||||
<ErrorReport>prompt</ErrorReport> | |||||
<WarningLevel>4</WarningLevel> | |||||
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> | |||||
</PropertyGroup> | |||||
<PropertyGroup> | |||||
<SignAssembly>true</SignAssembly> | |||||
</PropertyGroup> | |||||
<PropertyGroup> | |||||
<AssemblyOriginatorKeyFile>HelloBizTalk2013World.snk</AssemblyOriginatorKeyFile> | |||||
</PropertyGroup> | |||||
<ItemGroup> | |||||
<Reference Include="System"> | |||||
<Name>System</Name> | |||||
</Reference> | |||||
<Reference Include="System.Xml"> | |||||
<Name>System.XML</Name> | |||||
</Reference> | |||||
<Reference Include="System.Configuration"> | |||||
<Name>System.Configuration</Name> | |||||
</Reference> | |||||
<Reference Include="Microsoft.BizTalk.Pipeline"> | |||||
<SpecificVersion>False</SpecificVersion> | |||||
</Reference> | |||||
<Reference Include="Microsoft.BizTalk.DefaultPipelines"> | |||||
<Name>Microsoft.BizTalk.DefaultPipelines</Name> | |||||
</Reference> | |||||
<Reference Include="Microsoft.BizTalk.GlobalPropertySchemas"> | |||||
<Name>Microsoft.BizTalk.GlobalPropertySchemas</Name> | |||||
</Reference> | |||||
<Reference Include="Microsoft.BizTalk.TestTools"> | |||||
<Name>Microsoft.BizTalk.TestTools</Name> | |||||
</Reference> | |||||
<Reference Include="Microsoft.XLANGs.BaseTypes"> | |||||
<Name>Microsoft.XLANGs.BaseTypes</Name> | |||||
</Reference> | |||||
</ItemGroup> | |||||
<ItemGroup> | |||||
<Compile Include="Properties\AssemblyInfo.cs" /> | |||||
</ItemGroup> | |||||
<ItemGroup> | |||||
<None Include="HelloBizTalk2013World.snk" /> | |||||
<Schema Include="ShipmentStatusSchema_TEST.xsd"> | |||||
<TypeName>ShipmentStatusSchema_TEST</TypeName> | |||||
<Namespace>TM.HelloBizTalk2013World.Schemas</Namespace> | |||||
<SubType>Task</SubType> | |||||
</Schema> | |||||
</ItemGroup> | |||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | |||||
<Import Project="$(MSBuildExtensionsPath)\Microsoft\BizTalk\BizTalkC.targets" /> | |||||
</Project> |
@@ -0,0 +1,39 @@ | |||||
using System.Reflection; | |||||
using System.Runtime.CompilerServices; | |||||
using System.Runtime.InteropServices; | |||||
using Microsoft.XLANGs.BaseTypes; | |||||
using Microsoft.BizTalk.XLANGs.BTXEngine; | |||||
// General Information about an assembly is controlled through the following | |||||
// set of attributes. Change these attribute values to modify the information | |||||
// associated with an assembly. | |||||
[assembly: AssemblyTitle("Transforms")] | |||||
[assembly: AssemblyDescription("")] | |||||
[assembly: AssemblyConfiguration("")] | |||||
[assembly: AssemblyCompany("")] | |||||
[assembly: AssemblyProduct("Transforms")] | |||||
[assembly: AssemblyCopyright("Copyright © 2024")] | |||||
[assembly: AssemblyTrademark("")] | |||||
[assembly: AssemblyCulture("")] | |||||
[assembly: Microsoft.XLANGs.BaseTypes.BizTalkAssemblyAttribute(typeof(BTXService))] | |||||
// Setting ComVisible to false makes the types in this assembly not visible | |||||
// to COM components. If you need to access a type in this assembly from | |||||
// COM, set the ComVisible attribute to true on that type. | |||||
[assembly: ComVisible(false)] | |||||
// The following GUID is for the ID of the typelib if this project is exposed to COM | |||||
[assembly: Guid("6ee0ae77-8ea9-4be6-9f67-b15ba6f1a4b7")] | |||||
// Version information for an assembly consists of the following four values: | |||||
// | |||||
// Major Version | |||||
// Minor Version | |||||
// Build Number | |||||
// Revision | |||||
// | |||||
// You can specify all the values or you can default the Build and Revision Numbers | |||||
// by using the '*' as shown below: | |||||
// [assembly: AssemblyVersion("1.0.*")] | |||||
[assembly: AssemblyVersion("1.0.0.0")] | |||||
[assembly: AssemblyFileVersion("1.0.0.0")] |
@@ -0,0 +1,39 @@ | |||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" | |||||
xmlns:ScriptNS0="http://schemas.microsoft.com/BizTalk/2003/ScriptNS0" | |||||
xmlns:ScriptNS1="http://schemas.microsoft.com/BizTalk/2003/ScriptNS1" | |||||
xmlns:DateTime="TM.Shared.Components.DateTime" | |||||
xmlns:SSO="TM.Shared.Components.SSO" | |||||
xmlns:String="TM.Shared.Components.String" | |||||
xmlns:s0="http://TM.KLG.com/KLG/OrderStatus" | |||||
xmlns:ns0="TM.HelloBizTalk2013World.Schemas" | |||||
exclude-result-prefixes="s0 ScriptNS0 ScriptNS1 DateTime SSO String"> | |||||
<xsl:output omit-xml-declaration="yes" method="xml" version="1.0" indent="yes" /> | |||||
<xsl:variable name="connectionString" select="SSO:GetValue('HelloBizTalk2013World', 'ESBLookupConnectionString')"/> | |||||
<xsl:template match="/"> | |||||
<xsl:apply-templates select="/s0:StatusReport" /> | |||||
</xsl:template> | |||||
<xsl:template match="/s0:StatusReport"> | |||||
<ns0:ShipmentStatus> | |||||
<ShipmentStatusReport> | |||||
<ShipmentNumber> | |||||
<xsl:value-of select="Status/ShipmentReference"/> | |||||
</ShipmentNumber> | |||||
<StatusCode>D</StatusCode> | |||||
<StatusDateTime> | |||||
<xsl:value-of select="Status/StatusTimeStamp"/> | |||||
</StatusDateTime> | |||||
<SignedBy /> | |||||
<Remarks /> | |||||
</ShipmentStatusReport> | |||||
</ns0:ShipmentStatus> | |||||
</xsl:template> | |||||
</xsl:stylesheet> |
@@ -0,0 +1,100 @@ | |||||
<?xml version="1.0" encoding="utf-8"?> | |||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |||||
<PropertyGroup> | |||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | |||||
<SchemaVersion>2.0</SchemaVersion> | |||||
<ProjectGuid>{B0C9D0D2-75D8-4A96-8593-6E71CAACBB4D}</ProjectGuid> | |||||
<ProjectTypeGuids>{EF7E3281-CD33-11D4-8326-00C04FA0CE8D};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> | |||||
<OutputType>library</OutputType> | |||||
<GenericProcessing>true</GenericProcessing> | |||||
<RootNamespace>TM.HelloBizTalk2013World.Transforms</RootNamespace> | |||||
<AssemblyName>TM.HelloBizTalk2013World.Transforms</AssemblyName> | |||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion> | |||||
<BpelCompliance>True</BpelCompliance> | |||||
</PropertyGroup> | |||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |||||
<DebugSymbols>true</DebugSymbols> | |||||
<DebugType>full</DebugType> | |||||
<Optimize>false</Optimize> | |||||
<OutputPath>bin\Debug\</OutputPath> | |||||
<DefineConstants>DEBUG;TRACE</DefineConstants> | |||||
<ErrorReport>prompt</ErrorReport> | |||||
<WarningLevel>4</WarningLevel> | |||||
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> | |||||
</PropertyGroup> | |||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | |||||
<DebugType>pdbonly</DebugType> | |||||
<Optimize>true</Optimize> | |||||
<OutputPath>bin\Release\</OutputPath> | |||||
<DefineConstants>TRACE</DefineConstants> | |||||
<ErrorReport>prompt</ErrorReport> | |||||
<WarningLevel>4</WarningLevel> | |||||
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> | |||||
</PropertyGroup> | |||||
<PropertyGroup> | |||||
<SignAssembly>true</SignAssembly> | |||||
</PropertyGroup> | |||||
<PropertyGroup> | |||||
<AssemblyOriginatorKeyFile>HelloBizTalk2013World.snk</AssemblyOriginatorKeyFile> | |||||
</PropertyGroup> | |||||
<ItemGroup> | |||||
<Reference Include="System"> | |||||
<Name>System</Name> | |||||
</Reference> | |||||
<Reference Include="System.Xml"> | |||||
<Name>System.XML</Name> | |||||
</Reference> | |||||
<Reference Include="System.Configuration"> | |||||
<Name>System.Configuration</Name> | |||||
</Reference> | |||||
<Reference Include="Microsoft.BizTalk.Pipeline"> | |||||
<SpecificVersion>False</SpecificVersion> | |||||
</Reference> | |||||
<Reference Include="Microsoft.BizTalk.DefaultPipelines"> | |||||
<Name>Microsoft.BizTalk.DefaultPipelines</Name> | |||||
</Reference> | |||||
<Reference Include="Microsoft.BizTalk.GlobalPropertySchemas"> | |||||
<Name>Microsoft.BizTalk.GlobalPropertySchemas</Name> | |||||
</Reference> | |||||
<Reference Include="Microsoft.BizTalk.TestTools"> | |||||
<Name>Microsoft.BizTalk.TestTools</Name> | |||||
</Reference> | |||||
<Reference Include="Microsoft.XLANGs.BaseTypes"> | |||||
<Name>Microsoft.XLANGs.BaseTypes</Name> | |||||
</Reference> | |||||
<Reference Include="TM.Shared.Components, Version=1.0.36.0, Culture=neutral, PublicKeyToken=9cbf569b151cb1d4, processorArchitecture=MSIL"> | |||||
<SpecificVersion>False</SpecificVersion> | |||||
<HintPath>C:\Windows\Microsoft.NET\assembly\GAC_MSIL\TM.Shared.Components\v4.0_1.0.36.0__9cbf569b151cb1d4\TM.Shared.Components.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="TM.Shared.Schemas, Version=1.0.4.0, Culture=neutral, PublicKeyToken=013b7f851874cb98, processorArchitecture=MSIL"> | |||||
<SpecificVersion>False</SpecificVersion> | |||||
<HintPath>..\..\..\..\..\..\..\Windows\Microsoft.NET\assembly\GAC_MSIL\TM.Shared.Schemas\v4.0_1.0.4.0__013b7f851874cb98\TM.Shared.Schemas.dll</HintPath> | |||||
</Reference> | |||||
</ItemGroup> | |||||
<ItemGroup> | |||||
<Compile Include="Properties\AssemblyInfo.cs" /> | |||||
</ItemGroup> | |||||
<ItemGroup> | |||||
<None Include="HelloBizTalk2013World.snk" /> | |||||
</ItemGroup> | |||||
<ItemGroup> | |||||
<Content Include="CustomExtensions.xml"> | |||||
<SubType>Designer</SubType> | |||||
</Content> | |||||
<Content Include="Shared.OrderStatus_to_ShipmentStatus.xsl" /> | |||||
<Map Include="Shared.OrderStatus_to_ShipmentStatus.btm"> | |||||
<TypeName>Shared_OrderStatus_to_ShipmentStatus</TypeName> | |||||
<Namespace>TM.HelloBizTalk2013World.Transforms</Namespace> | |||||
<SubType>Task</SubType> | |||||
</Map> | |||||
</ItemGroup> | |||||
<ItemGroup> | |||||
<ProjectReference Include="..\Schemas\Schemas.btproj"> | |||||
<Project>{dd0cddd5-0d81-4c81-9e3e-24fe00ee99d9}</Project> | |||||
<Name>Schemas</Name> | |||||
</ProjectReference> | |||||
</ItemGroup> | |||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | |||||
<Import Project="$(MSBuildExtensionsPath)\Microsoft\BizTalk\BizTalkC.targets" /> | |||||
</Project> |
@@ -0,0 +1,121 @@ | |||||
<?xml version="1.0" encoding="utf-8" ?> | |||||
<!-- | |||||
Deployment Framework for BizTalk | |||||
Copyright (C) Thomas F. Abraham, Scott Colestock | |||||
C:\Program Files (x86)\Deployment Framework for BizTalk 5.7\Developer\ProjectTemplate | |||||
--> | |||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Installer"> | |||||
<PropertyGroup> | |||||
<Configuration Condition="'$(Configuration)' == ''">Debug</Configuration> | |||||
<Platform Condition="'$(Platform)' == ''">x86</Platform> | |||||
<!--Customization Generic Apps--> | |||||
<IsGenericComponent>False</IsGenericComponent> | |||||
<IntegrationCode>F017</IntegrationCode> | |||||
<UseEnvSettingsDB>True</UseEnvSettingsDB> | |||||
<!-- Customization SSO Data Store Credentials --> | |||||
<SsoAppAdminGroup>$(SsoAppAdmin2016)</SsoAppAdminGroup> | |||||
<SsoAppUserGroup>$(SsoAppAdmin2016)</SsoAppUserGroup> | |||||
<!--End Customization--> | |||||
<SchemaVersion>1.0</SchemaVersion> | |||||
<ProjectVersion>1.0</ProjectVersion> | |||||
<ProjectName>KLG.Extern</ProjectName> | |||||
<IncludeComponents>False</IncludeComponents> | |||||
<IncludePipelineComponents>False</IncludePipelineComponents> | |||||
<IncludePipelines>False</IncludePipelines> | |||||
<IncludeOrchestrations>False</IncludeOrchestrations> | |||||
<IncludeSchemas>True</IncludeSchemas> | |||||
<IncludeTransforms>True</IncludeTransforms> | |||||
<IncludeMessagingBindings>True</IncludeMessagingBindings> | |||||
<UsingMasterBindings>True</UsingMasterBindings> | |||||
<RequireXmlPreprocessDirectives>False</RequireXmlPreprocessDirectives> | |||||
<ApplyXmlEscape>True</ApplyXmlEscape> | |||||
<IncludeSettingsSpreadsheetInMsi>False</IncludeSettingsSpreadsheetInMsi> | |||||
<SkipIISReset>True</SkipIISReset> | |||||
<EnableAllReceiveLocationsOnDeploy>False</EnableAllReceiveLocationsOnDeploy> | |||||
<IncludeSSO>True</IncludeSSO> | |||||
<SkipHostInstancesRestart>True</SkipHostInstancesRestart> | |||||
</PropertyGroup> | |||||
<PropertyGroup> | |||||
<!-- Properties related to building an MSI for server deployments --> | |||||
<!-- BizTalk App Version Upgrade --> | |||||
<!-- For each new product release to be deployed to your BizTalk servers: --> | |||||
<!-- 1) Increment ProductVersion --> | |||||
<!-- 2) Generate a new GUID and update ProductId with the new GUID --> | |||||
<!-- This allows the new MSI to automatically uninstall (not undeploy!) the old MSI and install the new one. --> | |||||
<ProductVersion>3.0.0</ProductVersion> | |||||
<PackageRevisionLog>Migratie 2016</PackageRevisionLog> | |||||
<ProductId>12879756-7422-4456-a802-dd28a938faf3</ProductId> | |||||
<ProductName>TM.HelloBizTalk2013World</ProductName> | |||||
<ProductUpgradeCode>df5e2102-6a85-4eb7-bc82-225e6d62636a</ProductUpgradeCode> | |||||
<Manufacturer>KLG EDI Team</Manufacturer> | |||||
<PackageDescription>$(ProductName)</PackageDescription> | |||||
<PackageComments>$(ProductName)</PackageComments> | |||||
<BizTalkAppDescription>Last Deployment: $(ProductName)-$(ProductVersion) on: $([System.DateTime]::Now) By: $(USERNAME)</BizTalkAppDescription> | |||||
</PropertyGroup> | |||||
<!-- Under TFS Team Build, set CustomizableOutDir property to true in TFS 2005/2008/2010 UpgradeTemplate. --> | |||||
<!-- With a workflow build, copy the default template then modify the MSBuild task for the solution build. Set OutDir to blank and --> | |||||
<!-- CommandLineArguments to String.Format("/p:SkipInvalidConfigurations=true;TeamBuildOutDir=""{0}"" {1}", BinariesDirectory, MSBuildArguments). --> | |||||
<PropertyGroup Condition="'$(Configuration)' == 'Debug'"> | |||||
<DeploymentFrameworkTargetsPath>$(MSBuildExtensionsPath)\DeploymentFrameworkForBizTalk\5.0\</DeploymentFrameworkTargetsPath> | |||||
<OutputPath Condition="'$(TeamBuildOutDir)' == ''">bin\Debug\</OutputPath> | |||||
<OutputPath Condition="'$(TeamBuildOutDir)' != ''">$(TeamBuildOutDir)</OutputPath> | |||||
<DeployPDBsToGac>false</DeployPDBsToGac> | |||||
</PropertyGroup> | |||||
<PropertyGroup Condition="'$(Configuration)' == 'Release'"> | |||||
<DeploymentFrameworkTargetsPath>$(MSBuildExtensionsPath)\DeploymentFrameworkForBizTalk\5.0\</DeploymentFrameworkTargetsPath> | |||||
<OutputPath Condition="'$(TeamBuildOutDir)' == ''">bin\Release\</OutputPath> | |||||
<OutputPath Condition="'$(TeamBuildOutDir)' != ''">$(TeamBuildOutDir)</OutputPath> | |||||
<DeployPDBsToGac>false</DeployPDBsToGac> | |||||
</PropertyGroup> | |||||
<PropertyGroup Condition="'$(Configuration)' == 'Server'"> | |||||
<DeploymentFrameworkTargetsPath>Framework\</DeploymentFrameworkTargetsPath> | |||||
<!-- Get our PDBs into the GAC so we get file/line number information in stack traces. --> | |||||
<DeployPDBsToGac>true</DeployPDBsToGac> | |||||
</PropertyGroup> | |||||
<ItemGroup> | |||||
<PropsFromEnvSettings Include="SsoAppUserGroup;SsoAppAdminGroup;ESBLookupConnectionString2016;ESBTrackingConnectionString;B2BUsername;B2BPassword"/> | |||||
<AppsToReference Include="KLG.Intern"/> | |||||
</ItemGroup> | |||||
<Import Project="$(DeploymentFrameworkTargetsPath)BizTalkDeploymentFramework.targets"/> | |||||
<!-- ============ START Deployment OVERRIDE ============ --> | |||||
<Import Project="$(BTDFEXTENSIONPATH)\Targets\1.0.0\Custom.BizTalkDeploymentFramework.targets"/> | |||||
<Import Project="$(DeploymentFrameworkTargetsPath)BizTalkDeploymentFramework.Redeploy.targets"/> | |||||
<!-- | |||||
The Deployment Framework automatically packages most files into the server install MSI. | |||||
However, if there are special folders that you need to include in the MSI, you can | |||||
copy them to the folder $(RedistDir) in the CustomRedist target. | |||||
To include individual files, add an ItemGroup with AdditionalFiles elements. | |||||
--> | |||||
<Target Name="UndeployAppDefinition" Condition="'$(SkipUndeploy)' == 'false'" DependsOnTargets="PrepareAppForUndeploy"> | |||||
<Message Text="-> Override UndeployAppDefinition (no application removal is done!)"/> | |||||
<Exec Command="BTSTask.exe RemoveResource -ApplicationName:"$(BizTalkAppName)" -Luid:"$(ProductName).Transforms, Version=3.0.0.0, Culture=neutral, PublicKeyToken=$(ProductPublicKey)"" Condition="'$(AppExists)' == 'true'" ContinueOnError="true"/> | |||||
<Exec Command="BTSTask.exe RemoveResource -ApplicationName:"$(BizTalkAppName)" -Luid:"$(ProductName).Schemas, Version=3.0.0.0, Culture=neutral, PublicKeyToken=$(ProductPublicKey)"" Condition="'$(AppExists)' == 'true'" ContinueOnError="true"/> | |||||
</Target> | |||||
<Target Name="StopApplication" DependsOnTargets="VerifyBizTalkAppExists"> | |||||
<Message Text="-> Override StopApplication"/> | |||||
<!--Stop Orchestrations--> | |||||
<!--<ControlBizTalkArtefacts ApplicationName="$(BizTalkAppName)" Command="Stop" SendPortName="" ReceivePortName="" OrchestrationName="OrchestrationExample" Condition="'$(AppExists)' == 'true'"/>--> | |||||
<!--Stop Send Ports (optional remove mapping)--> | |||||
<ControlBizTalkArtefacts ApplicationName="$(BizTalkAppName)" Command="Stop" SendPortName="Thomas.Send" ReceivePortName="" OrchestrationName="" Condition="'$(AppExists)' == 'true'"/> | |||||
<ControlBizTalkArtefacts ApplicationName="$(BizTalkAppName)" Command="RemoveOutboundTransformFromSendPort" SendPortName="Thomas.Send" ReceivePortName="" OrchestrationName="" TransformName="TM.HelloBizTalk2013World.Transforms.Shared_OrderStatus_to_ShipmentStatus" Condition="'$(AppExists)' == 'true'"/> | |||||
<!--Stop Receive Ports (optional remove mapping)--> | |||||
<ControlBizTalkArtefacts ApplicationName="$(BizTalkAppName)" Command="Stop" SendPortName="" ReceivePortName="Thomas.Receive" OrchestrationName="" Condition="'$(AppExists)' == 'true'"/> | |||||
<ControlBizTalkArtefacts ApplicationName="$(BizTalkAppName)" Command="RemoveInboundTransformFromReceivePort" SendPortName="" ReceivePortName="Thomas.Receive" OrchestrationName="" TransformName="TM.HelloBizTalk2013World.Transforms.Shared_OrderStatus_to_ShipmentStatus" Condition="'$(AppExists)' == 'true'"/> | |||||
<!--<ControlBizTalkArtefacts ApplicationName="$(BizTalkAppName)" Command="Stop" SendPortName="" ReceivePortName="TM.IDS: TM.IDS.Shipment_to_TM.Shared.Order" OrchestrationName="" Condition="'$(AppExists)' == 'true'"/>--> | |||||
</Target> | |||||
<Target Name="StartApplication" Condition="'$(StartApplicationOnDeploy)' == 'true'"> | |||||
<Message Text="-> Override StartApplication"/> | |||||
<Message Text="Starting $(BizTalkAppName) application at $(StartApplicationTime)."/> | |||||
<Message Text="Note: Starting the app may take 5-10 secs PER ORCHESTRATION. Please wait..."/> | |||||
<!--Start Send Ports--> | |||||
<ControlBizTalkArtefacts ApplicationName="$(BizTalkAppName)" Command="Start" SendPortName="Thomas.Send" ReceivePortName="" OrchestrationName="" Condition="'$(AppExists)' == 'true'"/> | |||||
<!--Start Receive Ports--> | |||||
<ControlBizTalkArtefacts ApplicationName="$(BizTalkAppName)" Command="Start" SendPortName="" ReceivePortName="Thomas.Receive" OrchestrationName="" Condition="'$(AppExists)' == 'true'"/> | |||||
<!--Start Orchestrations--> | |||||
<!--<ControlBizTalkArtefacts ApplicationName="$(BizTalkAppName)" Command="Start" SendPortName="" ReceivePortName="" OrchestrationName="OrchestrationExample" Condition="'$(AppExists)' == 'true'"/>--> | |||||
</Target> | |||||
<!-- ============ END Deployment OVERRIDE ============ --> | |||||
</Project> | |||||
@@ -0,0 +1,95 @@ | |||||
<?xml version="1.0" encoding="utf-8"?> | |||||
<!-- | |||||
Deployment Framework for BizTalk | |||||
Copyright (C) 2004-2012 Thomas F. Abraham and Scott Colestock | |||||
--> | |||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Installer" ToolsVersion="4.0"> | |||||
<PropertyGroup> | |||||
<Configuration Condition="'$(Configuration)' == ''">Debug</Configuration> | |||||
<Platform Condition="'$(Platform)' == ''">x86</Platform> | |||||
<!-- Customization Generic Apps --> | |||||
<IsGenericComponent>False</IsGenericComponent> | |||||
<IntegrationCode>F017</IntegrationCode> | |||||
<UseEnvSettingsDB>True</UseEnvSettingsDB> | |||||
<!-- Customization SSO Data Store Credentials --> | |||||
<SsoAppAdminGroup>KLG\BizTalk SSO Administrators_$(BTDFENV)</SsoAppAdminGroup> | |||||
<SsoAppUserGroup>KLG\BizTalk SSO Administrators_$(BTDFENV)</SsoAppUserGroup> | |||||
<!-- End Customization --> | |||||
<SchemaVersion>1.0</SchemaVersion> | |||||
<ProjectName>HelloBizTalk2013World</ProjectName> | |||||
<ProjectVersion>1.0</ProjectVersion> | |||||
<SkipIISReset>True</SkipIISReset> | |||||
<SkipHostInstancesRestart>True</SkipHostInstancesRestart> | |||||
<IncludeOrchestrations>False</IncludeOrchestrations> | |||||
<IncludeSSO>True</IncludeSSO> | |||||
<UsingMasterBindings>True</UsingMasterBindings> | |||||
<RequireXmlPreprocessDirectives>False</RequireXmlPreprocessDirectives> | |||||
<ApplyXmlEscape>True</ApplyXmlEscape> | |||||
</PropertyGroup> | |||||
<PropertyGroup> | |||||
<!-- Properties related to building an MSI for server deployments --> | |||||
<!-- BizTalk App Version Upgrade --> | |||||
<!-- For each new product release to be deployed to your BizTalk servers: --> | |||||
<!-- 1) Increment ProductVersion --> | |||||
<!-- 2) Generate a new GUID and update ProductId with the new GUID --> | |||||
<!-- This allows the new MSI to automatically uninstall (not undeploy!) the old MSI and install the new one. --> | |||||
<ProductVersion>1.0.0</ProductVersion> | |||||
<ProductId>12879756-7422-4456-a802-dd28a938faf3</ProductId> | |||||
<!-- BizTalk App Version Upgrade --> | |||||
<ProductName>HelloBizTalk2013World</ProductName> | |||||
<Manufacturer>$(BTDFCOMPANYNAME) Deployment Framework User</Manufacturer> | |||||
<PackageDescription>HelloBizTalk2013World</PackageDescription> | |||||
<PackageComments>HelloBizTalk2013World</PackageComments> | |||||
<BizTalkAppDescription>$(ProjectName)-$(ProductVersion) Build on: $([System.DateTime]::Now) By: $(USERNAME) </BizTalkAppDescription> | |||||
<!-- NEVER change the ProductUpgradeCode. --> | |||||
<ProductUpgradeCode>df5e2102-6a85-4eb7-bc82-225e6d62636a</ProductUpgradeCode> | |||||
</PropertyGroup> | |||||
<!-- Under TFS Team Build, set CustomizableOutDir property to true in TFS 2005/2008/2010 UpgradeTemplate. --> | |||||
<!-- With a workflow build, copy the default template then modify the MSBuild task for the solution build. Set OutDir to blank and --> | |||||
<!-- CommandLineArguments to String.Format("/p:SkipInvalidConfigurations=true;TeamBuildOutDir=""{0}"" {1}", BinariesDirectory, MSBuildArguments). --> | |||||
<PropertyGroup Condition="'$(Configuration)' == 'Debug'"> | |||||
<DeploymentFrameworkTargetsPath>$(MSBuildExtensionsPath)\DeploymentFrameworkForBizTalk\5.0\</DeploymentFrameworkTargetsPath> | |||||
<OutputPath Condition="'$(TeamBuildOutDir)' == ''">bin\Debug\</OutputPath> | |||||
<OutputPath Condition="'$(TeamBuildOutDir)' != ''">$(TeamBuildOutDir)</OutputPath> | |||||
<DeployPDBsToGac>false</DeployPDBsToGac> | |||||
</PropertyGroup> | |||||
<PropertyGroup Condition="'$(Configuration)' == 'Release'"> | |||||
<DeploymentFrameworkTargetsPath>$(MSBuildExtensionsPath)\DeploymentFrameworkForBizTalk\5.0\</DeploymentFrameworkTargetsPath> | |||||
<OutputPath Condition="'$(TeamBuildOutDir)' == ''">bin\Release\</OutputPath> | |||||
<OutputPath Condition="'$(TeamBuildOutDir)' != ''">$(TeamBuildOutDir)</OutputPath> | |||||
<DeployPDBsToGac>false</DeployPDBsToGac> | |||||
</PropertyGroup> | |||||
<PropertyGroup Condition="'$(Configuration)' == 'Server'"> | |||||
<DeploymentFrameworkTargetsPath>Framework\</DeploymentFrameworkTargetsPath> | |||||
<!-- Get our PDBs into the GAC so we get file/line number information in stack traces. --> | |||||
<DeployPDBsToGac>true</DeployPDBsToGac> | |||||
</PropertyGroup> | |||||
<ItemGroup> | |||||
<PropsFromEnvSettings Include="SsoAppUserGroup;SsoAppAdminGroup;ESBLookupConnectionString;ESBTrackingConnectionString;B2BUsername;B2BPassword" /> | |||||
<AppsToReference Include="TM.Shared.Pipelines" /> | |||||
<AppsToReference Include="TM.Shared.Schemas" /> | |||||
<AppsToReference Include="TM.Shared.PipelineComponents" /> | |||||
</ItemGroup> | |||||
<!-- !!! TODO !!! --> | |||||
<!-- Add ItemGroup elements that contain one or more Schemas, Orchestrations, Transforms, etc. elements that describe --> | |||||
<!-- the specific artifacts in your solution that need to be deployed. Use IntelliSense as a guide. --> | |||||
<ItemGroup> | |||||
<Schemas Include="TM.HelloBizTalk2013World.Schemas.dll"> | |||||
<LocationPath>..\Schemas\bin\$(Configuration)</LocationPath> | |||||
</Schemas> | |||||
<Transforms Include="TM.HelloBizTalk2013World.Transforms.dll"> | |||||
<LocationPath>..\Transforms\bin\$(Configuration)</LocationPath> | |||||
</Transforms> | |||||
</ItemGroup> | |||||
<!-- !!! TODO !!! --> | |||||
<Import Project="$(DeploymentFrameworkTargetsPath)BizTalkDeploymentFramework.targets" /> | |||||
<Import Project="$(BTDFEXTENSIONPATH)\Targets\1.0.0.\Custom.BizTalkDeploymentFramework.targets" /> | |||||
<!-- | |||||
The Deployment Framework automatically packages most files into the server install MSI. | |||||
However, if there are special folders that you need to include in the MSI, you can | |||||
copy them to the folder $(RedistDir) in the CustomRedist target. | |||||
To include individual files, add an ItemGroup with AdditionalFiles elements. | |||||
--> | |||||
<Target Name="CustomRedist"> | |||||
</Target> | |||||
</Project> |
@@ -0,0 +1,37 @@ | |||||
<?xml version="1.0" encoding="utf-8"?> | |||||
<!--User tdradmin called GetEnvironmentSettingsTasks for integration KLG.Extern with version : 3.0.0 (ProductId:12879756-7422-4456-a802-dd28a938faf3) (ProductUpgradeCodedf5e2102-6a85-4eb7-bc82-225e6d62636a) on date: 12/11/2024 15:40:33--> | |||||
<settings> | |||||
<property name="Shared.OrderStatus_to_ShipmentStatus" /> | |||||
<property name="SsoAppUserGroup" Default="true">KLG\BizTalk SSO Administrators_DEV</property> | |||||
<property name="SsoAppAdminGroup" Default="true">KLG\BizTalk SSO Administrators_DEV</property> | |||||
<property name="ESBTrackingConnectionString" Default="true">Data Source=NLDC1-BTSSQLE01;Initial Catalog=ESBTrackingDEV;Integrated Security=SSPI;</property> | |||||
<property name="ESBLookupConnectionString" Default="true">Provider=SQLOLEDB.1;Data Source=vmBizTalkTST\ESB;Initial Catalog=ESBLookups;Integrated Security=SSPI;</property> | |||||
<property name="B2BUsername" Default="true"></property> | |||||
<property name="B2BPassword" Default="true"></property> | |||||
<property name="CustomerPortalLookupConnectionString" Default="true">Provider=SQLOLEDB.1;Data Source=VMSQL1VENLO\Others;Initial Catalog=CustomerPortal;Integrated Security=SSPI;</property> | |||||
<property name="TESTUsernameAzure" Default="true"></property> | |||||
<property name="TM.Shared.Schemas: Latest Version" Default="true">v19A</property> | |||||
<property name="TM.Shared.Pipelines: Version" Default="true">2.0.1.0</property> | |||||
<property name="Csharp_ESBLookupConnectionString" Default="true">Data Source=vmBizTalkTST\ESB;Initial Catalog=ESBLookups;Integrated Security=SSPI;</property> | |||||
<property name="Service Account" Default="true"></property> | |||||
<property name="Service Account Password" Default="true"></property> | |||||
<property name="TESTusernameSFTP" Default="true"></property> | |||||
<property name="TM.Shared.Application: DebugLevel" Default="true">ALL</property> | |||||
<property name="EmailFromEnvironment" Default="true">EDI_DEV@klgeurope.com</property> | |||||
<property name="Environment" Default="true">DEV</property> | |||||
<property name="TM.Shared: XMLDOC_IN" Default="true">D:\ESB\KLG.TM\Shared\XMLDOC\IN\%MessageID%.xml</property> | |||||
<property name="SQL Server" Default="true">VMBIZTALKTST/ESB</property> | |||||
<property name="svc_bts_edi_fs_pw" Default="true"></property> | |||||
<property name="svc_bts_edi_fs_user" Default="true"></property> | |||||
<property name="TM.Shared.PipelinesDoc: Latest Version" Default="true">1.0.0.0</property> | |||||
<property name="SsoAppAdmin2016" Default="true">KLG\BTS-SSO-Admins-DEV</property> | |||||
<property name="TM.Shared.Pipelines: Version2016" Default="true">3.0.1.0</property> | |||||
<property name="ESBLookupConnectionString2016" Default="true">Provider=SQLOLEDB.1;Data Source=nlDC1-BtsTST01\ESB;Initial Catalog=ESBLookups;Integrated Security=SSPI;</property> | |||||
<property name="Csharp_ESBLookupConnectionString2016" Default="true">Data Source=NLDC1-BTSTST01\ESB;Initial Catalog=ESBLookups;Integrated Security=SSPI;</property> | |||||
<property name="ESBLookupConnectionStringMAURICE" Default="true">Provider=SQLOLEDB.1;Data Source=VMSQL3VENLO;Initial Catalog=ESBLookups;Integrated Security=SSPI;</property> | |||||
<property name="KLG : Thumbprint" Default="true">E73F476956BF0DA8888B1B210EC7CD48861835EF</property> | |||||
<property name="MachineName" Default="true"></property> | |||||
<property name="FTP_LogDir" Default="true">D:\LOG\FTP\</property> | |||||
<property name="SQL Server2016" Default="true">NLDC1-BTSTST01\ESB</property> | |||||
<property name="X12.ISA15" Default="true">T</property> | |||||
</settings> |
@@ -0,0 +1,16 @@ | |||||
<?xml version="1.0" encoding="utf-8"?> | |||||
<!-- | |||||
This file was auto-generated by the Environment Settings Spreadsheet to XML Exporter (http://envsettingsmanager.codeplex.com). | |||||
Input File: SettingsFileGenerator.xml | |||||
Created: 12-11-2024 03:40 | |||||
--> | |||||
<settings> | |||||
<!--Environment: Shared Development--> | |||||
<property name="SsoAppUserGroup">BizTalk Application Users</property> | |||||
<property name="SsoAppAdminGroup">BizTalk Server Administrators</property> | |||||
<property name="ESBLookupConnectionString"></property> | |||||
<property name="ESBTrackingConnectionString"></property> | |||||
<property name="B2BUsername"></property> | |||||
<property name="B2BPassword"></property> | |||||
</settings> |
@@ -0,0 +1,16 @@ | |||||
<?xml version="1.0" encoding="utf-8"?> | |||||
<!-- | |||||
This file was auto-generated by the Environment Settings Spreadsheet to XML Exporter (http://envsettingsmanager.codeplex.com). | |||||
Input File: SettingsFileGenerator.xml | |||||
Created: 12-11-2024 03:40 | |||||
--> | |||||
<settings> | |||||
<!--Environment: Local Development--> | |||||
<property name="SsoAppUserGroup">BizTalk Application Users</property> | |||||
<property name="SsoAppAdminGroup">BizTalk Server Administrators</property> | |||||
<property name="ESBLookupConnectionString"></property> | |||||
<property name="ESBTrackingConnectionString"></property> | |||||
<property name="B2BUsername"></property> | |||||
<property name="B2BPassword"></property> | |||||
</settings> |
@@ -0,0 +1,16 @@ | |||||
<?xml version="1.0" encoding="utf-8"?> | |||||
<!-- | |||||
This file was auto-generated by the Environment Settings Spreadsheet to XML Exporter (http://envsettingsmanager.codeplex.com). | |||||
Input File: SettingsFileGenerator.xml | |||||
Created: 12-11-2024 03:40 | |||||
--> | |||||
<settings> | |||||
<!--Environment: Production--> | |||||
<property name="SsoAppUserGroup">BizTalk Application Users</property> | |||||
<property name="SsoAppAdminGroup">BizTalk Server Administrators</property> | |||||
<property name="ESBLookupConnectionString"></property> | |||||
<property name="ESBTrackingConnectionString"></property> | |||||
<property name="B2BUsername"></property> | |||||
<property name="B2BPassword"></property> | |||||
</settings> |
@@ -0,0 +1,16 @@ | |||||
<?xml version="1.0" encoding="utf-8"?> | |||||
<!-- | |||||
This file was auto-generated by the Environment Settings Spreadsheet to XML Exporter (http://envsettingsmanager.codeplex.com). | |||||
Input File: SettingsFileGenerator.xml | |||||
Created: 12-11-2024 03:40 | |||||
--> | |||||
<settings> | |||||
<!--Environment: Test--> | |||||
<property name="SsoAppUserGroup">BizTalk Application Users</property> | |||||
<property name="SsoAppAdminGroup">BizTalk Server Administrators</property> | |||||
<property name="ESBLookupConnectionString"></property> | |||||
<property name="ESBTrackingConnectionString"></property> | |||||
<property name="B2BUsername"></property> | |||||
<property name="B2BPassword"></property> | |||||
</settings> |
@@ -0,0 +1,20 @@ | |||||
<?xml version="1.0" encoding="utf-8" ?> | |||||
<!-- | |||||
Deployment Framework for BizTalk | |||||
Copyright (C) 2008-14 Thomas F. Abraham, 2004-08 Scott Colestock | |||||
From C:\Program Files (x86)\Deployment Framework for BizTalk 5.7\Developer\ProjectTemplate | |||||
--> | |||||
<!-- Each SetEnvUIConfigItem element defines a single page in the wizard that appears during a server deployment. --> | |||||
<!-- The EnvironmentVarName element specifies the name of an environment variable that will contain the value of the --> | |||||
<!-- user's selection. Each environment variable automatically becomes an MSBuild property that you may reference in --> | |||||
<!-- your .btdfproj file. --> | |||||
<SetEnvUIConfig xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |||||
<DialogCaption>[PROJECTNAME]</DialogCaption> | |||||
<SetEnvUIConfigItem> | |||||
<PromptText>Helaas verplichte, onoverkomelijke prompt ... </PromptText> | |||||
<Caption>This is the LAST server in the BizTalk Group</Caption> | |||||
<PromptValue>true</PromptValue> | |||||
<ValueType>Checkbox</ValueType> | |||||
<EnvironmentVarName>BT_DEPLOY_MGMT_DB</EnvironmentVarName> | |||||
</SetEnvUIConfigItem> | |||||
</SetEnvUIConfig> |
@@ -0,0 +1,181 @@ | |||||
{\rtf1\adeflang1025\ansi\ansicpg1252\uc1\adeff0\deff0\stshfdbch0\stshfloch0\stshfhich0\stshfbi0\deflang1033\deflangfe1033\themelang1033\themelangfe0\themelangcs0{\fonttbl{\f0\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f34\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria Math;} | |||||
{\flomajor\f31500\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fdbmajor\f31501\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} | |||||
{\fhimajor\f31502\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria;}{\fbimajor\f31503\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} | |||||
{\flominor\f31504\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fdbminor\f31505\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} | |||||
{\fhiminor\f31506\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0502020204030204}Calibri;}{\fbiminor\f31507\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f39\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} | |||||
{\f40\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\f42\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\f43\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\f44\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} | |||||
{\f45\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\f46\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\f47\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\f379\fbidi \froman\fcharset238\fprq2 Cambria Math CE;} | |||||
{\f380\fbidi \froman\fcharset204\fprq2 Cambria Math Cyr;}{\f382\fbidi \froman\fcharset161\fprq2 Cambria Math Greek;}{\f383\fbidi \froman\fcharset162\fprq2 Cambria Math Tur;}{\f386\fbidi \froman\fcharset186\fprq2 Cambria Math Baltic;} | |||||
{\f387\fbidi \froman\fcharset163\fprq2 Cambria Math (Vietnamese);}{\flomajor\f31508\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flomajor\f31509\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} | |||||
{\flomajor\f31511\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flomajor\f31512\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flomajor\f31513\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} | |||||
{\flomajor\f31514\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flomajor\f31515\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flomajor\f31516\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);} | |||||
{\fdbmajor\f31518\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fdbmajor\f31519\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fdbmajor\f31521\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;} | |||||
{\fdbmajor\f31522\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fdbmajor\f31523\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fdbmajor\f31524\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} | |||||
{\fdbmajor\f31525\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fdbmajor\f31526\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fhimajor\f31528\fbidi \froman\fcharset238\fprq2 Cambria CE;} | |||||
{\fhimajor\f31529\fbidi \froman\fcharset204\fprq2 Cambria Cyr;}{\fhimajor\f31531\fbidi \froman\fcharset161\fprq2 Cambria Greek;}{\fhimajor\f31532\fbidi \froman\fcharset162\fprq2 Cambria Tur;} | |||||
{\fhimajor\f31535\fbidi \froman\fcharset186\fprq2 Cambria Baltic;}{\fhimajor\f31536\fbidi \froman\fcharset163\fprq2 Cambria (Vietnamese);}{\fbimajor\f31538\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} | |||||
{\fbimajor\f31539\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fbimajor\f31541\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbimajor\f31542\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} | |||||
{\fbimajor\f31543\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fbimajor\f31544\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbimajor\f31545\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} | |||||
{\fbimajor\f31546\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\flominor\f31548\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flominor\f31549\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} | |||||
{\flominor\f31551\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flominor\f31552\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flominor\f31553\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} | |||||
{\flominor\f31554\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flominor\f31555\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flominor\f31556\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);} | |||||
{\fdbminor\f31558\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fdbminor\f31559\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fdbminor\f31561\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;} | |||||
{\fdbminor\f31562\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fdbminor\f31563\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fdbminor\f31564\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} | |||||
{\fdbminor\f31565\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fdbminor\f31566\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fhiminor\f31568\fbidi \fswiss\fcharset238\fprq2 Calibri CE;} | |||||
{\fhiminor\f31569\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr;}{\fhiminor\f31571\fbidi \fswiss\fcharset161\fprq2 Calibri Greek;}{\fhiminor\f31572\fbidi \fswiss\fcharset162\fprq2 Calibri Tur;} | |||||
{\fhiminor\f31575\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic;}{\fhiminor\f31576\fbidi \fswiss\fcharset163\fprq2 Calibri (Vietnamese);}{\fbiminor\f31578\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} | |||||
{\fbiminor\f31579\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fbiminor\f31581\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbiminor\f31582\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} | |||||
{\fbiminor\f31583\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fbiminor\f31584\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbiminor\f31585\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} | |||||
{\fbiminor\f31586\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}}{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0; | |||||
\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;}{\*\defchp \fs22 }{\*\defpap | |||||
\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 }\noqfpromote {\stylesheet{\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs24\alang1025 | |||||
\ltrch\fcs0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \snext0 \sqformat \spriority0 Normal;}{\*\cs10 \additive \ssemihidden Default Paragraph Font;}{\* | |||||
\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\trcbpat1\trcfpat1\tblind0\tblindtype3\tscellwidthfts0\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv \ql \li0\ri0\sa200\sl276\slmult1 | |||||
\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \snext11 \ssemihidden \sunhideused \sqformat Normal Table;}{ | |||||
\s15\ql \li0\ri0\widctlpar\tqc\tx4680\tqr\tx9360\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs24\alang1025 \ltrch\fcs0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 | |||||
\sbasedon0 \snext15 \slink16 \ssemihidden \sunhideused \styrsid10577175 header;}{\*\cs16 \additive \rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \fs24 \sbasedon10 \slink15 \slocked \ssemihidden \styrsid10577175 Header Char;}{\s17\ql \li0\ri0\widctlpar | |||||
\tqc\tx4680\tqr\tx9360\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs24\alang1025 \ltrch\fcs0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 | |||||
\sbasedon0 \snext17 \slink18 \ssemihidden \sunhideused \styrsid10577175 footer;}{\*\cs18 \additive \rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \fs24 \sbasedon10 \slink17 \slocked \ssemihidden \styrsid10577175 Footer Char;}}{\*\rsidtbl \rsid1078147\rsid10577175 | |||||
\rsid15038695}{\mmathPr\mmathFont34\mbrkBin0\mbrkBinSub0\msmallFrac0\mdispDef1\mlMargin0\mrMargin0\mdefJc1\mwrapIndent1440\mintLim0\mnaryLim1}{\info{\creatim\yr2013\mo10\dy11\hr11\min37}{\revtim\yr2013\mo10\dy11\hr11\min37}{\version1}{\edmins0} | |||||
{\nofpages1}{\nofwords21}{\nofchars107}{\nofcharsws127}{\vern32773}}{\*\xmlnstbl {\xmlns1 http://schemas.microsoft.com/office/word/2003/wordml}}\paperw12240\paperh15840\margl1800\margr1800\margt1440\margb1440\gutter0\ltrsect | |||||
\widowctrl\ftnbj\aenddoc\trackmoves1\trackformatting1\donotembedsysfont1\relyonvml0\donotembedlingdata0\grfdocevents0\validatexml1\showplaceholdtext0\ignoremixedcontent0\saveinvalidxml0\showxmlerrors1\noxlattoyen | |||||
\expshrtn\noultrlspc\dntblnsbdb\nospaceforul\formshade\horzdoc\dgmargin\dghspace180\dgvspace180\dghorigin1800\dgvorigin1440\dghshow1\dgvshow1 | |||||
\jexpand\viewkind1\viewscale100\pgbrdrhead\pgbrdrfoot\splytwnine\ftnlytwnine\htmautsp\nolnhtadjtbl\useltbaln\alntblind\lytcalctblwd\lyttblrtgr\lnbrkrule\nobrkwrptbl\snaptogridincell\rempersonalinfo\allowfieldendsel | |||||
\wrppunct\asianbrkrule\rsidroot15038695\newtblstyruls\nogrowautofit\remdttm \fet0{\*\wgrffmtfilter 013f}\ilfomacatclnup0{\*\ftnsep \ltrpar \pard\plain \ltrpar | |||||
\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid10577175 \rtlch\fcs1 \af0\afs24\alang1025 \ltrch\fcs0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid10577175 | |||||
\chftnsep | |||||
\par }}{\*\ftnsepc \ltrpar \pard\plain \ltrpar\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid10577175 \rtlch\fcs1 \af0\afs24\alang1025 \ltrch\fcs0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 { | |||||
\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid10577175 \chftnsepc | |||||
\par }}{\*\aftnsep \ltrpar \pard\plain \ltrpar\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid10577175 \rtlch\fcs1 \af0\afs24\alang1025 \ltrch\fcs0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 { | |||||
\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid10577175 \chftnsep | |||||
\par }}{\*\aftnsepc \ltrpar \pard\plain \ltrpar\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid10577175 \rtlch\fcs1 \af0\afs24\alang1025 \ltrch\fcs0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 { | |||||
\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid10577175 \chftnsepc | |||||
\par }}\ltrpar \sectd \ltrsect\linex0\endnhere\sectlinegrid360\sectdefaultcl\sftnbj {\headerl \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\widctlpar\tqc\tx4680\tqr\tx9360\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 | |||||
\af0\afs24\alang1025 \ltrch\fcs0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid10577175 | |||||
\par }}{\headerr \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\widctlpar\tqc\tx4680\tqr\tx9360\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs24\alang1025 \ltrch\fcs0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 { | |||||
\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid10577175 | |||||
\par }}{\footerl \ltrpar \pard\plain \ltrpar\s17\ql \li0\ri0\widctlpar\tqc\tx4680\tqr\tx9360\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs24\alang1025 \ltrch\fcs0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 { | |||||
\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid10577175 | |||||
\par }}{\footerr \ltrpar \pard\plain \ltrpar\s17\ql \li0\ri0\widctlpar\tqc\tx4680\tqr\tx9360\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs24\alang1025 \ltrch\fcs0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 { | |||||
\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid10577175 | |||||
\par }}{\headerf \ltrpar \pard\plain \ltrpar\s15\ql \li0\ri0\widctlpar\tqc\tx4680\tqr\tx9360\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs24\alang1025 \ltrch\fcs0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 { | |||||
\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid10577175 | |||||
\par }}{\footerf \ltrpar \pard\plain \ltrpar\s17\ql \li0\ri0\widctlpar\tqc\tx4680\tqr\tx9360\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs24\alang1025 \ltrch\fcs0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 { | |||||
\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid10577175 | |||||
\par }}{\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2\pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}} | |||||
{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl8 | |||||
\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}\pard\plain \ltrpar\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 | |||||
\af0\afs24\alang1025 \ltrch\fcs0 \fs24\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid15038695 LICENSE AGREEMENT | |||||
\par | |||||
\par By installing this software, you agree to the licensing terms provided to you by the owner of the software. | |||||
\par | |||||
\par }{\*\themedata 504b030414000600080000002100828abc13fa0000001c020000130000005b436f6e74656e745f54797065735d2e786d6cac91cb6ac3301045f785fe83d0b6d8 | |||||
72ba28a5d8cea249777d2cd20f18e4b12d6a8f843409c9df77ecb850ba082d74231062ce997b55ae8fe3a00e1893f354e9555e6885647de3a8abf4fbee29bbd7 | |||||
2a3150038327acf409935ed7d757e5ee14302999a654e99e393c18936c8f23a4dc072479697d1c81e51a3b13c07e4087e6b628ee8cf5c4489cf1c4d075f92a0b | |||||
44d7a07a83c82f308ac7b0a0f0fbf90c2480980b58abc733615aa2d210c2e02cb04430076a7ee833dfb6ce62e3ed7e14693e8317d8cd0433bf5c60f53fea2fe7 | |||||
065bd80facb647e9e25c7fc421fd2ddb526b2e9373fed4bb902e182e97b7b461e6bfad3f010000ffff0300504b030414000600080000002100a5d6a7e7c00000 | |||||
00360100000b0000005f72656c732f2e72656c73848fcf6ac3300c87ef85bd83d17d51d2c31825762fa590432fa37d00e1287f68221bdb1bebdb4fc7060abb08 | |||||
84a4eff7a93dfeae8bf9e194e720169aaa06c3e2433fcb68e1763dbf7f82c985a4a725085b787086a37bdbb55fbc50d1a33ccd311ba548b63095120f88d94fbc | |||||
52ae4264d1c910d24a45db3462247fa791715fd71f989e19e0364cd3f51652d73760ae8fa8c9ffb3c330cc9e4fc17faf2ce545046e37944c69e462a1a82fe353 | |||||
bd90a865aad41ed0b5b8f9d6fd010000ffff0300504b0304140006000800000021006b799616830000008a0000001c0000007468656d652f7468656d652f7468 | |||||
656d654d616e616765722e786d6c0ccc4d0ac3201040e17da17790d93763bb284562b2cbaebbf600439c1a41c7a0d29fdbd7e5e38337cedf14d59b4b0d592c9c | |||||
070d8a65cd2e88b7f07c2ca71ba8da481cc52c6ce1c715e6e97818c9b48d13df49c873517d23d59085adb5dd20d6b52bd521ef2cdd5eb9246a3d8b4757e8d3f7 | |||||
29e245eb2b260a0238fd010000ffff0300504b03041400060008000000210096b5ade296060000501b0000160000007468656d652f7468656d652f7468656d65 | |||||
312e786d6cec594f6fdb3614bf0fd87720746f6327761a07758ad8b19b2d4d1bc46e871e698996d850a240d2497d1bdae38001c3ba618715d86d87615b8116d8 | |||||
a5fb34d93a6c1dd0afb0475292c5585e9236d88aad3e2412f9e3fbff1e1fa9abd7eec70c1d1221294fda5efd72cd4324f1794093b0eddd1ef62fad79482a9c04 | |||||
98f184b4bd2991deb58df7dfbb8ad755446282607d22d771db8b944ad79796a40fc3585ee62949606ecc458c15bc8a702910f808e8c66c69b9565b5d8a314d3c | |||||
94e018c8de1a8fa94fd05093f43672e23d06af89927ac06762a049136785c10607758d9053d965021d62d6f6804fc08f86e4bef210c352c144dbab999fb7b471 | |||||
7509af678b985ab0b6b4ae6f7ed9ba6c4170b06c788a705430adf71bad2b5b057d03606a1ed7ebf5babd7a41cf00b0ef83a6569632cd467faddec9699640f671 | |||||
9e76b7d6ac355c7c89feca9cccad4ea7d36c65b258a206641f1b73f8b5da6a6373d9c11b90c537e7f08dce66b7bbeae00dc8e257e7f0fd2badd5868b37a088d1 | |||||
e4600ead1ddaef67d40bc898b3ed4af81ac0d76a197c86826828a24bb318f3442d8ab518dfe3a20f000d6458d104a9694ac6d88728eee2782428d60cf03ac1a5 | |||||
193be4cbb921cd0b495fd054b5bd0f530c1931a3f7eaf9f7af9e3f45c70f9e1d3ff8e9f8e1c3e3073f5a42ceaa6d9c84e5552fbffdeccfc71fa33f9e7ef3f2d1 | |||||
17d57859c6fffac327bffcfc793510d26726ce8b2f9ffcf6ecc98baf3efdfdbb4715f04d814765f890c644a29be408edf3181433567125272371be15c308d3f2 | |||||
8acd249438c19a4b05fd9e8a1cf4cd296699771c393ac4b5e01d01e5a30a787d72cf1178108989a2159c77a2d801ee72ce3a5c545a6147f32a99793849c26ae6 | |||||
6252c6ed637c58c5bb8b13c7bfbd490a75330f4b47f16e441c31f7184e140e494214d273fc80900aedee52ead87597fa824b3e56e82e451d4c2b4d32a423279a | |||||
668bb6690c7e9956e90cfe766cb37b077538abd27a8b1cba48c80acc2a841f12e698f13a9e281c57911ce298950d7e03aba84ac8c154f8655c4f2af074481847 | |||||
bd804859b5e696007d4b4edfc150b12addbecba6b18b148a1e54d1bc81392f23b7f84137c2715a851dd0242a633f900710a218ed715505dfe56e86e877f0034e | |||||
16bafb0e258ebb4faf06b769e888340b103d3311da9750aa9d0a1cd3e4efca31a3508f6d0c5c5c398602f8e2ebc71591f5b616e24dd893aa3261fb44f95d843b | |||||
5974bb5c04f4edafb95b7892ec1108f3f98de75dc97d5772bdff7cc95d94cf672db4b3da0a6557f70db629362d72bcb0431e53c6066acac80d699a6409fb44d0 | |||||
8741bdce9c0e4971624a2378cceaba830b05366b90e0ea23aaa241845368b0eb9e2612ca8c742851ca251ceccc70256d8d87265dd96361531f186c3d9058edf2 | |||||
c00eafe8e1fc5c509031bb4d680e9f39a3154de0accc56ae644441edd76156d7429d995bdd88664a9dc3ad50197c38af1a0c16d684060441db02565e85f3b966 | |||||
0d0713cc48a0ed6ef7dedc2dc60b17e92219e180643ed27acffba86e9c94c78ab90980d8a9f0913ee49d62b512b79626fb06dccee2a432bbc60276b9f7dec44b | |||||
7904cfbca4f3f6443ab2a49c9c2c41476dafd55c6e7ac8c769db1bc399161ee314bc2e75cf8759081743be1236ec4f4d6693e5336fb672c5dc24a8c33585b5fb | |||||
9cc24e1d4885545b58463634cc5416022cd19cacfccb4d30eb45296023fd35a458598360f8d7a4003bbaae25e331f155d9d9a5116d3bfb9a95523e51440ca2e0 | |||||
088dd844ec6370bf0e55d027a012ae264c45d02f708fa6ad6da6dce29c255df9f6cae0ec38666984b372ab5334cf640b37795cc860de4ae2816e95b21be5ceaf | |||||
8a49f90b52a51cc6ff3355f47e0237052b81f6800fd7b802239daf6d8f0b1571a8426944fdbe80c6c1d40e8816b88b8569082ab84c36ff0539d4ff6dce591a26 | |||||
ade1c0a7f669880485fd484582903d284b26fa4e2156cff62e4b9265844c4495c495a9157b440e091bea1ab8aaf7760f4510eaa69a6465c0e04ec69ffb9e65d0 | |||||
28d44d4e39df9c1a52ecbd3607fee9cec7263328e5d661d3d0e4f62f44acd855ed7ab33cdf7bcb8ae889599bd5c8b3029895b6825696f6af29c239b75a5bb1e6 | |||||
345e6ee6c28117e73586c1a2214ae1be07e93fb0ff51e133fb65426fa843be0fb515c187064d0cc206a2fa926d3c902e907670048d931db4c1a44959d366ad93 | |||||
b65abe595f70a75bf03d616c2dd959fc7d4e6317cd99cbcec9c58b34766661c7d6766ca1a9c1b327531486c6f941c638c67cd22a7f75e2a37be0e82db8df9f30 | |||||
254d30c1372581a1f51c983c80e4b71ccdd28dbf000000ffff0300504b0304140006000800000021000dd1909fb60000001b010000270000007468656d652f74 | |||||
68656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73848f4d0ac2301484f78277086f6fd3ba109126dd88d0add40384e4350d363f24 | |||||
51eced0dae2c082e8761be9969bb979dc9136332de3168aa1a083ae995719ac16db8ec8e4052164e89d93b64b060828e6f37ed1567914b284d262452282e3198 | |||||
720e274a939cd08a54f980ae38a38f56e422a3a641c8bbd048f7757da0f19b017cc524bd62107bd5001996509affb3fd381a89672f1f165dfe514173d9850528 | |||||
a2c6cce0239baa4c04ca5bbabac4df000000ffff0300504b01022d0014000600080000002100828abc13fa0000001c0200001300000000000000000000000000 | |||||
000000005b436f6e74656e745f54797065735d2e786d6c504b01022d0014000600080000002100a5d6a7e7c0000000360100000b000000000000000000000000 | |||||
002b0100005f72656c732f2e72656c73504b01022d00140006000800000021006b799616830000008a0000001c00000000000000000000000000140200007468 | |||||
656d652f7468656d652f7468656d654d616e616765722e786d6c504b01022d001400060008000000210096b5ade296060000501b000016000000000000000000 | |||||
00000000d10200007468656d652f7468656d652f7468656d65312e786d6c504b01022d00140006000800000021000dd1909fb60000001b010000270000000000 | |||||
00000000000000009b0900007468656d652f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73504b050600000000050005005d010000960a00000000} | |||||
{\*\colorschememapping 3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d3822207374616e64616c6f6e653d22796573223f3e0d0a3c613a636c724d | |||||
617020786d6c6e733a613d22687474703a2f2f736368656d61732e6f70656e786d6c666f726d6174732e6f72672f64726177696e676d6c2f323030362f6d6169 | |||||
6e22206267313d226c743122207478313d22646b3122206267323d226c743222207478323d22646b322220616363656e74313d22616363656e74312220616363 | |||||
656e74323d22616363656e74322220616363656e74333d22616363656e74332220616363656e74343d22616363656e74342220616363656e74353d22616363656e74352220616363656e74363d22616363656e74362220686c696e6b3d22686c696e6b2220666f6c486c696e6b3d22666f6c486c696e6b222f3e} | |||||
{\*\latentstyles\lsdstimax267\lsdlockeddef0\lsdsemihiddendef1\lsdunhideuseddef1\lsdqformatdef0\lsdprioritydef99{\lsdlockedexcept \lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority0 \lsdlocked0 Normal; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 1;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 2;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 3;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 4; | |||||
\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 5;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 6;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 7;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 8;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 9; | |||||
\lsdpriority39 \lsdlocked0 toc 1;\lsdpriority39 \lsdlocked0 toc 2;\lsdpriority39 \lsdlocked0 toc 3;\lsdpriority39 \lsdlocked0 toc 4;\lsdpriority39 \lsdlocked0 toc 5;\lsdpriority39 \lsdlocked0 toc 6;\lsdpriority39 \lsdlocked0 toc 7; | |||||
\lsdpriority39 \lsdlocked0 toc 8;\lsdpriority39 \lsdlocked0 toc 9;\lsdqformat1 \lsdpriority35 \lsdlocked0 caption;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority10 \lsdlocked0 Title;\lsdpriority1 \lsdlocked0 Default Paragraph Font; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority11 \lsdlocked0 Subtitle;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority22 \lsdlocked0 Strong;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority20 \lsdlocked0 Emphasis; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority59 \lsdlocked0 Table Grid;\lsdunhideused0 \lsdlocked0 Placeholder Text;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority1 \lsdlocked0 No Spacing; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 1; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 1; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 1;\lsdunhideused0 \lsdlocked0 Revision; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority34 \lsdlocked0 List Paragraph;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority29 \lsdlocked0 Quote;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority30 \lsdlocked0 Intense Quote; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 1; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 1; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 2; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 2; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 2; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 2; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 2; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 3; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 3; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 3; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 3; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 3; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 4; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 4; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 4; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 4; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 5; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 5; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 5; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 5; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 5; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 6; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 6; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 6; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 6; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 6; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority19 \lsdlocked0 Subtle Emphasis;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority21 \lsdlocked0 Intense Emphasis; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority31 \lsdlocked0 Subtle Reference;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority32 \lsdlocked0 Intense Reference; | |||||
\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority33 \lsdlocked0 Book Title;\lsdpriority37 \lsdlocked0 Bibliography;\lsdqformat1 \lsdpriority39 \lsdlocked0 TOC Heading;}}{\*\datastore 010500000200000018000000 | |||||
4d73786d6c322e534158584d4c5265616465722e352e3000000000000000000000060000 | |||||
d0cf11e0a1b11ae1000000000000000000000000000000003e000300feff090006000000000000000000000001000000010000000000000000100000feffffff00000000feffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff | |||||
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff | |||||
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff | |||||
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff | |||||
fffffffffffffffffdfffffffeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff | |||||
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff | |||||
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff | |||||
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff | |||||
ffffffffffffffffffffffffffffffff52006f006f007400200045006e00740072007900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000500ffffffffffffffffffffffffec69d9888b8b3d4c859eaf6cd158be0f00000000000000000000000070ab | |||||
bb32a0c6ce01feffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000 | |||||
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000 | |||||
000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000 | |||||
0000000000000000000000000000000000000000000000000105000000000000}} |
@@ -0,0 +1,203 @@ | |||||
<?xml version="1.0" encoding="utf-8"?> | |||||
<BindingInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Assembly="Microsoft.BizTalk.Deployment, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Version="3.5.1.0" BindingStatus="NoBindings" BoundEndpoints="0" TotalEndpoints="0"> | |||||
<Timestamp>2024-12-05T12:35:25.6975206+01:00</Timestamp> | |||||
<ModuleRefCollection /> | |||||
<SendPortCollection> | |||||
<SendPort Name="Thomas.Send" IsStatic="true" IsTwoWay="false" BindingOption="0"> | |||||
<Description xsi:nil="true" /> | |||||
<TransmitPipeline Name="TM.Shared.Pipelines.TM_Shared_Pipelines_XMLTransmit" FullyQualifiedName="TM.Shared.Pipelines.TM_Shared_Pipelines_XMLTransmit, TM.Shared.Pipelines, Version=3.0.1.0, Culture=neutral, PublicKeyToken=224c7e2c8b50f9df" Type="2" TrackingOption="None" Description="" /> | |||||
<SendPipelineData><Root xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |||||
<Stages> | |||||
<Stage CategoryId="9d0e4101-4cce-4536-83fa-4a5040674ad6"> | |||||
<Components> | |||||
<Component Name="PipelineComponents.TrackingComponent"> | |||||
<Properties /> | |||||
</Component> | |||||
</Components> | |||||
</Stage> | |||||
<Stage CategoryId="9d0e4107-4cce-4536-83fa-4a5040674ad6"> | |||||
<Components> | |||||
<Component Name="Microsoft.BizTalk.Component.XmlAsmComp"> | |||||
<Properties /> | |||||
</Component> | |||||
</Components> | |||||
</Stage> | |||||
<Stage CategoryId="9d0e4108-4cce-4536-83fa-4a5040674ad6"> | |||||
<Components> | |||||
<Component Name="PipelineComponents.TrackingComponent"> | |||||
<Properties /> | |||||
</Component> | |||||
<Component Name="PipelineComponents.ReplaceComponent"> | |||||
<Properties /> | |||||
</Component> | |||||
<Component Name="PipelineComponents.NamespaceComponent"> | |||||
<Properties /> | |||||
</Component> | |||||
<Component Name="PipelineComponents.TrackingComponent"> | |||||
<Properties> | |||||
<ComponentEnabled vt="8">TRUE</ComponentEnabled> | |||||
<PipelineDirection vt="8">OUTGOING</PipelineDirection> | |||||
<PipelinePhase vt="8">OUT</PipelinePhase> | |||||
<PipelineSolution vt="8">HelloBizTalk2013World</PipelineSolution> | |||||
<SharedMessageType vt="8">ORDERSTATUS</SharedMessageType> | |||||
</Properties> | |||||
</Component> | |||||
<Component Name="PipelineComponents.FilenameComponent"> | |||||
<Properties /> | |||||
</Component> | |||||
<Component Name="PipelineComponents.EncodingComponent"> | |||||
<Properties /> | |||||
</Component> | |||||
<Component Name="PipelineComponents.TrackingIdEncodingComponent"> | |||||
<Properties /> | |||||
</Component> | |||||
</Components> | |||||
</Stage> | |||||
</Stages> | |||||
</Root></SendPipelineData> | |||||
<PrimaryTransport> | |||||
<Address>D:\ESB\Dummy\Thomas\Out\%MessageID%.xml</Address> | |||||
<TransportType Name="FILE" Capabilities="11" ConfigurationClsid="5e49e3a6-b4fc-4077-b44c-22f34a242fdb" /> | |||||
<TransportTypeData><CustomProps> | |||||
<UseTempFileOnWrite vt="11">0</UseTempFileOnWrite> | |||||
<AllowCacheOnWrite vt="11">0</AllowCacheOnWrite> | |||||
<CopyMode vt="19">1</CopyMode> | |||||
<FileName vt="8">%MessageID%.xml</FileName> | |||||
</CustomProps></TransportTypeData> | |||||
<RetryCount>3</RetryCount> | |||||
<RetryInterval>5</RetryInterval> | |||||
<ServiceWindowEnabled>false</ServiceWindowEnabled> | |||||
<FromTime>2024-12-04T23:00:00</FromTime> | |||||
<ToTime>2024-12-05T22:59:59</ToTime> | |||||
<Primary>true</Primary> | |||||
<OrderedDelivery>false</OrderedDelivery> | |||||
<DeliveryNotification>1</DeliveryNotification> | |||||
<SendHandler Name="SendHost" HostTrusted="false"> | |||||
<TransportType Name="FILE" Capabilities="11" ConfigurationClsid="5e49e3a6-b4fc-4077-b44c-22f34a242fdb" /> | |||||
</SendHandler> | |||||
</PrimaryTransport> | |||||
<SecondaryTransport> | |||||
<Address /> | |||||
<RetryCount>3</RetryCount> | |||||
<RetryInterval>5</RetryInterval> | |||||
<ServiceWindowEnabled>false</ServiceWindowEnabled> | |||||
<FromTime>2024-12-04T23:00:00</FromTime> | |||||
<ToTime>2024-12-05T22:59:59</ToTime> | |||||
<Primary>false</Primary> | |||||
<OrderedDelivery>false</OrderedDelivery> | |||||
<DeliveryNotification>1</DeliveryNotification> | |||||
<SendHandler xsi:nil="true" /> | |||||
</SecondaryTransport> | |||||
<ReceivePipelineData xsi:nil="true" /> | |||||
<Tracking>0</Tracking> | |||||
<Filter><Filter xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | |||||
<Group> | |||||
<Statement Property="BTS.ReceivePortName" Operator="0" Value="Thomas.Receive" /> | |||||
</Group> | |||||
</Filter></Filter> | |||||
<Transforms /> | |||||
<OrderedDelivery>false</OrderedDelivery> | |||||
<Priority>5</Priority> | |||||
<StopSendingOnFailure>false</StopSendingOnFailure> | |||||
<RouteFailedMessage>false</RouteFailedMessage> | |||||
<ApplicationName>KLG.Extern</ApplicationName> | |||||
</SendPort> | |||||
</SendPortCollection> | |||||
<DistributionListCollection /> | |||||
<ReceivePortCollection> | |||||
<ReceivePort Name="Thomas.Receive" IsTwoWay="false" BindingOption="0"> | |||||
<Description xsi:nil="true" /> | |||||
<ReceiveLocations> | |||||
<ReceiveLocation Name="Receive Location1"> | |||||
<Description xsi:nil="true" /> | |||||
<Address>D:\ESB\Dummy\Thomas\In\*.xml</Address> | |||||
<PublicAddress /> | |||||
<Primary>true</Primary> | |||||
<ReceiveLocationServiceWindowEnabled>false</ReceiveLocationServiceWindowEnabled> | |||||
<ReceiveLocationFromTime>2024-12-04T23:00:00</ReceiveLocationFromTime> | |||||
<ReceiveLocationToTime>2024-12-05T22:59:59</ReceiveLocationToTime> | |||||
<ReceiveLocationStartDateEnabled>false</ReceiveLocationStartDateEnabled> | |||||
<ReceiveLocationStartDate>2024-12-05T00:00:00</ReceiveLocationStartDate> | |||||
<ReceiveLocationEndDateEnabled>false</ReceiveLocationEndDateEnabled> | |||||
<ReceiveLocationEndDate>2024-12-06T00:00:00</ReceiveLocationEndDate> | |||||
<!--<ReceiveLocationTransportType Name="FILE" Capabilities="11" ConfigurationClsid="f75aeff5-ebc7-4e7c-a753-fdd68ab45c95"/>--> | |||||
<ReceiveLocationTransportType Name="FILE" Capabilities="11" ConfigurationClsid="5e49e3a6-b4fc-4077-b44c-22f34a242fdb" /> | |||||
<ReceiveLocationTransportTypeData><CustomProps> | |||||
<RenameReceivedFiles vt="11">0</RenameReceivedFiles> | |||||
<RemoveReceivedFileDelay vt="19">10</RemoveReceivedFileDelay> | |||||
<RemoveReceivedFileMaxInterval vt="19">300000</RemoveReceivedFileMaxInterval> | |||||
<FileMask vt="8">*.xml</FileMask> | |||||
<FileNetFailRetryInt vt="19">5</FileNetFailRetryInt> | |||||
<RemoveReceivedFileRetryCount vt="19">5</RemoveReceivedFileRetryCount> | |||||
<BatchSizeInBytes vt="19">102400</BatchSizeInBytes> | |||||
<PollingInterval vt="19">60000</PollingInterval> | |||||
<FileNetFailRetryCount vt="19">5</FileNetFailRetryCount> | |||||
<BatchSize vt="19">20</BatchSize> | |||||
</CustomProps></ReceiveLocationTransportTypeData> | |||||
<ReceivePipeline Name="TM.Shared.Pipelines.TM_Shared_Pipelines_XMLReceive" FullyQualifiedName="TM.Shared.Pipelines.TM_Shared_Pipelines_XMLReceive, TM.Shared.Pipelines, Version=3.0.1.0, Culture=neutral, PublicKeyToken=224c7e2c8b50f9df" Type="1" TrackingOption="None" Description="" /> | |||||
<ReceivePipelineData><Root xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |||||
<Stages> | |||||
<Stage CategoryId="9d0e4103-4cce-4536-83fa-4a5040674ad6"> | |||||
<Components> | |||||
<Component Name="PipelineComponents.TrackingIdDecodingComponent"> | |||||
<Properties /> | |||||
</Component> | |||||
<Component Name="PipelineComponents.EncodingComponent"> | |||||
<Properties /> | |||||
</Component> | |||||
<Component Name="PipelineComponents.TrackingComponent"> | |||||
<Properties> | |||||
<ComponentEnabled vt="8">TRUE</ComponentEnabled> | |||||
<PipelineDirection vt="8">OUTGOING</PipelineDirection> | |||||
<PipelinePhase vt="8">IN</PipelinePhase> | |||||
<PipelineSolution vt="8">HelloBizTalk2013World</PipelineSolution> | |||||
</Properties> | |||||
</Component> | |||||
<Component Name="PipelineComponents.ReplaceComponent"> | |||||
<Properties /> | |||||
</Component> | |||||
<Component Name="PipelineComponents.NamespaceComponent"> | |||||
<Properties /> | |||||
</Component> | |||||
<Component Name="PipelineComponents.TrackingComponent"> | |||||
<Properties /> | |||||
</Component> | |||||
</Components> | |||||
</Stage> | |||||
<Stage CategoryId="9d0e4105-4cce-4536-83fa-4a5040674ad6"> | |||||
<Components> | |||||
<Component Name="TM.Shared.PipelineComponents.KLGXMLDisassembler"> | |||||
<Properties /> | |||||
</Component> | |||||
</Components> | |||||
</Stage> | |||||
<Stage CategoryId="9d0e410d-4cce-4536-83fa-4a5040674ad6"> | |||||
<Components> | |||||
<Component Name="PipelineComponents.TrackingComponent"> | |||||
<Properties /> | |||||
</Component> | |||||
</Components> | |||||
</Stage> | |||||
</Stages> | |||||
</Root></ReceivePipelineData> | |||||
<SendPipeline xsi:nil="true" /> | |||||
<SendPipelineData xsi:nil="true" /> | |||||
<Enable>true</Enable> | |||||
<ReceiveHandler Name="ReceiveHost" HostTrusted="false"> | |||||
<TransportType Name="FILE" Capabilities="11" ConfigurationClsid="f75aeff5-ebc7-4e7c-a753-fdd68ab45c95" /> | |||||
<!--<TransportType Name="FILE" Capabilities="11" ConfigurationClsid="5e49e3a6-b4fc-4077-b44c-22f34a242fdb"/>--> | |||||
</ReceiveHandler> | |||||
</ReceiveLocation> | |||||
</ReceiveLocations> | |||||
<SendPipelineData xsi:nil="true" /> | |||||
<Authentication>0</Authentication> | |||||
<Tracking>0</Tracking> | |||||
<Transforms> | |||||
<Transform FullName="TM.HelloBizTalk2013World.Transforms.Shared_OrderStatus_to_ShipmentStatus" AssemblyQualifiedName="TM.HelloBizTalk2013World.Transforms.Shared_OrderStatus_to_ShipmentStatus,TM.HelloBizTalk2013World.Transforms, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b209f95f2d194d23" /> | |||||
</Transforms> | |||||
<RouteFailedMessage>false</RouteFailedMessage> | |||||
<ApplicationName>KLG.Extern</ApplicationName> | |||||
</ReceivePort> | |||||
</ReceivePortCollection> | |||||
<PartyCollection xsi:nil="true" /> | |||||
</BindingInfo> |
@@ -0,0 +1,213 @@ | |||||
<?xml version="1.0" encoding="utf-8"?> | |||||
<BindingInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Assembly="Microsoft.BizTalk.Deployment, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Version="3.5.1.0" BindingStatus="NoBindings" BoundEndpoints="0" TotalEndpoints="0"> | |||||
<Timestamp>2024-12-05T12:35:25.6975206+01:00</Timestamp> | |||||
<ModuleRefCollection /> | |||||
<SendPortCollection> | |||||
<SendPort Name="Thomas.Send" IsStatic="true" IsTwoWay="false" BindingOption="0"> | |||||
<Description xsi:nil="true"/> | |||||
<TransmitPipeline Name="TM.Shared.Pipelines.TM_Shared_Pipelines_XMLTransmit" FullyQualifiedName="TM.Shared.Pipelines.TM_Shared_Pipelines_XMLTransmit, TM.Shared.Pipelines, Version=${TM.Shared.Pipelines: Version2016}, Culture=neutral, PublicKeyToken=224c7e2c8b50f9df" Type="2" TrackingOption="None" Description=""/> | |||||
<SendPipelineData> | |||||
<Root xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |||||
<Stages> | |||||
<Stage CategoryId="9d0e4101-4cce-4536-83fa-4a5040674ad6"> | |||||
<Components> | |||||
<Component Name="PipelineComponents.TrackingComponent"> | |||||
<Properties/> | |||||
</Component> | |||||
</Components> | |||||
</Stage> | |||||
<Stage CategoryId="9d0e4107-4cce-4536-83fa-4a5040674ad6"> | |||||
<Components> | |||||
<Component Name="Microsoft.BizTalk.Component.XmlAsmComp"> | |||||
<Properties/> | |||||
</Component> | |||||
</Components> | |||||
</Stage> | |||||
<Stage CategoryId="9d0e4108-4cce-4536-83fa-4a5040674ad6"> | |||||
<Components> | |||||
<Component Name="PipelineComponents.TrackingComponent"> | |||||
<Properties/> | |||||
</Component> | |||||
<Component Name="PipelineComponents.ReplaceComponent"> | |||||
<Properties/> | |||||
</Component> | |||||
<Component Name="PipelineComponents.NamespaceComponent"> | |||||
<Properties/> | |||||
</Component> | |||||
<Component Name="PipelineComponents.TrackingComponent"> | |||||
<Properties> | |||||
<ComponentEnabled vt="8">TRUE</ComponentEnabled> | |||||
<PipelineDirection vt="8">OUTGOING</PipelineDirection> | |||||
<PipelinePhase vt="8">OUT</PipelinePhase> | |||||
<PipelineSolution vt="8">HelloBizTalk2013World</PipelineSolution> | |||||
<SharedMessageType vt="8">ORDERSTATUS</SharedMessageType> | |||||
</Properties> | |||||
</Component> | |||||
<Component Name="PipelineComponents.FilenameComponent"> | |||||
<Properties/> | |||||
</Component> | |||||
<Component Name="PipelineComponents.EncodingComponent"> | |||||
<Properties/> | |||||
</Component> | |||||
<Component Name="PipelineComponents.TrackingIdEncodingComponent"> | |||||
<Properties/> | |||||
</Component> | |||||
</Components> | |||||
</Stage> | |||||
</Stages> | |||||
</Root> | |||||
</SendPipelineData> | |||||
<PrimaryTransport> | |||||
<Address>D:\ESB\Dummy\Thomas\Out\%MessageID%.xml</Address> | |||||
<TransportType Name="FILE" Capabilities="11" ConfigurationClsid="5e49e3a6-b4fc-4077-b44c-22f34a242fdb"/> | |||||
<TransportTypeData> | |||||
<CustomProps> | |||||
<UseTempFileOnWrite vt="11">0</UseTempFileOnWrite> | |||||
<AllowCacheOnWrite vt="11">0</AllowCacheOnWrite> | |||||
<CopyMode vt="19">1</CopyMode> | |||||
<FileName vt="8">%MessageID%.xml</FileName> | |||||
</CustomProps> | |||||
</TransportTypeData> | |||||
<RetryCount>3</RetryCount> | |||||
<RetryInterval>5</RetryInterval> | |||||
<ServiceWindowEnabled>false</ServiceWindowEnabled> | |||||
<FromTime>2024-12-04T23:00:00</FromTime> | |||||
<ToTime>2024-12-05T22:59:59</ToTime> | |||||
<Primary>true</Primary> | |||||
<OrderedDelivery>false</OrderedDelivery> | |||||
<DeliveryNotification>1</DeliveryNotification> | |||||
<SendHandler Name="SendHost" HostTrusted="false"> | |||||
<TransportType Name="FILE" Capabilities="11" ConfigurationClsid="5e49e3a6-b4fc-4077-b44c-22f34a242fdb"/> | |||||
</SendHandler> | |||||
</PrimaryTransport> | |||||
<SecondaryTransport> | |||||
<Address/> | |||||
<RetryCount>3</RetryCount> | |||||
<RetryInterval>5</RetryInterval> | |||||
<ServiceWindowEnabled>false</ServiceWindowEnabled> | |||||
<FromTime>2024-12-04T23:00:00</FromTime> | |||||
<ToTime>2024-12-05T22:59:59</ToTime> | |||||
<Primary>false</Primary> | |||||
<OrderedDelivery>false</OrderedDelivery> | |||||
<DeliveryNotification>1</DeliveryNotification> | |||||
<SendHandler xsi:nil="true"/> | |||||
</SecondaryTransport> | |||||
<ReceivePipelineData xsi:nil="true"/> | |||||
<Tracking>0</Tracking> | |||||
<Filter> | |||||
<Filter xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | |||||
<Group> | |||||
<Statement Property="BTS.ReceivePortName" Operator="0" Value="Thomas.Receive"/> | |||||
</Group> | |||||
</Filter> | |||||
</Filter> | |||||
<Transforms/> | |||||
<OrderedDelivery>false</OrderedDelivery> | |||||
<Priority>5</Priority> | |||||
<StopSendingOnFailure>false</StopSendingOnFailure> | |||||
<RouteFailedMessage>false</RouteFailedMessage> | |||||
<ApplicationName>HelloBizTalk2013World</ApplicationName> | |||||
</SendPort> | |||||
</SendPortCollection> | |||||
<DistributionListCollection/> | |||||
<ReceivePortCollection> | |||||
<ReceivePort Name="Thomas.Receive" IsTwoWay="false" BindingOption="0"> | |||||
<Description xsi:nil="true"/> | |||||
<ReceiveLocations> | |||||
<ReceiveLocation Name="Receive Location1"> | |||||
<Description xsi:nil="true"/> | |||||
<Address>D:\ESB\Dummy\Thomas\In\*.xml</Address> | |||||
<PublicAddress/> | |||||
<Primary>true</Primary> | |||||
<ReceiveLocationServiceWindowEnabled>false</ReceiveLocationServiceWindowEnabled> | |||||
<ReceiveLocationFromTime>2024-12-04T23:00:00</ReceiveLocationFromTime> | |||||
<ReceiveLocationToTime>2024-12-05T22:59:59</ReceiveLocationToTime> | |||||
<ReceiveLocationStartDateEnabled>false</ReceiveLocationStartDateEnabled> | |||||
<ReceiveLocationStartDate>2024-12-05T00:00:00</ReceiveLocationStartDate> | |||||
<ReceiveLocationEndDateEnabled>false</ReceiveLocationEndDateEnabled> | |||||
<ReceiveLocationEndDate>2024-12-06T00:00:00</ReceiveLocationEndDate> | |||||
<!--<ReceiveLocationTransportType Name="FILE" Capabilities="11" ConfigurationClsid="f75aeff5-ebc7-4e7c-a753-fdd68ab45c95"/>--> | |||||
<ReceiveLocationTransportType Name="FILE" Capabilities="11" ConfigurationClsid="5e49e3a6-b4fc-4077-b44c-22f34a242fdb"/> | |||||
<ReceiveLocationTransportTypeData> | |||||
<CustomProps> | |||||
<RenameReceivedFiles vt="11">0</RenameReceivedFiles> | |||||
<RemoveReceivedFileDelay vt="19">10</RemoveReceivedFileDelay> | |||||
<RemoveReceivedFileMaxInterval vt="19">300000</RemoveReceivedFileMaxInterval> | |||||
<FileMask vt="8">*.xml</FileMask> | |||||
<FileNetFailRetryInt vt="19">5</FileNetFailRetryInt> | |||||
<RemoveReceivedFileRetryCount vt="19">5</RemoveReceivedFileRetryCount> | |||||
<BatchSizeInBytes vt="19">102400</BatchSizeInBytes> | |||||
<PollingInterval vt="19">60000</PollingInterval> | |||||
<FileNetFailRetryCount vt="19">5</FileNetFailRetryCount> | |||||
<BatchSize vt="19">20</BatchSize> | |||||
</CustomProps> | |||||
</ReceiveLocationTransportTypeData> | |||||
<ReceivePipeline Name="TM.Shared.Pipelines.TM_Shared_Pipelines_XMLReceive" FullyQualifiedName="TM.Shared.Pipelines.TM_Shared_Pipelines_XMLReceive, TM.Shared.Pipelines, Version=${TM.Shared.Pipelines: Version2016}, Culture=neutral, PublicKeyToken=224c7e2c8b50f9df" Type="1" TrackingOption="None" Description=""/> | |||||
<ReceivePipelineData> | |||||
<Root xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |||||
<Stages> | |||||
<Stage CategoryId="9d0e4103-4cce-4536-83fa-4a5040674ad6"> | |||||
<Components> | |||||
<Component Name="PipelineComponents.TrackingIdDecodingComponent"> | |||||
<Properties/> | |||||
</Component> | |||||
<Component Name="PipelineComponents.EncodingComponent"> | |||||
<Properties/> | |||||
</Component> | |||||
<Component Name="PipelineComponents.TrackingComponent"> | |||||
<Properties> | |||||
<ComponentEnabled vt="8">TRUE</ComponentEnabled> | |||||
<PipelineDirection vt="8">OUTGOING</PipelineDirection> | |||||
<PipelinePhase vt="8">IN</PipelinePhase> | |||||
<PipelineSolution vt="8">HelloBizTalk2013World</PipelineSolution> | |||||
</Properties> | |||||
</Component> | |||||
<Component Name="PipelineComponents.ReplaceComponent"> | |||||
<Properties/> | |||||
</Component> | |||||
<Component Name="PipelineComponents.NamespaceComponent"> | |||||
<Properties/> | |||||
</Component> | |||||
<Component Name="PipelineComponents.TrackingComponent"> | |||||
<Properties/> | |||||
</Component> | |||||
</Components> | |||||
</Stage> | |||||
<Stage CategoryId="9d0e4105-4cce-4536-83fa-4a5040674ad6"> | |||||
<Components> | |||||
<Component Name="TM.Shared.PipelineComponents.KLGXMLDisassembler"> | |||||
<Properties/> | |||||
</Component> | |||||
</Components> | |||||
</Stage> | |||||
<Stage CategoryId="9d0e410d-4cce-4536-83fa-4a5040674ad6"> | |||||
<Components> | |||||
<Component Name="PipelineComponents.TrackingComponent"> | |||||
<Properties/> | |||||
</Component> | |||||
</Components> | |||||
</Stage> | |||||
</Stages> | |||||
</Root> | |||||
</ReceivePipelineData> | |||||
<SendPipeline xsi:nil="true"/> | |||||
<SendPipelineData xsi:nil="true"/> | |||||
<Enable>true</Enable> | |||||
<ReceiveHandler Name="ReceiveHost" HostTrusted="false"> | |||||
<TransportType Name="FILE" Capabilities="11" ConfigurationClsid="f75aeff5-ebc7-4e7c-a753-fdd68ab45c95"/> | |||||
<!--<TransportType Name="FILE" Capabilities="11" ConfigurationClsid="5e49e3a6-b4fc-4077-b44c-22f34a242fdb"/>--> | |||||
</ReceiveHandler> | |||||
</ReceiveLocation> | |||||
</ReceiveLocations> | |||||
<SendPipelineData xsi:nil="true"/> | |||||
<Authentication>0</Authentication> | |||||
<Tracking>0</Tracking> | |||||
<Transforms> | |||||
<Transform FullName="TM.HelloBizTalk2013World.Transforms.Shared_OrderStatus_to_ShipmentStatus" AssemblyQualifiedName="TM.HelloBizTalk2013World.Transforms.Shared_OrderStatus_to_ShipmentStatus,TM.HelloBizTalk2013World.Transforms, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b209f95f2d194d23"/> | |||||
</Transforms> | |||||
<RouteFailedMessage>false</RouteFailedMessage> | |||||
<ApplicationName>HelloBizTalk2013World</ApplicationName> | |||||
</ReceivePort> | |||||
</ReceivePortCollection> | |||||
<PartyCollection xsi:nil="true"/> | |||||
</BindingInfo> |
@@ -0,0 +1,166 @@ | |||||
<?xml version="1.0"?> | |||||
<?mso-application progid="Excel.Sheet"?> | |||||
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet" | |||||
xmlns:o="urn:schemas-microsoft-com:office:office" | |||||
xmlns:x="urn:schemas-microsoft-com:office:excel" | |||||
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" | |||||
xmlns:html="http://www.w3.org/TR/REC-html40"> | |||||
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office"> | |||||
<Created>2014-03-24T21:26:46Z</Created> | |||||
<Version>15.00</Version> | |||||
</DocumentProperties> | |||||
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office"> | |||||
<AllowPNG/> | |||||
<RemovePersonalInformation/> | |||||
</OfficeDocumentSettings> | |||||
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel"> | |||||
<WindowHeight>12435</WindowHeight> | |||||
<WindowWidth>28800</WindowWidth> | |||||
<WindowTopX>0</WindowTopX> | |||||
<WindowTopY>0</WindowTopY> | |||||
<ProtectStructure>False</ProtectStructure> | |||||
<ProtectWindows>False</ProtectWindows> | |||||
</ExcelWorkbook> | |||||
<Styles> | |||||
<Style ss:ID="Default" ss:Name="Normal"> | |||||
<Alignment ss:Vertical="Bottom"/> | |||||
<Borders/> | |||||
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Color="#000000"/> | |||||
<Interior/> | |||||
<NumberFormat/> | |||||
<Protection/> | |||||
</Style> | |||||
<Style ss:ID="s40" ss:Name="40% - Accent1"> | |||||
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Color="#000000"/> | |||||
<Interior ss:Color="#B8CCE4" ss:Pattern="Solid"/> | |||||
</Style> | |||||
<Style ss:ID="s62" ss:Name="40% - Accent1 Bold"> | |||||
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Color="#000000" ss:Bold="1"/> | |||||
<Interior ss:Color="#B8CCE4" ss:Pattern="Solid"/> | |||||
<NumberFormat/> | |||||
</Style> | |||||
<Style ss:ID="s63" ss:Name="Normal Bold"> | |||||
<Alignment ss:Vertical="Bottom"/> | |||||
<Borders/> | |||||
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Color="#000000" ss:Bold="1"/> | |||||
<Interior/> | |||||
<NumberFormat/> | |||||
<Protection/> | |||||
</Style> | |||||
<Style ss:ID="s67" ss:Parent="s62"> | |||||
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="16" ss:Color="#000000" | |||||
ss:Bold="1"/> | |||||
</Style> | |||||
</Styles> | |||||
<Worksheet ss:Name="Settings"> | |||||
<Table ss:ExpandedColumnCount="6" ss:ExpandedRowCount="12" x:FullColumns="1" | |||||
x:FullRows="1"> | |||||
<Column ss:StyleID="s63" ss:AutoFitWidth="0" ss:Width="161.25"/> | |||||
<Column ss:AutoFitWidth="0" ss:Width="161.25" ss:Span="2"/> | |||||
<Column ss:Index="5" ss:AutoFitWidth="0" ss:Width="184.5"/> | |||||
<Column ss:AutoFitWidth="0" ss:Width="185.25"/> | |||||
<Row ss:AutoFitHeight="0" ss:Height="21"> | |||||
<Cell ss:StyleID="s67"><Data ss:Type="String">Environment Settings</Data></Cell> | |||||
<Cell ss:StyleID="s62"/> | |||||
<Cell ss:StyleID="s62"/> | |||||
<Cell ss:StyleID="s62"/> | |||||
<Cell ss:StyleID="s62"/> | |||||
<Cell ss:StyleID="s62"/> | |||||
</Row> | |||||
<Row> | |||||
<Cell ss:StyleID="s62"><Data ss:Type="String">Environment Name:</Data></Cell> | |||||
<Cell ss:StyleID="s62"><Data ss:Type="String">Default Values</Data></Cell> | |||||
<Cell ss:StyleID="s62"><Data ss:Type="String">Local Development</Data></Cell> | |||||
<Cell ss:StyleID="s62"><Data ss:Type="String">Shared Development</Data></Cell> | |||||
<Cell ss:StyleID="s62"><Data ss:Type="String">Test</Data></Cell> | |||||
<Cell ss:StyleID="s62"><Data ss:Type="String">Production</Data></Cell> | |||||
</Row> | |||||
<Row> | |||||
<Cell ss:StyleID="s62"><Data ss:Type="String">Generate File?</Data></Cell> | |||||
<Cell ss:StyleID="s40"/> | |||||
<Cell ss:StyleID="s40"><Data ss:Type="String">Yes</Data></Cell> | |||||
<Cell ss:StyleID="s40"><Data ss:Type="String">Yes</Data></Cell> | |||||
<Cell ss:StyleID="s40"><Data ss:Type="String">Yes</Data></Cell> | |||||
<Cell ss:StyleID="s40"><Data ss:Type="String">Yes</Data></Cell> | |||||
</Row> | |||||
<Row> | |||||
<Cell ss:StyleID="s62"><Data ss:Type="String">Settings File Name:</Data></Cell> | |||||
<Cell ss:StyleID="s40"/> | |||||
<Cell ss:StyleID="s40"><Data ss:Type="String">Exported_LocalSettings.xml</Data></Cell> | |||||
<Cell ss:StyleID="s40"><Data ss:Type="String">Exported_DevSettings.xml</Data></Cell> | |||||
<Cell ss:StyleID="s40"><Data ss:Type="String">Exported_TestSettings.xml</Data></Cell> | |||||
<Cell ss:StyleID="s40"><Data ss:Type="String">Exported_ProdSettings.xml</Data></Cell> | |||||
</Row> | |||||
<Row> | |||||
<Cell ss:StyleID="s62"/> | |||||
<Cell ss:StyleID="s40"/> | |||||
<Cell ss:StyleID="s40"/> | |||||
<Cell ss:StyleID="s40"/> | |||||
<Cell ss:StyleID="s40"/> | |||||
<Cell ss:StyleID="s40"/> | |||||
</Row> | |||||
<Row> | |||||
<Cell ss:StyleID="s62"><Data ss:Type="String">Settings:</Data></Cell> | |||||
<Cell ss:StyleID="s40"/> | |||||
<Cell ss:StyleID="s40"/> | |||||
<Cell ss:StyleID="s40"/> | |||||
<Cell ss:StyleID="s40"/> | |||||
<Cell ss:StyleID="s40"/> | |||||
</Row> | |||||
<Row> | |||||
<Cell><Data ss:Type="String">SsoAppUserGroup</Data></Cell> | |||||
<Cell><Data ss:Type="String">BizTalk Application Users</Data></Cell> | |||||
</Row> | |||||
<Row> | |||||
<Cell><Data ss:Type="String">SsoAppAdminGroup</Data></Cell> | |||||
<Cell><Data ss:Type="String">BizTalk Server Administrators</Data></Cell> | |||||
</Row> | |||||
<Row> | |||||
<Cell><Data ss:Type="String">ESBLookupConnectionString</Data></Cell> | |||||
</Row> | |||||
<Row> | |||||
<Cell><Data ss:Type="String">ESBTrackingConnectionString</Data></Cell> | |||||
</Row> | |||||
<Row> | |||||
<Cell><Data ss:Type="String">B2BUsername</Data></Cell> | |||||
</Row> | |||||
<Row> | |||||
<Cell><Data ss:Type="String">B2BPassword</Data></Cell> | |||||
</Row> | |||||
</Table> | |||||
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel"> | |||||
<PageSetup> | |||||
<Layout x:Orientation="Landscape"/> | |||||
<Header x:Margin="0.3"/> | |||||
<Footer x:Margin="0.3"/> | |||||
<PageMargins x:Bottom="0.25" x:Left="0.25" x:Right="0.25" x:Top="0.25"/> | |||||
</PageSetup> | |||||
<FitToPage/> | |||||
<Print> | |||||
<ValidPrinterInfo/> | |||||
<Scale>81</Scale> | |||||
<HorizontalResolution>600</HorizontalResolution> | |||||
<VerticalResolution>600</VerticalResolution> | |||||
</Print> | |||||
<Zoom>90</Zoom> | |||||
<Selected/> | |||||
<FreezePanes/> | |||||
<FrozenNoSplit/> | |||||
<SplitHorizontal>6</SplitHorizontal> | |||||
<TopRowBottomPane>6</TopRowBottomPane> | |||||
<ActivePane>2</ActivePane> | |||||
<Panes> | |||||
<Pane> | |||||
<Number>3</Number> | |||||
</Pane> | |||||
<Pane> | |||||
<Number>2</Number> | |||||
<ActiveRow>13</ActiveRow> | |||||
<ActiveCol>1</ActiveCol> | |||||
</Pane> | |||||
</Panes> | |||||
<ProtectObjects>False</ProtectObjects> | |||||
<ProtectScenarios>False</ProtectScenarios> | |||||
</WorksheetOptions> | |||||
</Worksheet> | |||||
</Workbook> |
@@ -0,0 +1,16 @@ | |||||
<?xml version="1.0" encoding="utf-8"?> | |||||
<!-- | |||||
Deployment Framework for BizTalk | |||||
Copyright (C) 2008-14 Thomas F. Abraham, 2004-08 Scott Colestock | |||||
From C:\Program Files (x86)\Deployment Framework for BizTalk 5.7\Developer\ProjectTemplate | |||||
--> | |||||
<SetEnvUIConfig xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | |||||
<DialogCaption>[PROJECTNAME]</DialogCaption> | |||||
<SetEnvUIConfigItem> | |||||
<PromptText>Helaas verplichte, onoverkomelijke prompt ... </PromptText> | |||||
<Caption>This is the FIRST server in the BizTalk Group</Caption> | |||||
<PromptValue>true</PromptValue> | |||||
<ValueType>Checkbox</ValueType> | |||||
<EnvironmentVarName>BT_DEPLOY_MGMT_DB</EnvironmentVarName> | |||||
</SetEnvUIConfigItem> | |||||
</SetEnvUIConfig> |
@@ -0,0 +1,110 @@ | |||||
<?xml version="1.0" encoding="utf-8"?> | |||||
<BindingInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Assembly="Microsoft.BizTalk.Deployment, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Version="3.5.1.0" BindingStatus="NoBindings" BoundEndpoints="0" TotalEndpoints="0"> | |||||
<Timestamp>2024-12-09T14:47:32.3173255+01:00</Timestamp> | |||||
<ModuleRefCollection> | |||||
<ModuleRef Name="[Application:HelloBizTalk2013World]" Version="" Culture="" PublicKeyToken="" FullName="[Application:HelloBizTalk2013World], Version=, Culture=, PublicKeyToken="> | |||||
<Services /> | |||||
<TrackedSchemas> | |||||
<Schema FullName="TM.HelloBizTalk2013World.Schemas.ShipmentStatusSchema_TEST" RootName="ShipmentStatus" AssemblyQualifiedName="TM.HelloBizTalk2013World.Schemas.ShipmentStatusSchema_TEST,TM.HelloBizTalk2013World.Schemas, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b209f95f2d194d23" AlwaysTrackAllProperties="false" Description=""> | |||||
<TrackedPropertyNames /> | |||||
</Schema> | |||||
</TrackedSchemas> | |||||
</ModuleRef> | |||||
<ModuleRef Name="TM.HelloBizTalk2013World.Schemas" Version="1.0.0.0" Culture="neutral" PublicKeyToken="b209f95f2d194d23" FullName="TM.HelloBizTalk2013World.Schemas, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b209f95f2d194d23"> | |||||
<Services /> | |||||
<TrackedSchemas /> | |||||
</ModuleRef> | |||||
<ModuleRef Name="TM.HelloBizTalk2013World.Transforms" Version="1.0.0.0" Culture="neutral" PublicKeyToken="b209f95f2d194d23" FullName="TM.HelloBizTalk2013World.Transforms, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b209f95f2d194d23"> | |||||
<Services /> | |||||
<TrackedSchemas /> | |||||
</ModuleRef> | |||||
</ModuleRefCollection> | |||||
<SendPortCollection> | |||||
<SendPort Name="Thomas.Send" IsStatic="true" IsTwoWay="false" BindingOption="0"> | |||||
<Description xsi:nil="true" /> | |||||
<TransmitPipeline Name="TM.Shared.Pipelines.TM_Shared_Pipelines_XMLTransmit" FullyQualifiedName="TM.Shared.Pipelines.TM_Shared_Pipelines_XMLTransmit, TM.Shared.Pipelines, Version=2.0.1.0, Culture=neutral, PublicKeyToken=224c7e2c8b50f9df" Type="2" TrackingOption="ServiceStartEnd MessageSendReceive PipelineEvents" Description="" /> | |||||
<SendPipelineData><Root xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><Stages><Stage CategoryId="9d0e4101-4cce-4536-83fa-4a5040674ad6"><Components><Component Name="PipelineComponents.TrackingComponent"><Properties><Encoding vt="8">TRUE</Encoding><Original vt="8">TRUE</Original><PipelineDirection vt="8">OUTGOING</PipelineDirection><PipelinePhase vt="8">IN</PipelinePhase><PipelineSolution vt="8">HelloBizTalk2013World</PipelineSolution><SharedMessageType vt="8">ORDERSTATUS</SharedMessageType></Properties></Component></Components></Stage><Stage CategoryId="9d0e4107-4cce-4536-83fa-4a5040674ad6"><Components><Component Name="Microsoft.BizTalk.Component.XmlAsmComp"><Properties /></Component></Components></Stage><Stage CategoryId="9d0e4108-4cce-4536-83fa-4a5040674ad6"><Components><Component Name="PipelineComponents.TrackingComponent"><Properties /></Component><Component Name="PipelineComponents.ReplaceComponent"><Properties /></Component><Component Name="PipelineComponents.NamespaceComponent"><Properties /></Component><Component Name="PipelineComponents.TrackingComponent"><Properties><ComponentEnabled vt="8">TRUE</ComponentEnabled><PipelineDirection vt="8">OUTGOING</PipelineDirection><PipelinePhase vt="8">OUT</PipelinePhase><PipelineSolution vt="8">HelloBizTalk2013World</PipelineSolution><SharedMessageType vt="8">ORDERSTATUS</SharedMessageType></Properties></Component><Component Name="PipelineComponents.FilenameComponent"><Properties /></Component><Component Name="PipelineComponents.EncodingComponent"><Properties /></Component><Component Name="PipelineComponents.TrackingIdEncodingComponent"><Properties /></Component></Components></Stage></Stages></Root></SendPipelineData> | |||||
<PrimaryTransport> | |||||
<Address>D:\ESB\Dummy\Thomas\Out\%MessageID%.xml</Address> | |||||
<TransportType Name="FILE" Capabilities="11" ConfigurationClsid="5e49e3a6-b4fc-4077-b44c-22f34a242fdb" /> | |||||
<TransportTypeData><CustomProps><UseTempFileOnWrite vt="11">0</UseTempFileOnWrite><AllowCacheOnWrite vt="11">0</AllowCacheOnWrite><CopyMode vt="19">1</CopyMode><FileName vt="8">%MessageID%.xml</FileName></CustomProps></TransportTypeData> | |||||
<RetryCount>3</RetryCount> | |||||
<RetryInterval>5</RetryInterval> | |||||
<ServiceWindowEnabled>false</ServiceWindowEnabled> | |||||
<FromTime>2000-01-01T23:00:00</FromTime> | |||||
<ToTime>2000-01-01T22:59:59</ToTime> | |||||
<Primary>true</Primary> | |||||
<OrderedDelivery>false</OrderedDelivery> | |||||
<DeliveryNotification>1</DeliveryNotification> | |||||
<SendHandler Name="SendHost" HostTrusted="false"> | |||||
<TransportType Name="FILE" Capabilities="11" ConfigurationClsid="5e49e3a6-b4fc-4077-b44c-22f34a242fdb" /> | |||||
</SendHandler> | |||||
</PrimaryTransport> | |||||
<SecondaryTransport> | |||||
<Address /> | |||||
<RetryCount>3</RetryCount> | |||||
<RetryInterval>5</RetryInterval> | |||||
<ServiceWindowEnabled>false</ServiceWindowEnabled> | |||||
<FromTime>2000-01-01T23:00:00</FromTime> | |||||
<ToTime>2000-01-01T22:59:59</ToTime> | |||||
<Primary>false</Primary> | |||||
<OrderedDelivery>false</OrderedDelivery> | |||||
<DeliveryNotification>1</DeliveryNotification> | |||||
<SendHandler xsi:nil="true" /> | |||||
</SecondaryTransport> | |||||
<ReceivePipelineData xsi:nil="true" /> | |||||
<Tracking>0</Tracking> | |||||
<Filter><Filter xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | |||||
<Group> | |||||
<Statement Property="BTS.ReceivePortName" Operator="0" Value="Thomas.Receive" /> | |||||
</Group> | |||||
</Filter></Filter> | |||||
<Transforms /> | |||||
<OrderedDelivery>false</OrderedDelivery> | |||||
<Priority>5</Priority> | |||||
<StopSendingOnFailure>false</StopSendingOnFailure> | |||||
<RouteFailedMessage>false</RouteFailedMessage> | |||||
<ApplicationName>HelloBizTalk2013World</ApplicationName> | |||||
</SendPort> | |||||
</SendPortCollection> | |||||
<DistributionListCollection /> | |||||
<ReceivePortCollection> | |||||
<ReceivePort Name="Thomas.Receive" IsTwoWay="false" BindingOption="0"> | |||||
<Description xsi:nil="true" /> | |||||
<ReceiveLocations> | |||||
<ReceiveLocation Name="Thomas.Receive"> | |||||
<Description xsi:nil="true" /> | |||||
<Address>D:\ESB\Dummy\Thomas\In\*.xml</Address> | |||||
<PublicAddress /> | |||||
<Primary>true</Primary> | |||||
<ReceiveLocationServiceWindowEnabled>false</ReceiveLocationServiceWindowEnabled> | |||||
<ReceiveLocationFromTime>2024-12-08T23:00:00</ReceiveLocationFromTime> | |||||
<ReceiveLocationToTime>2024-12-09T22:59:59</ReceiveLocationToTime> | |||||
<ReceiveLocationStartDateEnabled>false</ReceiveLocationStartDateEnabled> | |||||
<ReceiveLocationStartDate>2024-12-09T00:00:00</ReceiveLocationStartDate> | |||||
<ReceiveLocationEndDateEnabled>false</ReceiveLocationEndDateEnabled> | |||||
<ReceiveLocationEndDate>2024-12-10T00:00:00</ReceiveLocationEndDate> | |||||
<ReceiveLocationTransportType Name="FILE" Capabilities="11" ConfigurationClsid="5e49e3a6-b4fc-4077-b44c-22f34a242fdb" /> | |||||
<ReceiveLocationTransportTypeData><CustomProps><RenameReceivedFiles vt="11">0</RenameReceivedFiles><RemoveReceivedFileDelay vt="19">10</RemoveReceivedFileDelay><RemoveReceivedFileMaxInterval vt="19">300000</RemoveReceivedFileMaxInterval><FileMask vt="8">*.xml</FileMask><FileNetFailRetryInt vt="19">5</FileNetFailRetryInt><RemoveReceivedFileRetryCount vt="19">5</RemoveReceivedFileRetryCount><BatchSizeInBytes vt="19">102400</BatchSizeInBytes><PollingInterval vt="19">60000</PollingInterval><FileNetFailRetryCount vt="19">5</FileNetFailRetryCount><BatchSize vt="19">20</BatchSize></CustomProps></ReceiveLocationTransportTypeData> | |||||
<ReceivePipeline Name="TM.Shared.Pipelines.TM_Shared_Pipelines_XMLReceive" FullyQualifiedName="TM.Shared.Pipelines.TM_Shared_Pipelines_XMLReceive, TM.Shared.Pipelines, Version=2.0.1.0, Culture=neutral, PublicKeyToken=224c7e2c8b50f9df" Type="1" TrackingOption="ServiceStartEnd MessageSendReceive PipelineEvents" Description="" /> | |||||
<ReceivePipelineData><Root xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><Stages><Stage CategoryId="9d0e4103-4cce-4536-83fa-4a5040674ad6"><Components><Component Name="PipelineComponents.TrackingIdDecodingComponent"><Properties /></Component><Component Name="PipelineComponents.EncodingComponent"><Properties /></Component><Component Name="PipelineComponents.TrackingComponent"><Properties><ComponentEnabled vt="8">TRUE</ComponentEnabled><MessageInDatabase vt="8">TRUE</MessageInDatabase><PipelineDirection vt="8">OUTGOING</PipelineDirection><PipelinePhase vt="8">IN</PipelinePhase><PipelineSolution vt="8">HelloBizTalk2013World</PipelineSolution><SharedMessageType vt="8">ORDERSTATUS</SharedMessageType></Properties></Component><Component Name="PipelineComponents.ReplaceComponent"><Properties /></Component><Component Name="PipelineComponents.NamespaceComponent"><Properties /></Component><Component Name="PipelineComponents.TrackingComponent"><Properties><ComponentEnabled vt="8">TRUE</ComponentEnabled><MessageInDatabase vt="8">TRUE</MessageInDatabase><PipelineDirection vt="8">OUTGOING</PipelineDirection><PipelinePhase vt="8">INBETWEEN</PipelinePhase><PipelineSolution vt="8">HelloBizTalk2013World</PipelineSolution><SharedMessageType vt="8">ORDERSTATUS</SharedMessageType></Properties></Component></Components></Stage><Stage CategoryId="9d0e4105-4cce-4536-83fa-4a5040674ad6"><Components><Component Name="TM.Shared.PipelineComponents.KLGXMLDisassembler"><Properties /></Component></Components></Stage><Stage CategoryId="9d0e410d-4cce-4536-83fa-4a5040674ad6"><Components><Component Name="PipelineComponents.TrackingComponent"><Properties><ComponentEnabled vt="8">TRUE</ComponentEnabled><MessageInDatabase vt="8">TRUE</MessageInDatabase><PipelineDirection vt="8">OUTGOING</PipelineDirection><PipelinePhase vt="8">OUT</PipelinePhase><PipelineSolution vt="8">HelloBizTalk2013World</PipelineSolution><SharedMessageType vt="8">ORDERSTATUS</SharedMessageType></Properties></Component></Components></Stage></Stages></Root></ReceivePipelineData> | |||||
<SendPipeline xsi:nil="true" /> | |||||
<SendPipelineData xsi:nil="true" /> | |||||
<Enable>true</Enable> | |||||
<ReceiveHandler Name="BizTalkServerApplication" HostTrusted="false"> | |||||
<TransportType Name="FILE" Capabilities="11" ConfigurationClsid="5e49e3a6-b4fc-4077-b44c-22f34a242fdb" /> | |||||
</ReceiveHandler> | |||||
</ReceiveLocation> | |||||
</ReceiveLocations> | |||||
<SendPipelineData xsi:nil="true" /> | |||||
<Authentication>0</Authentication> | |||||
<Tracking>0</Tracking> | |||||
<Transforms> | |||||
<Transform FullName="TM.HelloBizTalk2013World.Transforms.Shared_OrderStatus_to_ShipmentStatus" AssemblyQualifiedName="TM.HelloBizTalk2013World.Transforms.Shared_OrderStatus_to_ShipmentStatus,TM.HelloBizTalk2013World.Transforms, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b209f95f2d194d23" /> | |||||
</Transforms> | |||||
<RouteFailedMessage>false</RouteFailedMessage> | |||||
<ApplicationName>HelloBizTalk2013World</ApplicationName> | |||||
</ReceivePort> | |||||
</ReceivePortCollection> | |||||
<PartyCollection xsi:nil="true" /> | |||||
</BindingInfo> |
@@ -0,0 +1,37 @@ | |||||
| |||||
Microsoft Visual Studio Solution File, Format Version 12.00 | |||||
# Visual Studio 14 | |||||
VisualStudioVersion = 14.0.25420.1 | |||||
MinimumVisualStudioVersion = 10.0.40219.1 | |||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Deployment", "Deployment", "{3A1E9291-2F5C-4D79-81ED-921D9AFC3FE8}" | |||||
ProjectSection(SolutionItems) = preProject | |||||
Deployment\Deployment.btdfproj = Deployment\Deployment.btdfproj | |||||
Deployment\Deployment2013.btdfproj = Deployment\Deployment2013.btdfproj | |||||
Deployment\PortBindingsMaster.xml = Deployment\PortBindingsMaster.xml | |||||
EndProjectSection | |||||
EndProject | |||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Schemas", "Schemas\Schemas.btproj", "{DD0CDDD5-0D81-4C81-9E3E-24FE00EE99D9}" | |||||
EndProject | |||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Transforms", "Transforms\Transforms.btproj", "{B0C9D0D2-75D8-4A96-8593-6E71CAACBB4D}" | |||||
EndProject | |||||
Global | |||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | |||||
Debug|Any CPU = Debug|Any CPU | |||||
Release|Any CPU = Release|Any CPU | |||||
EndGlobalSection | |||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | |||||
{DD0CDDD5-0D81-4C81-9E3E-24FE00EE99D9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | |||||
{DD0CDDD5-0D81-4C81-9E3E-24FE00EE99D9}.Debug|Any CPU.Build.0 = Debug|Any CPU | |||||
{DD0CDDD5-0D81-4C81-9E3E-24FE00EE99D9}.Release|Any CPU.ActiveCfg = Release|Any CPU | |||||
{DD0CDDD5-0D81-4C81-9E3E-24FE00EE99D9}.Release|Any CPU.Build.0 = Release|Any CPU | |||||
{DD0CDDD5-0D81-4C81-9E3E-24FE00EE99D9}.Release|Any CPU.Deploy.0 = Release|Any CPU | |||||
{B0C9D0D2-75D8-4A96-8593-6E71CAACBB4D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | |||||
{B0C9D0D2-75D8-4A96-8593-6E71CAACBB4D}.Debug|Any CPU.Build.0 = Debug|Any CPU | |||||
{B0C9D0D2-75D8-4A96-8593-6E71CAACBB4D}.Release|Any CPU.ActiveCfg = Release|Any CPU | |||||
{B0C9D0D2-75D8-4A96-8593-6E71CAACBB4D}.Release|Any CPU.Build.0 = Release|Any CPU | |||||
{B0C9D0D2-75D8-4A96-8593-6E71CAACBB4D}.Release|Any CPU.Deploy.0 = Release|Any CPU | |||||
EndGlobalSection | |||||
GlobalSection(SolutionProperties) = preSolution | |||||
HideSolutionNode = FALSE | |||||
EndGlobalSection | |||||
EndGlobal |
@@ -0,0 +1,66 @@ | |||||
<?xml version="1.0" encoding="utf-8"?> | |||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |||||
<PropertyGroup> | |||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | |||||
<SchemaVersion>2.0</SchemaVersion> | |||||
<ProjectGuid>{F4DA9BE5-3019-4536-AB7D-FE6599E8A541}</ProjectGuid> | |||||
<ProjectTypeGuids>{EF7E3281-CD33-11D4-8326-00C04FA0CE8D};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> | |||||
<OutputType>library</OutputType> | |||||
<GenericProcessing>true</GenericProcessing> | |||||
<RootNamespace>HelloBizTalk2013World</RootNamespace> | |||||
<AssemblyName>HelloBizTalk2013World</AssemblyName> | |||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion> | |||||
<BpelCompliance>True</BpelCompliance> | |||||
</PropertyGroup> | |||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |||||
<DebugSymbols>true</DebugSymbols> | |||||
<DebugType>full</DebugType> | |||||
<Optimize>false</Optimize> | |||||
<OutputPath>bin\Debug\</OutputPath> | |||||
<DefineConstants>DEBUG;TRACE</DefineConstants> | |||||
<ErrorReport>prompt</ErrorReport> | |||||
<WarningLevel>4</WarningLevel> | |||||
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> | |||||
</PropertyGroup> | |||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | |||||
<DebugType>pdbonly</DebugType> | |||||
<Optimize>true</Optimize> | |||||
<OutputPath>bin\Release\</OutputPath> | |||||
<DefineConstants>TRACE</DefineConstants> | |||||
<ErrorReport>prompt</ErrorReport> | |||||
<WarningLevel>4</WarningLevel> | |||||
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> | |||||
</PropertyGroup> | |||||
<ItemGroup> | |||||
<Reference Include="System"> | |||||
<Name>System</Name> | |||||
</Reference> | |||||
<Reference Include="System.Xml"> | |||||
<Name>System.XML</Name> | |||||
</Reference> | |||||
<Reference Include="System.Configuration"> | |||||
<Name>System.Configuration</Name> | |||||
</Reference> | |||||
<Reference Include="Microsoft.BizTalk.Pipeline"> | |||||
<SpecificVersion>False</SpecificVersion> | |||||
</Reference> | |||||
<Reference Include="Microsoft.BizTalk.DefaultPipelines"> | |||||
<Name>Microsoft.BizTalk.DefaultPipelines</Name> | |||||
</Reference> | |||||
<Reference Include="Microsoft.BizTalk.GlobalPropertySchemas"> | |||||
<Name>Microsoft.BizTalk.GlobalPropertySchemas</Name> | |||||
</Reference> | |||||
<Reference Include="Microsoft.BizTalk.TestTools"> | |||||
<Name>Microsoft.BizTalk.TestTools</Name> | |||||
</Reference> | |||||
<Reference Include="Microsoft.XLANGs.BaseTypes"> | |||||
<Name>Microsoft.XLANGs.BaseTypes</Name> | |||||
</Reference> | |||||
</ItemGroup> | |||||
<ItemGroup> | |||||
<Compile Include="Properties\AssemblyInfo.cs" /> | |||||
</ItemGroup> | |||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | |||||
<Import Project="$(MSBuildExtensionsPath)\Microsoft\BizTalk\BizTalkC.targets" /> | |||||
</Project> |
@@ -0,0 +1,39 @@ | |||||
using System.Reflection; | |||||
using System.Runtime.CompilerServices; | |||||
using System.Runtime.InteropServices; | |||||
using Microsoft.XLANGs.BaseTypes; | |||||
using Microsoft.BizTalk.XLANGs.BTXEngine; | |||||
// General Information about an assembly is controlled through the following | |||||
// set of attributes. Change these attribute values to modify the information | |||||
// associated with an assembly. | |||||
[assembly: AssemblyTitle("HelloBizTalk2013World")] | |||||
[assembly: AssemblyDescription("")] | |||||
[assembly: AssemblyConfiguration("")] | |||||
[assembly: AssemblyCompany("")] | |||||
[assembly: AssemblyProduct("HelloBizTalk2013World")] | |||||
[assembly: AssemblyCopyright("Copyright © 2024")] | |||||
[assembly: AssemblyTrademark("")] | |||||
[assembly: AssemblyCulture("")] | |||||
[assembly: Microsoft.XLANGs.BaseTypes.BizTalkAssemblyAttribute(typeof(BTXService))] | |||||
// Setting ComVisible to false makes the types in this assembly not visible | |||||
// to COM components. If you need to access a type in this assembly from | |||||
// COM, set the ComVisible attribute to true on that type. | |||||
[assembly: ComVisible(false)] | |||||
// The following GUID is for the ID of the typelib if this project is exposed to COM | |||||
[assembly: Guid("54ff34f5-ab38-49fb-8f69-e995e91ccae2")] | |||||
// Version information for an assembly consists of the following four values: | |||||
// | |||||
// Major Version | |||||
// Minor Version | |||||
// Build Number | |||||
// Revision | |||||
// | |||||
// You can specify all the values or you can default the Build and Revision Numbers | |||||
// by using the '*' as shown below: | |||||
// [assembly: AssemblyVersion("1.0.*")] | |||||
[assembly: AssemblyVersion("1.0.0.0")] | |||||
[assembly: AssemblyFileVersion("1.0.0.0")] |
@@ -0,0 +1,39 @@ | |||||
using System.Reflection; | |||||
using System.Runtime.CompilerServices; | |||||
using System.Runtime.InteropServices; | |||||
using Microsoft.XLANGs.BaseTypes; | |||||
using Microsoft.BizTalk.XLANGs.BTXEngine; | |||||
// General Information about an assembly is controlled through the following | |||||
// set of attributes. Change these attribute values to modify the information | |||||
// associated with an assembly. | |||||
[assembly: AssemblyTitle("Schemas")] | |||||
[assembly: AssemblyDescription("")] | |||||
[assembly: AssemblyConfiguration("")] | |||||
[assembly: AssemblyCompany("")] | |||||
[assembly: AssemblyProduct("Schemas")] | |||||
[assembly: AssemblyCopyright("Copyright © 2024")] | |||||
[assembly: AssemblyTrademark("")] | |||||
[assembly: AssemblyCulture("")] | |||||
[assembly: Microsoft.XLANGs.BaseTypes.BizTalkAssemblyAttribute(typeof(BTXService))] | |||||
// Setting ComVisible to false makes the types in this assembly not visible | |||||
// to COM components. If you need to access a type in this assembly from | |||||
// COM, set the ComVisible attribute to true on that type. | |||||
[assembly: ComVisible(false)] | |||||
// The following GUID is for the ID of the typelib if this project is exposed to COM | |||||
[assembly: Guid("b8e219ef-7c03-43e4-82ea-069453f4d21a")] | |||||
// Version information for an assembly consists of the following four values: | |||||
// | |||||
// Major Version | |||||
// Minor Version | |||||
// Build Number | |||||
// Revision | |||||
// | |||||
// You can specify all the values or you can default the Build and Revision Numbers | |||||
// by using the '*' as shown below: | |||||
// [assembly: AssemblyVersion("1.0.*")] | |||||
[assembly: AssemblyVersion("3.0.0.0")] | |||||
[assembly: AssemblyFileVersion("3.0.0.0")] |
@@ -0,0 +1,85 @@ | |||||
<?xml version="1.0" encoding="utf-8"?> | |||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |||||
<PropertyGroup> | |||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | |||||
<SchemaVersion>2.0</SchemaVersion> | |||||
<ProjectGuid>{DD0CDDD5-0D81-4C81-9E3E-24FE00EE99D9}</ProjectGuid> | |||||
<ProjectTypeGuids>{EF7E3281-CD33-11D4-8326-00C04FA0CE8D};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> | |||||
<OutputType>library</OutputType> | |||||
<GenericProcessing>true</GenericProcessing> | |||||
<RootNamespace>TM.HelloBizTalk2013World.Schemas</RootNamespace> | |||||
<AssemblyName>TM.HelloBizTalk2013World.Schemas</AssemblyName> | |||||
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion> | |||||
<BpelCompliance>True</BpelCompliance> | |||||
<FileUpgradeFlags> | |||||
</FileUpgradeFlags> | |||||
<UpgradeBackupLocation> | |||||
</UpgradeBackupLocation> | |||||
<OldToolsVersion>4.0</OldToolsVersion> | |||||
</PropertyGroup> | |||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |||||
<DebugSymbols>true</DebugSymbols> | |||||
<DebugType>full</DebugType> | |||||
<Optimize>false</Optimize> | |||||
<OutputPath>bin\Debug\</OutputPath> | |||||
<DefineConstants>DEBUG;TRACE</DefineConstants> | |||||
<ErrorReport>prompt</ErrorReport> | |||||
<WarningLevel>4</WarningLevel> | |||||
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> | |||||
</PropertyGroup> | |||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | |||||
<DebugType>pdbonly</DebugType> | |||||
<Optimize>true</Optimize> | |||||
<OutputPath>bin\Release\</OutputPath> | |||||
<DefineConstants>TRACE</DefineConstants> | |||||
<ErrorReport>prompt</ErrorReport> | |||||
<WarningLevel>4</WarningLevel> | |||||
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> | |||||
</PropertyGroup> | |||||
<PropertyGroup> | |||||
<SignAssembly>true</SignAssembly> | |||||
</PropertyGroup> | |||||
<PropertyGroup> | |||||
<AssemblyOriginatorKeyFile>HelloBizTalk2013World.snk</AssemblyOriginatorKeyFile> | |||||
</PropertyGroup> | |||||
<ItemGroup> | |||||
<Reference Include="System"> | |||||
<Name>System</Name> | |||||
</Reference> | |||||
<Reference Include="System.Xml"> | |||||
<Name>System.XML</Name> | |||||
</Reference> | |||||
<Reference Include="System.Configuration"> | |||||
<Name>System.Configuration</Name> | |||||
</Reference> | |||||
<Reference Include="Microsoft.BizTalk.Pipeline"> | |||||
<SpecificVersion>False</SpecificVersion> | |||||
</Reference> | |||||
<Reference Include="Microsoft.BizTalk.DefaultPipelines"> | |||||
<Name>Microsoft.BizTalk.DefaultPipelines</Name> | |||||
</Reference> | |||||
<Reference Include="Microsoft.BizTalk.GlobalPropertySchemas"> | |||||
<Name>Microsoft.BizTalk.GlobalPropertySchemas</Name> | |||||
</Reference> | |||||
<Reference Include="Microsoft.BizTalk.TestTools"> | |||||
<Name>Microsoft.BizTalk.TestTools</Name> | |||||
</Reference> | |||||
<Reference Include="Microsoft.XLANGs.BaseTypes"> | |||||
<Name>Microsoft.XLANGs.BaseTypes</Name> | |||||
</Reference> | |||||
</ItemGroup> | |||||
<ItemGroup> | |||||
<Compile Include="Properties\AssemblyInfo.cs" /> | |||||
</ItemGroup> | |||||
<ItemGroup> | |||||
<None Include="HelloBizTalk2013World.snk" /> | |||||
<Schema Include="ShipmentStatusSchema_TEST.xsd"> | |||||
<TypeName>ShipmentStatusSchema_TEST</TypeName> | |||||
<Namespace>TM.HelloBizTalk2013World.Schemas</Namespace> | |||||
<SubType>Task</SubType> | |||||
</Schema> | |||||
</ItemGroup> | |||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | |||||
<Import Project="$(MSBuildExtensionsPath)\Microsoft\BizTalk\BizTalkC.targets" /> | |||||
</Project> |
@@ -0,0 +1,76 @@ | |||||
namespace TM.HelloBizTalk2013World.Schemas { | |||||
using Microsoft.XLANGs.BaseTypes; | |||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.BizTalk.Schema.Compiler", "3.0.1.0")] | |||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] | |||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] | |||||
[SchemaType(SchemaTypeEnum.Document)] | |||||
[Schema(@"TM.HelloBizTalk2013World.Schemas",@"ShipmentStatus")] | |||||
[System.SerializableAttribute()] | |||||
[SchemaRoots(new string[] {@"ShipmentStatus"})] | |||||
public sealed class ShipmentStatusSchema_TEST : Microsoft.XLANGs.BaseTypes.SchemaBase { | |||||
[System.NonSerializedAttribute()] | |||||
private static object _rawSchema; | |||||
[System.NonSerializedAttribute()] | |||||
private const string _strSchema = @"<?xml version=""1.0"" encoding=""utf-16""?> | |||||
<xs:schema xmlns=""TM.HelloBizTalk2013World.Schemas"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" attributeFormDefault=""unqualified"" elementFormDefault=""qualified"" targetNamespace=""TM.HelloBizTalk2013World.Schemas"" xmlns:xs=""http://www.w3.org/2001/XMLSchema""> | |||||
<xs:element name=""ShipmentStatus""> | |||||
<xs:complexType> | |||||
<xs:sequence> | |||||
<xs:element name=""Header""> | |||||
<xs:complexType> | |||||
<xs:sequence> | |||||
<xs:element name=""MessageIdentifier"" type=""xs:string"" /> | |||||
<xs:element name=""MessageDateTime"" type=""xs:dateTime"" /> | |||||
<xs:element name=""From"" type=""xs:string"" /> | |||||
<xs:element name=""To"" type=""xs:string"" /> | |||||
</xs:sequence> | |||||
</xs:complexType> | |||||
</xs:element> | |||||
<xs:element name=""ShipmentStatusReport""> | |||||
<xs:complexType> | |||||
<xs:sequence> | |||||
<xs:element name=""ShipmentNumber"" type=""xs:unsignedLong"" /> | |||||
<xs:element name=""StatusCode"" type=""xs:string"" /> | |||||
<xs:element name=""StatusDateTime"" type=""xs:dateTime"" /> | |||||
<xs:element name=""SignedBy"" type=""xs:anyType"" /> | |||||
<xs:element name=""Remarks"" type=""xs:anyType"" /> | |||||
</xs:sequence> | |||||
</xs:complexType> | |||||
</xs:element> | |||||
</xs:sequence> | |||||
<xs:attribute name=""Version"" type=""xs:unsignedByte"" use=""required"" /> | |||||
</xs:complexType> | |||||
</xs:element> | |||||
</xs:schema>"; | |||||
public ShipmentStatusSchema_TEST() { | |||||
} | |||||
public override string XmlContent { | |||||
get { | |||||
return _strSchema; | |||||
} | |||||
} | |||||
public override string[] RootNodes { | |||||
get { | |||||
string[] _RootElements = new string [1]; | |||||
_RootElements[0] = "ShipmentStatus"; | |||||
return _RootElements; | |||||
} | |||||
} | |||||
protected override object RawSchema { | |||||
get { | |||||
return _rawSchema; | |||||
} | |||||
set { | |||||
_rawSchema = value; | |||||
} | |||||
} | |||||
} | |||||
} |
@@ -0,0 +1,7 @@ | |||||
<ShipmentStatusReport xmlns:ns0="TM.HelloBizTalk2013World.Schemas"> | |||||
<ShipmentNumber>4702462418</ShipmentNumber> | |||||
<StatusCode>D</StatusCode> | |||||
<StatusDateTime>2024-12-02T16:00:00</StatusDateTime> | |||||
<SignedBy /> | |||||
<Remarks /> | |||||
</ShipmentStatusReport> |
@@ -0,0 +1,65 @@ | |||||
<?xml version="1.0" encoding="utf-8"?><s0:StatusReport xmlns:s0="http://TM.KLG.com/KLG/OrderStatus"> | |||||
<Sender>KLGEUVENLO01</Sender> | |||||
<Receiver>DSMDYURMON01</Receiver> | |||||
<GroupName>IDS</GroupName> | |||||
<Consolidation>N/A</Consolidation> | |||||
<ReceiverVersion>v00</ReceiverVersion> | |||||
<TimeStamp>2024-12-03T11:49:32</TimeStamp> | |||||
<Status> | |||||
<ShipmentReference>4702462418</ShipmentReference> | |||||
<StatusCode>012</StatusCode> | |||||
<StatusRemark /> | |||||
<ReasonCode /> | |||||
<StatusTimeStamp>2024-12-02T16:00:00</StatusTimeStamp> | |||||
<Parametergroup> | |||||
<Groupname>KLG Identifications</Groupname> | |||||
<Parameter> | |||||
<Qualifier>LoadUnit</Qualifier> | |||||
<Value>1504218</Value> | |||||
</Parameter> | |||||
<Parameter> | |||||
<Qualifier>Shipment</Qualifier> | |||||
<Value>2796204</Value> | |||||
</Parameter> | |||||
</Parametergroup> | |||||
<Parametergroup> | |||||
<Groupname>v21A</Groupname> | |||||
<Parameter> | |||||
<Qualifier>Country</Qualifier> | |||||
<Value>NL</Value> | |||||
</Parameter> | |||||
<Parameter> | |||||
<Qualifier>City</Qualifier> | |||||
<Value>VENLO</Value> | |||||
</Parameter> | |||||
<Parameter> | |||||
<Qualifier>PostalCode</Qualifier> | |||||
<Value>5928</Value> | |||||
</Parameter> | |||||
<Parameter> | |||||
<Qualifier>CollectionCountry</Qualifier> | |||||
<Value>NL</Value> | |||||
</Parameter> | |||||
<Parameter> | |||||
<Qualifier>CollectionCity</Qualifier> | |||||
<Value>HEERLEN</Value> | |||||
</Parameter> | |||||
<Parameter> | |||||
<Qualifier>CollectionPostalcode</Qualifier> | |||||
<Value>6422</Value> | |||||
</Parameter> | |||||
<Parameter> | |||||
<Qualifier>DeliveryCountry</Qualifier> | |||||
<Value>NL</Value> | |||||
</Parameter> | |||||
<Parameter> | |||||
<Qualifier>DeliveryCity</Qualifier> | |||||
<Value>VENLO</Value> | |||||
</Parameter> | |||||
<Parameter> | |||||
<Qualifier>DeliveryPostalcode</Qualifier> | |||||
<Value>5928</Value> | |||||
</Parameter> | |||||
</Parametergroup> | |||||
</Status> | |||||
</s0:StatusReport> |
@@ -0,0 +1,15 @@ | |||||
<?xml version="1.0" encoding="utf-8"?><ShipmentStatus Version="1"> | |||||
<Header> | |||||
<MessageIdentifier>LoadUnit: 1504218, Shipment: 2796204</MessageIdentifier> | |||||
<MessageDateTime>2024-12-03T11:49:34</MessageDateTime> | |||||
<From>KLG Europe - Venlo bv</From> | |||||
<To>IDS</To> | |||||
</Header> | |||||
<ShipmentStatusReport> | |||||
<ShipmentNumber>4702462418</ShipmentNumber> | |||||
<StatusCode>D</StatusCode> | |||||
<StatusDateTime>2024-12-02T16:00:00.000+02:00</StatusDateTime> | |||||
<SignedBy /> | |||||
<Remarks /> | |||||
</ShipmentStatusReport> | |||||
</ShipmentStatus> |
@@ -0,0 +1,39 @@ | |||||
using System.Reflection; | |||||
using System.Runtime.CompilerServices; | |||||
using System.Runtime.InteropServices; | |||||
using Microsoft.XLANGs.BaseTypes; | |||||
using Microsoft.BizTalk.XLANGs.BTXEngine; | |||||
// General Information about an assembly is controlled through the following | |||||
// set of attributes. Change these attribute values to modify the information | |||||
// associated with an assembly. | |||||
[assembly: AssemblyTitle("Transforms")] | |||||
[assembly: AssemblyDescription("")] | |||||
[assembly: AssemblyConfiguration("")] | |||||
[assembly: AssemblyCompany("")] | |||||
[assembly: AssemblyProduct("Transforms")] | |||||
[assembly: AssemblyCopyright("Copyright © 2024")] | |||||
[assembly: AssemblyTrademark("")] | |||||
[assembly: AssemblyCulture("")] | |||||
[assembly: Microsoft.XLANGs.BaseTypes.BizTalkAssemblyAttribute(typeof(BTXService))] | |||||
// Setting ComVisible to false makes the types in this assembly not visible | |||||
// to COM components. If you need to access a type in this assembly from | |||||
// COM, set the ComVisible attribute to true on that type. | |||||
[assembly: ComVisible(false)] | |||||
// The following GUID is for the ID of the typelib if this project is exposed to COM | |||||
[assembly: Guid("6ee0ae77-8ea9-4be6-9f67-b15ba6f1a4b7")] | |||||
// Version information for an assembly consists of the following four values: | |||||
// | |||||
// Major Version | |||||
// Minor Version | |||||
// Build Number | |||||
// Revision | |||||
// | |||||
// You can specify all the values or you can default the Build and Revision Numbers | |||||
// by using the '*' as shown below: | |||||
// [assembly: AssemblyVersion("1.0.*")] | |||||
[assembly: AssemblyVersion("3.0.0.0")] | |||||
[assembly: AssemblyFileVersion("3.0.0.0")] |
@@ -0,0 +1,113 @@ | |||||
namespace TM.HelloBizTalk2013World.Transforms { | |||||
[Microsoft.XLANGs.BaseTypes.SchemaReference(@"TM.Shared.Schemas.OrderStatus", typeof(global::TM.Shared.Schemas.OrderStatus))] | |||||
[Microsoft.XLANGs.BaseTypes.SchemaReference(@"TM.HelloBizTalk2013World.Schemas.ShipmentStatusSchema_TEST", typeof(global::TM.HelloBizTalk2013World.Schemas.ShipmentStatusSchema_TEST))] | |||||
public sealed class Shared_OrderStatus_to_ShipmentStatus : global::Microsoft.XLANGs.BaseTypes.TransformBase { | |||||
private const string _strMap = @"<xsl:stylesheet xmlns:xsl=""http://www.w3.org/1999/XSL/Transform"" version=""1.0"" | |||||
xmlns:ScriptNS0=""http://schemas.microsoft.com/BizTalk/2003/ScriptNS0"" | |||||
xmlns:ScriptNS1=""http://schemas.microsoft.com/BizTalk/2003/ScriptNS1"" | |||||
xmlns:DateTime=""TM.Shared.Components.DateTime"" | |||||
xmlns:SSO=""TM.Shared.Components.SSO"" | |||||
xmlns:String=""TM.Shared.Components.String"" | |||||
xmlns:s0=""http://TM.KLG.com/KLG/OrderStatus"" | |||||
xmlns:ns0=""TM.HelloBizTalk2013World.Schemas"" | |||||
exclude-result-prefixes=""s0 ScriptNS0 ScriptNS1 DateTime SSO String""> | |||||
<xsl:output omit-xml-declaration=""yes"" method=""xml"" version=""1.0"" indent=""yes"" /> | |||||
<xsl:variable name=""connectionString"" select=""SSO:GetValue('TM.HelloBizTalk2013World', 'ESBLookupConnectionString2016')""/> | |||||
<xsl:template match=""/""> | |||||
<xsl:apply-templates select=""/s0:StatusReport"" /> | |||||
</xsl:template> | |||||
<xsl:template match=""/s0:StatusReport""> | |||||
<ns0:ShipmentStatus> | |||||
<ShipmentStatusReport> | |||||
<ShipmentNumber> | |||||
<xsl:value-of select=""Status/ShipmentReference""/> | |||||
</ShipmentNumber> | |||||
<StatusCode>D</StatusCode> | |||||
<StatusDateTime> | |||||
<xsl:value-of select=""Status/StatusTimeStamp""/> | |||||
</StatusDateTime> | |||||
<SignedBy /> | |||||
<Remarks /> | |||||
</ShipmentStatusReport> | |||||
</ns0:ShipmentStatus> | |||||
</xsl:template> | |||||
</xsl:stylesheet>"; | |||||
private const int _useXSLTransform = 0; | |||||
private const string _strArgList = @"<ExtensionObjects> | |||||
<ExtensionObject Namespace=""http://schemas.microsoft.com/BizTalk/2003/ScriptNS0"" | |||||
AssemblyName=""Microsoft.BizTalk.BaseFunctoids, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"" | |||||
ClassName=""Microsoft.BizTalk.BaseFunctoids.FunctoidScripts"" /> | |||||
<ExtensionObject Namespace=""http://schemas.microsoft.com/BizTalk/2003/ScriptNS1"" | |||||
AssemblyName=""Microsoft.BizTalk.CrossReferencing, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"" | |||||
ClassName=""Microsoft.BizTalk.CrossReferencing.CrossReferencing"" /> | |||||
<ExtensionObject Namespace=""TM.Shared.Components.DateTime"" | |||||
AssemblyName=""TM.Shared.Components, Version=3.0.37.0, Culture=neutral, PublicKeyToken=9cbf569b151cb1d4"" | |||||
ClassName=""TM.Shared.Components.DateTimeFunctions"" /> | |||||
<ExtensionObject Namespace=""TM.Shared.Components.KeyList"" | |||||
AssemblyName=""TM.Shared.Components, Version=3.0.37.0, Culture=neutral, PublicKeyToken=9cbf569b151cb1d4"" | |||||
ClassName=""TM.Shared.Components.KeyListFunctions"" /> | |||||
<ExtensionObject Namespace=""TM.Shared.Components.SSO"" | |||||
AssemblyName=""TM.Shared.Components, Version=3.0.37.0, Culture=neutral, PublicKeyToken=9cbf569b151cb1d4"" | |||||
ClassName=""TM.Shared.Components.SSOFunctions"" /> | |||||
<ExtensionObject Namespace=""TM.Shared.Components.String"" | |||||
AssemblyName=""TM.Shared.Components, Version=3.0.37.0, Culture=neutral, PublicKeyToken=9cbf569b151cb1d4"" | |||||
ClassName=""TM.Shared.Components.StringFunctions"" /> | |||||
</ExtensionObjects>"; | |||||
private const string _strSrcSchemasList0 = @"TM.Shared.Schemas.OrderStatus"; | |||||
private const global::TM.Shared.Schemas.OrderStatus _srcSchemaTypeReference0 = null; | |||||
private const string _strTrgSchemasList0 = @"TM.HelloBizTalk2013World.Schemas.ShipmentStatusSchema_TEST"; | |||||
private const global::TM.HelloBizTalk2013World.Schemas.ShipmentStatusSchema_TEST _trgSchemaTypeReference0 = null; | |||||
public override string XmlContent { | |||||
get { | |||||
return _strMap; | |||||
} | |||||
} | |||||
public override int UseXSLTransform { | |||||
get { | |||||
return _useXSLTransform; | |||||
} | |||||
} | |||||
public override string XsltArgumentListContent { | |||||
get { | |||||
return _strArgList; | |||||
} | |||||
} | |||||
public override string[] SourceSchemas { | |||||
get { | |||||
string[] _SrcSchemas = new string [1]; | |||||
_SrcSchemas[0] = @"TM.Shared.Schemas.OrderStatus"; | |||||
return _SrcSchemas; | |||||
} | |||||
} | |||||
public override string[] TargetSchemas { | |||||
get { | |||||
string[] _TrgSchemas = new string [1]; | |||||
_TrgSchemas[0] = @"TM.HelloBizTalk2013World.Schemas.ShipmentStatusSchema_TEST"; | |||||
return _TrgSchemas; | |||||
} | |||||
} | |||||
} | |||||
} |
@@ -0,0 +1,39 @@ | |||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" | |||||
xmlns:ScriptNS0="http://schemas.microsoft.com/BizTalk/2003/ScriptNS0" | |||||
xmlns:ScriptNS1="http://schemas.microsoft.com/BizTalk/2003/ScriptNS1" | |||||
xmlns:DateTime="TM.Shared.Components.DateTime" | |||||
xmlns:SSO="TM.Shared.Components.SSO" | |||||
xmlns:String="TM.Shared.Components.String" | |||||
xmlns:s0="http://TM.KLG.com/KLG/OrderStatus" | |||||
xmlns:ns0="TM.HelloBizTalk2013World.Schemas" | |||||
exclude-result-prefixes="s0 ScriptNS0 ScriptNS1 DateTime SSO String"> | |||||
<xsl:output omit-xml-declaration="yes" method="xml" version="1.0" indent="yes" /> | |||||
<xsl:variable name="connectionString" select="SSO:GetValue('TM.HelloBizTalk2013World', 'ESBLookupConnectionString2016')"/> | |||||
<xsl:template match="/"> | |||||
<xsl:apply-templates select="/s0:StatusReport" /> | |||||
</xsl:template> | |||||
<xsl:template match="/s0:StatusReport"> | |||||
<ns0:ShipmentStatus> | |||||
<ShipmentStatusReport> | |||||
<ShipmentNumber> | |||||
<xsl:value-of select="Status/ShipmentReference"/> | |||||
</ShipmentNumber> | |||||
<StatusCode>D</StatusCode> | |||||
<StatusDateTime> | |||||
<xsl:value-of select="Status/StatusTimeStamp"/> | |||||
</StatusDateTime> | |||||
<SignedBy /> | |||||
<Remarks /> | |||||
</ShipmentStatusReport> | |||||
</ns0:ShipmentStatus> | |||||
</xsl:template> | |||||
</xsl:stylesheet> |
@@ -0,0 +1,107 @@ | |||||
<?xml version="1.0" encoding="utf-8"?> | |||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |||||
<PropertyGroup> | |||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | |||||
<SchemaVersion>2.0</SchemaVersion> | |||||
<ProjectGuid>{B0C9D0D2-75D8-4A96-8593-6E71CAACBB4D}</ProjectGuid> | |||||
<ProjectTypeGuids>{EF7E3281-CD33-11D4-8326-00C04FA0CE8D};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> | |||||
<OutputType>library</OutputType> | |||||
<GenericProcessing>true</GenericProcessing> | |||||
<RootNamespace>TM.HelloBizTalk2013World.Transforms</RootNamespace> | |||||
<AssemblyName>TM.HelloBizTalk2013World.Transforms</AssemblyName> | |||||
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion> | |||||
<BpelCompliance>True</BpelCompliance> | |||||
<FileUpgradeFlags> | |||||
</FileUpgradeFlags> | |||||
<UpgradeBackupLocation> | |||||
</UpgradeBackupLocation> | |||||
<OldToolsVersion>4.0</OldToolsVersion> | |||||
</PropertyGroup> | |||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |||||
<DebugSymbols>true</DebugSymbols> | |||||
<DebugType>full</DebugType> | |||||
<Optimize>false</Optimize> | |||||
<OutputPath>bin\Debug\</OutputPath> | |||||
<DefineConstants>DEBUG;TRACE</DefineConstants> | |||||
<ErrorReport>prompt</ErrorReport> | |||||
<WarningLevel>4</WarningLevel> | |||||
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> | |||||
</PropertyGroup> | |||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | |||||
<DebugType>pdbonly</DebugType> | |||||
<Optimize>true</Optimize> | |||||
<OutputPath>bin\Release\</OutputPath> | |||||
<DefineConstants>TRACE</DefineConstants> | |||||
<ErrorReport>prompt</ErrorReport> | |||||
<WarningLevel>4</WarningLevel> | |||||
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> | |||||
</PropertyGroup> | |||||
<PropertyGroup> | |||||
<SignAssembly>true</SignAssembly> | |||||
</PropertyGroup> | |||||
<PropertyGroup> | |||||
<AssemblyOriginatorKeyFile>HelloBizTalk2013World.snk</AssemblyOriginatorKeyFile> | |||||
</PropertyGroup> | |||||
<ItemGroup> | |||||
<Reference Include="System"> | |||||
<Name>System</Name> | |||||
</Reference> | |||||
<Reference Include="System.Xml"> | |||||
<Name>System.XML</Name> | |||||
</Reference> | |||||
<Reference Include="System.Configuration"> | |||||
<Name>System.Configuration</Name> | |||||
</Reference> | |||||
<Reference Include="Microsoft.BizTalk.Pipeline"> | |||||
<SpecificVersion>False</SpecificVersion> | |||||
</Reference> | |||||
<Reference Include="Microsoft.BizTalk.DefaultPipelines"> | |||||
<Name>Microsoft.BizTalk.DefaultPipelines</Name> | |||||
</Reference> | |||||
<Reference Include="Microsoft.BizTalk.GlobalPropertySchemas"> | |||||
<Name>Microsoft.BizTalk.GlobalPropertySchemas</Name> | |||||
</Reference> | |||||
<Reference Include="Microsoft.BizTalk.TestTools"> | |||||
<Name>Microsoft.BizTalk.TestTools</Name> | |||||
</Reference> | |||||
<Reference Include="Microsoft.XLANGs.BaseTypes"> | |||||
<Name>Microsoft.XLANGs.BaseTypes</Name> | |||||
</Reference> | |||||
<Reference Include="TM.Shared.Components, Version=1.0.36.0, Culture=neutral, PublicKeyToken=9cbf569b151cb1d4, processorArchitecture=MSIL"> | |||||
<SpecificVersion>False</SpecificVersion> | |||||
<HintPath>C:\Windows\Microsoft.NET\assembly\GAC_MSIL\TM.Shared.Components\v4.0_1.0.36.0__9cbf569b151cb1d4\TM.Shared.Components.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="TM.Shared.Schemas, Version=1.0.4.0, Culture=neutral, PublicKeyToken=013b7f851874cb98, processorArchitecture=MSIL"> | |||||
<SpecificVersion>False</SpecificVersion> | |||||
<HintPath>..\..\..\..\..\..\..\Windows\Microsoft.NET\assembly\GAC_MSIL\TM.Shared.Schemas\v4.0_1.0.4.0__013b7f851874cb98\TM.Shared.Schemas.dll</HintPath> | |||||
</Reference> | |||||
</ItemGroup> | |||||
<ItemGroup> | |||||
<Compile Include="Properties\AssemblyInfo.cs" /> | |||||
</ItemGroup> | |||||
<ItemGroup> | |||||
<None Include="HelloBizTalk2013World.snk" /> | |||||
</ItemGroup> | |||||
<ItemGroup> | |||||
<Content Include="CustomExtensions.xml"> | |||||
<SubType>Designer</SubType> | |||||
</Content> | |||||
<Content Include="Shared.OrderStatus_to_ShipmentStatus.xsl"> | |||||
<SubType>Designer</SubType> | |||||
</Content> | |||||
<Map Include="Shared.OrderStatus_to_ShipmentStatus.btm"> | |||||
<TypeName>Shared_OrderStatus_to_ShipmentStatus</TypeName> | |||||
<Namespace>TM.HelloBizTalk2013World.Transforms</Namespace> | |||||
<SubType>Task</SubType> | |||||
</Map> | |||||
</ItemGroup> | |||||
<ItemGroup> | |||||
<ProjectReference Include="..\Schemas\Schemas.btproj"> | |||||
<Project>{dd0cddd5-0d81-4c81-9e3e-24fe00ee99d9}</Project> | |||||
<Name>Schemas</Name> | |||||
</ProjectReference> | |||||
</ItemGroup> | |||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | |||||
<Import Project="$(MSBuildExtensionsPath)\Microsoft\BizTalk\BizTalkC.targets" /> | |||||
</Project> |