I am working on a SOAP app, and since it basically uses XML as it's data container, I became curious on what the correct terms for the XML elements are.
For example we have header, body, envelope, but what are is the soap actions called?
I am specifically wondering what the <something_something>
field is called?
And inside a soap action one can also find keys and their values such as for example <thisIsAKey>andThisIsItsValue</thisIsAKey>
What is <thisIsAKey></thisIsAKey>
called and what is andThisIsItsValue
value called?
Are they called just keys and values or what?
I tried to google for XML Protocol
.