back to article OpenID Foundation launches XML-free ID handler

The OpenID Foundation is unshackling developers from the burden of having to work with XML, with the launch of a protocol designed to make the tasks performed by its OpenID protocol more mobile-and-API-friendly. OpenID Connect, described here, is backed by Deutsche Telekom, Google, Microsoft, Ping Identity and Salesforce. It …

COMMENTS

This topic is closed for new posts.
  1. Fair Dinkum
    Thumb Up

    Alphabet Soup..

    .. always get a good chuckle out of diagrams such as these. But not having to use XML - good on them!

  2. artbristol

    Why the XML hate?

    You can have a simple XML data structure if you want. Changing it to JSON doesn't make it simpler. Sure, it's very slightly easier to deal with in Javascript, but that's about it.

    1. Brewster's Angle Grinder Silver badge

      If I had a hammer....

      Have you ever had to use an XML parsing library? Most schemas use attributes and that makes processing and storing the data horrendous. And even if your schema doesn't, you have to put in place code to handle and reject them; ditto processing instructions. Processing XML robustly produces a lot of boiler plate and a lot of overhead for simple message passing.

      Most message passing is best done with key-value pairs. However there is always the odd value that needs more structure than plain text and so, before long, you end up like like HTML, where every value needs a custom processor.

      JSON is in the sweet spot: it offers enough flexibility that there shouldn't be an explosion of custom parsers, without offering features that are overkill for message passing (if great for representing complicated documents).

      @see YAML

    2. John Gamble

      Re: Why the XML hate?

      I don't dislike XML, but making sure the parsing works correctly is indeed an issue, as Brewster's Angle Grinder suggests. If you're involved in the data design, beating down the "attributes everywhere" view of design is a time-consuming process, and if you have to use an existing design, odds are that you'll have to deal with attributes that are simply unnecessary, but still required.

      It's fine for data that forces that sort of structure (most databases, for example), but otherwise JSON is far superior.

      (As an aside: YAML is an abomination, and gulags should have been opened for those who promoted it.)

      1. Anonymous Coward
        Anonymous Coward

        Re: Why the XML hate?

        lolz... JSON is YAML without array capability

  3. Anonymous Coward
    Anonymous Coward

    Why doe we need OpenID?

    When we have Facebook? Just use that for authentication. Done.

This topic is closed for new posts.