So if you have been doing distributed computing for a while, none of these is big news to you. Note also that most of the standards are still in draft form. There will be some consolidations of the specs as implementation experience grows.
The hope is always that the specifications will stabilize, implementations will be more complete, and tooling will catch up. And for a while we will have a set of standards to work against, using tools that make doing everything easier.
Until Microsoft (or should it be Google this time) decides that they don't like it, and does something even weirder. "Web Services is dead," they would then claim.
And we would start all over again.
Actually the next round of things have already been started. It's called AJAX. And at its core is a better XML called JSON:
{
"glossary": {
"title": "example glossary",
"GlossDiv": {
"title": "S",
"GlossList": {
"GlossEntry": {
"ID": "SGML",
"SortAs": "SGML",
"GlossTerm": "Standard Generalized Markup Language",
"Acronym": "SGML",
"Abbrev": "ISO 8879:1986",
"GlossDef": {
"para": "A meta-markup language, used to create markup languages such as DocBook.",
"GlossSeeAlso": ["GML", "XML"]
},
"GlossSee": "markup"
}
}
}
}
}
And believe it or not, the thing is a JavaScript object. We are back to putting objects on the wire again.