What is the Microsoft Integration roadmap?

For a very long time there was lot of debate and frustration within the Microsoft BizTalk Server community, what is going to be Microsoft Roadmap with BizTalk + some of the new cloud integration offering like MABS (Microsoft Azure BizTalk Services), Azure App Services (LogicApps and API apps), to some extend with Service Bus (Queues […]

The post What is the Microsoft Integration roadmap? appeared first on BizTalk360 Blog.

Blog Post by: Saravana Kumar

REST JSON Christmas Puzzle

REST JSON Christmas Puzzle

If I use the BizTalk 2013 R2 JSON Encoder pipeline component to convert the following XML <ns0:ASCIISchema xmlns:ns0="http://RestASCIICharTest.ASCIISchema"><TAB>    </TAB><LF> </LF><CR> </CR><SPACE> </SPACE><ExtendedASCII255></ExtendedASCII255></ns0:ASCIISchema> to JSON I get all null elements { "TAB": null, "LF": null, "CR": null, "SPACE": null, "ExtendedASCII255": null } I wanted to get TAB, LF, CR or a space not null. For a […]
Blog Post by: mbrimble

Authenticating Salesforce REST API calls to custom Apex endpoints

Authenticating Salesforce REST API calls to custom Apex endpoints

Seroter has shown us how to call the Force.com REST API from BizTalk Server and we used this to successfully call standard Force.com objects like .salesforce.com/services/data/v34.0/sobjects/contacts”>https://<blah>.salesforce.com/services/data/v34.0/sobjects/contacts. We could not use this to call custom force.com objects like .salesforce.com/services/apex/ContactMapping”>https://<blah>.salesforce.com/services/apex/ContactMapping unless we modified the published WCF Behaviour for authentication. Thanks to Aravindh Kathiresan for working all this […]
Blog Post by: mbrimble

Azure Logic Apps Monthly Update – November 2015

In a community driven approach from Microsoft, the monthly Google Hangout session from the Azure Logic Apps team – sixth in the series – happened on December 3, 2015. We recommend you to read our earlier blog posts to understand the progress made by the Logic Apps team over the last few months. (July, September, […]

The post Azure Logic Apps Monthly Update – November 2015 appeared first on BizTalk360 Blog.

Blog Post by: Sriram Hariharan

BizTalk 2013 R2 JSON Encoder error – “Object reference not set to an instance of an object” – Part 2

BizTalk 2013 R2 JSON Encoder error – “Object reference not set to an instance of an object” – Part 2

In a previous post I lamented that the JSON encoder pipeline component throws an error if a soap fault is sent to it. My colleague Deepa Kamalanthan has developed a workaround to this issue. The clue to this was taken from a previous post by Johann Cooper. The the JSON encoder pipeline component in our […]
Blog Post by: mbrimble

BizTalk 2013 R2 JSON Encoder cannot process SOAP faults

BizTalk 2013 R2 JSON Encoder cannot process SOAP faults

We have discovered that if a SOAP fault is sent to a pipeline using the JSON Encoder the following error occurs; A response message sent to adapter “WCF-WebHttp” on receive port “OrderAPI” with URI “/order/v2/Service1.svc” is suspended. Error details: There was a failure executing the response(send) pipeline: “Pipelines.CustomerDetails.Snd_JSON, Pipelines.CustomerDetails, Version=1.0.0.0, Culture=neutral, PublicKeyToken=1bdcdd64c42ec63e” Source: “JSON encoder” […]
Blog Post by: mbrimble