Reading XML data from server

Another common data format for REST services is XML. If we have the option to choose a format, there are very small number of cases where JSON is not a better choice. XML is a better option if we need strict message validation using multiple namespaces and schemas, or for some reason, we use Extensible Stylesheet Language Transformations (XSTL). The biggest reason of all is the need to work with and support legacy environments that don't use JSON. Most of the modern server-side frameworks have a built-in support for content negotiation, meaning that depending on the client's request, they can serve up the same resource in different formats. In this recipe, we are going to create a simple XML server and use it from ...

Get HTML5 Data and Services Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.