Book Image

Robust Cloud Integration with Azure

By : Gyanendra Kumar Gautam, Ashish Bhambhani, Abhishek Kumar, James Corbould, Mahindra Morar, Martin Abbott
Book Image

Robust Cloud Integration with Azure

By: Gyanendra Kumar Gautam, Ashish Bhambhani, Abhishek Kumar, James Corbould, Mahindra Morar, Martin Abbott

Overview of this book

Any software developers, architects, and technical managers lookng to learn about Azure IaaS essentials need look no further. This book is ideal for Microsoft Enterprise developers, DevOps or any IT professionals looking to connect cloud-based and on-premises systems with Azure.
Table of Contents (23 chapters)
Robust Cloud Integration with Azure
Credits
Foreword
About the Authors
About the Reviewers
www.PacktPub.com
Customer Feedback
Preface

Content type in Logic Apps


Content type defines the actual format of the data that flows through system. Logic Apps engine can process multiple content types, such as JSON, XML, Flat Files, and binary data. There are some natively supported content type for Logic App workflow engines such as JSON, Text, and XML, and other requires casting from one format to another.

Content-Type header

The Content-Type header is used to specify the nature of the data in the body of an entity, by giving type and subtype identifiers, and by providing auxiliary information that may be required for certain types. When a client posts a request to the server and specifies the content type, it makes easy for the server to understand the data and parse it.

These are the basic Content-Type, we use within a Logic App.

  • text/plain

  • application/json

  • application/xml

Text/plain

The text Content-Type is intended to send data that is principally textual in form. The primary subtype of text is plain. This indicates the plain (unformatted...