Questions tagged [biztalk-2020]

76 questions
0
votes
1 answer

BizTalk EDI - sending body of rejected transaction sets to port

We have an upstream application that will generate at times functionally invalid transaction sets. I'm trying to push the message bodies of the failed transactions from the interchange and associated 999s to a send port or some other logging…
Xingzhou Liu
  • 1,507
  • 8
  • 12
0
votes
1 answer

How to load my custom adapter configuration properties in BizTalk 2020 in property browser using IAdapterConfig?

I have a custom Adapter in BizTalk 2020 that reads data from MongoDB GridFS. But since the code was earlier in 2013 R2 Framework, now while migrating it to 2020 Framework, it throws error like IAdapterInterface is not implemented I then added this…
0
votes
0 answers

Running BizTalk 2020 developer edition as a cluster on Azure VM

Is there any licensing restriction on running a non-production BizTalk 2020 clustered environment with Developer Edition? I'm aware that Developer edition has all the features similar to Enterprise edition and can be used for non-production…
UBK
  • 232
  • 4
  • 15
0
votes
1 answer

Continuously running send pipeline instance

An instance of a BizTalk send pipeline has started to run continuously. On 09/12/2021 an attempt was made to send a file via SFTP, which retried several times but ultimately failed due to a network issue. The error from the event logs is: The…
Batperson
  • 145
  • 2
  • 7
0
votes
1 answer

Orchestration processes the data, but incorrectly, sends message to receive folder and invalid folder. MS Biztalk tutorial

I am doing this tutorial from Microsoft Biztalk: https://learn.microsoft.com/en-us/biztalk/core/tutorial-1-enterprise-application-integration. I process the file and it does not error, but it does not get processed correctly. It ends up in both…
0
votes
0 answers

If I have three static send port say A , B and C .suppose if I received a file via port A if successful file should go to SEND PORT B else C Port

If I have three static send port say A , B and C .suppose if I received a file via Send port A if successful file should go to SEND PORT B else C Port without Orchestration.
0
votes
1 answer

Biztalk 2020 exception when transforming message using a map

We have an application which runs normal in Biztalk 2010 but the same exported application when imported and run in Biztalk 2020 would produce exception. The application has an orchestration which takes an incoming xml and transform it using a map. …
Fylix
  • 2,551
  • 6
  • 45
  • 72
0
votes
2 answers

Release memory by removing consumed messages in BizTalk Orchestration?

I have built an orchestration with a loop to retreive paged data from REST web service. From page size and offset I am able to call the service for "next page" of data. Then I debatch it, map it to internal format and process it further. When one…
JERKER
  • 907
  • 8
  • 17
0
votes
1 answer

Biztalk 2020 Build fails with AddBizTalkHiddenReferences after adding certain nuget packages

Reproduction steps: Stack: Windows 10, Visual Studio 2019 professional, BizTalk Server 2020 developer edition CU1. In Visual Studio create a new Biztalk Server Project Manage Nuget Package, Add a nuget package. pick one: Known to break the…
fabsenet
  • 372
  • 2
  • 15
0
votes
0 answers

Configure BizTalk - Change database names

I want to configure 2 separate BizTalk environments on the same sql instance. Is it possible to change the default database names at the time of configuring BizTalk 2020 for one environment? Will it work if I change the names like below and hit…
Imran
  • 3
  • 3
0
votes
1 answer

Is BizTalk Delay Shape holding any resources or bad for performance?

I have an integration where I am iterating through multiple batches and sending them to a WCF service. The developer of the WCF service has contacted me and said that they are having troubles processing the batches in the pace that we are sending…
onmi
  • 87
  • 1
  • 9
0
votes
1 answer

BizTalk oracle error when configure bindings

I configured BizTalk 2020 Server with CU1 and I installed Oracle Client in this way. Download ODAC183_x64 & ODAC183Xcopy_32bit. I install odac183 with setup and then I'm going to put in gac oracle.dataaccess ( Version=4.122.18.3) in x64 and x86…
0
votes
1 answer

BizTalk 2020 JSON encoder to produce root array of objects, i.e. begin with [ ]

There are many articles about BizTalk JSON encoder... I am trying to produce JSON for 3rd party software wanting root level array, like so: [ { "property" : "value" }, { "property" : "value" } ] I am trying to control the…
JERKER
  • 907
  • 8
  • 17
0
votes
1 answer

How to call JSON decoder from orchestration with JSON input string?

In orchestration I have JSON string (retreived from helper class returning string, but can be changed if required). How can I call custom pipeline (including configuration), including the JSON decoder pipeline component, to get JSON decoded into…
JERKER
  • 907
  • 8
  • 17
0
votes
1 answer

Calculate checksum in BizTalk Orchestration Expression shape

In an orchestration I need to find out if I already processed a message before and,if so, I must ignore it for further processing. I thought I might be able to calculate checksom on the message to get a unique value, like an MD5 checksum. How can I…