Given our company cloud strategy, BizTalk is finite for us and we have started the transition to an iPaaS landscape based on Microsoft Azure. The BizTalk environment is replaced by an environment consisting of API Management, Logic Apps, Functions, Event Grid and Service Bus parts.
One of the BizTalk HTTP APIs is exposed by API Management to internal and external consumers and is partly migrated to a Logic App already. This transformation to iPaaS should have no impact on the consumers of the API Management endpoints.
Sadly we found out this week that this was not true for one of the methods within that specific API. One of the consumers was transitioning from the BizTalk API to the version hosted in API Management. When testing the API they complained that the received an error that the HTTP Header Content-Type was not supported in their client. The value they received was application/xml
instead of the BasicHttpBinding value text/xml; charset=utf-8
they needed.
The developer which developed the Logic App used a HTTP trigger which returns a XML object. By default the Content-Type value will be application/xml
for this scenario. To be fully compliant to the original BizTalk HTTP API the value should be SOAP 1.1 based and thus text/xml; charset=utf-8
. You can change the Content-Type in the Logic App self by specifying a Key-Value pair in the Headers section for the Content-Type with the needed value for the HTTP connector. A sample for this can you find in the documentation where the Content-Type is changed into the application/x-www-form-urlencoded
type.
Because realizing that change would take some time because another DevOps team is involved I tried to solve this issue myself within API Management with a quick API Management policy fix. When the client makes a call to the API Management endpoint I try to determine which kind of binding they use by checking the Content-Type they use. We store that information in a variable with a Set variable step which we use within the response phase to set the correct Content-Type with a Set request method. With the Control flow option we check if we have a caller which uses a BasicHttpBinding or a WsHttpBinding and correct the Content-Type value to the corresponding SOAP 1.1 or SOAP 1.2 value. All other scenarios will use the value supplied by the Logic App.
The policy of the API looks like this:
<policies> <inbound> <base/> <!-- Preserve incoming Content-Type information --> <set-variable name="isBasicHttp" value="@(context.Request.Headers["Content-Type"].Contains("text/xml; charset=utf-8"))"/> <set-variable name="isWsHttp" value="@(context.Request.Headers["Content-Type"].Contains("application/soap+xml; charset=utf-8"))"/> </inbound> <backend> <base/> </backend> <outbound> <base/> <!-- Change Content-Type to match the original request --> <choose> <when condition="@(context.Variables.GetValueOrDefault<bool>("isBasicHttp"))"> <set-header name="Content-Type" exists-action="override"> <value>text/xml; charset=utf-8</value> </set-header> </when> <when condition="@(context.Variables.GetValueOrDefault<bool>("isWsHttp"))"> <set-header name="Content-Type" exists-action="override"> <value>application/soap+xml; charset=utf-8</value> </set-header> </when> </choose> </outbound> <on-error> <base/> </on-error> </policies>
Comments
Post a Comment