For a proof of concept I'm working on, I need to implement handshaking. As I am pretty new with this kind of validation, I don't really know how to start.
Do I need to develop a custom behavior or there is an adapter which make the job?
The purpose of that PoC is to connect to a JSON API in order to receive event data from Event Grid.
I will be using BizTalk 2013 R2 to process received data.
If you guys need more information don't hesitate I will update my posts.
EDIT 27/05:
The purpose of this PoC is to receive events from Event Grid. To use it I need to implement three part (according to dev team): Handshake, Receiving event data and Validation by using JWT token.
For handshaking, I will receive a "request" in JSON with a validationCode and an eventType which had to be "Microsoft.EventGrid.SubscriptionValidationEvent" type and I had to return a response with the validationCode and a HTTP response with 200 result.
If handshaking fail, the flow has to stop.