I'm trying to create a Send Port using the BizTalk Management API (from BizTalk 2016, feature pack 2).
But I have the following issue: a Send Port has a PrimaryTransport (standard on Send Ports) and a SecondaryTransport (in BizTalk UI: Backup Transport).
The SecondaryTransport will be based on an optional URL.
I can create the Send Port with the SecondaryTransport being null (using both Swagger and C#), showing the following:
But I can't update the Send Port afterwards as I'm getting the following when I try setting the SecondaryTransport/Backup Transport through C# or Swagger or BizTalk's UI
I've tried putting "None", "", "NONE", "" as TransportType, but those aren't valid adapters. This is the configuration in Swagger for the SecondaryTransport itself:
"SecondaryTransport": {
"Address":"",
"TransportType": "NONE",
"TransportTypeData": null,
"SendHandler": "BizTalkServerApplication",
"RetryCount": 3,
"RetryInterval": 5,
"OrderedDelivery": false,
"Schedule": {
"ServiceWindowEnabled": false,
"FromTime": "2018-07-22T22:00:00",
"ToTime": "2018-07-23T21:59:59"
}
},
Does anyone have any experience on what I could fill in to be able to fill in my Backup Transport afterwards? (And so it doesn't look like it doesn't have any options anymore)