This document defines the Jabber Object Access Protocol (JOAP) as an extension to the Jabber protocol. It outlines the addressing scheme and IQ stanzas that comprise the protocol as well as the data types that the protocol models. Example applications are discussed, as well as security considerations.
Jabber has a number of attractive features that give it an advantage over existing frameworks for building multi-tier applications, such as the Simple Object Access Protocol (SOAP) or Java 2, Enterprise Edition (J2EE). Among these are:
For existing Jabber development efforts, there are significant advantages to building applications within a JOAP framework. It should go without saying that, for developers creating business applications on top of Jabber, a uniform object access protocol provides significant advantage for cross-product integration.
In addition, implementers of special-purpose components, such as multi-user chat servers or whiteboarding components, can use an object-server interface to allow fine-grained control of the implementations, especially where such control is not specified by the applicable Jabber protocol.
JOAP has the following design goals:
The following are non-goals:
The JOAP interface is made up of three key parts:
jabber:iq:joap
namespace for manipulating data in object servers, classes,
and instances. The stanzas allow client programs to analyze
the structure of objects, to read object attributes, to edit
object attributes, to add new instances, to delete instances,
and to search classes.This section describes the various entities in the JOAP universe. Some entities are directly addressable with Jabber IDs (JIDs), as described below. Others are not considered outside of their enclosing entities.
An object server component is a Jabber component that provides object services. It is addressed like any other Jabber component, i.e., with a DNS hostname or pseudo-hostname. Some examples would be:
payroll.example.com
- A payroll application
server.jukebox.example.com
- An MP3 jukebox server.An object server has zero or more attributes, methods, and classes.
A class is a category of object instances. It defines the structure and interface of these instances. Each class is addressed using the class name as the node identifier, and the object server as the domain identifier. Class names must conform to the node identifier restrictions defined for XMPP. Class names must also be unique, regardless of case, within an object server.
For example:
Employee@payroll.example.com
- An employee class
at the payroll.example.com server.Song@jukebox.example.net
- A song class on the
jukebox server.Board@circuit-design.example.com
- A class for
circuit boards.Board@surf-shop.example.net
- A class for
surfboards -- distinct from above class!Beside uniqueness and XMPP compliance, no further requirements are made on class names. However, good design suggests mnemonic names.
Classes define the attributes and methods of their instances. In addition, they can have attributes and methods of their own. Finally, classes can have superclasses, which indicate an inheritance structure as well as implementation of a defined interface.
JOAP allows for no relative addressing of classes. Classes are always referred to by their full address (node identifier plus domain identifier).
An instance is a collection of data with identity, state, and behavior. Each instance is a member of a class, which defines the attributes (data) and methods (behavior) of the instance itself.
An instance is addressed using the node plus server that identifies its class, as well as a unique string that occupies the resource identifier section of the Jabber ID. The resource is only unique over the space of the corresponding class. Some example instance addresses:
Room@hotel.example.com/103
- Room 103 in the
Example Hotel.Element@periodic-table.example.net/103
- Element
103 (rutherfordium) in the periodic table.Employee@payroll.example.com/JohnSmith
- An
employee named "John Smith".Customer@videorental.example.net/JohnSmith
- A
customer named "John Smith" (not necessarily the
same person as the above employee!).Besides uniqueness within a class, and compliance with the rules for resource identifiers in the XMPP standard, there are no further requirements on instance identifiers in JOAP. In particular, the instance identifier is opaque -- that is, no further information about the state of the object can or should be discerned from the identifier. What visible part of the instance, if any, makes up the unique resource identifier is implementation dependent.
That said, it is recommended that the instance identifier be persistent through the life of the instance. In addition, using mnemonic identifiers can greatly enhance the usability of JOAP objects.
As with other resource identifiers, instance identifiers are case-sensitive.
The instance identifier roughly corresponds to a primary key in a relational database, and for object servers that provide access to relational databases, it is recommended to use the primary key of a table as the instance identifier. For tables with a compound key, a comma (',') dash ('-'), or other non-alphanumeric character can be used to separate parts of the key for better readability. For example:
Date@calendar.example.net/2003-01-26
-- The date
January 26th, 2003.City@canada.example.com/Montréal,QC
-- The city
of Montréal, in the province of Québec.JOAP allows for no relative addressing of instances. Instances are always referred to using their full address (node identifier plus domain identifier plus resource identifier).
An attribute is a unit of state that makes up part of an object server, instance, or class. Each attribute has a name and a type.
Attribute names must be strings of characters containing only the characters [a-zA-Z0-9_]. The first character must be an underscore or alphabetic character. [2]
Attributes cannot be addressed individually. Attributes are manipulated by sending JOAP messages to the object that owns them.
A method is a unit of behavior that makes up part of an object. Methods in JOAP are compatible with XML-RPC [3], as specified in Jabber-RPC (XEP-0009) [1]. In particular, methods have a name, a return type, and 0 or more parameters, each of which has a type.
The one exception to XML-RPC compatibility is that method names for JOAP are restricted to the characters [a-zA-z0-9_]. [4]
Methods cannot be directly addressed using JOAP. Methods are described and executed by sending messages to the object server, class, or instance that owns them.
The range of JOAP data types is borrowed directly from XML-RPC.
The scalar types include the following:
Instance addresses are a special type of string used for referring to instance objects. They can be passed as parameters to methods, or set as attribute values.
If a value can contain an object instance, its type is the address of a class. The address of any object instance that is an instance of that class, or any of its subclasses, can be used in that value.
For example, if Boxcar@trainset.example.com
is a
subclass of Car@trainset.example.com
, then
Boxcar@trainset.example.com/569
can be used as a
method parameter, or set as an attribute, where
Car@trainset.example.com
is the defined type.
Because addresses are used for instance values, all methods involving instances are implicitly pass-by-reference. If a pass-by-value functionality is needed, a struct (see below) should be used instead.
Note that attribute and method param types can use classes
and instances from other object servers (that is, with
different domain identifiers). For instance, an
Employee@payroll.example.com
class could have an
attribute of type Job@hr.example.com
.
There are two compound types defined in XML-RPC.
An array is an ordered list of values. An array can contain values of any type, including other compound types.
In JOAP, as with XML-RPC, it is not possible to address, set, or delete elements of an array. To set values in an array, the entire new array must be specified.
A struct is a set of name-value pairs organized into a logical grouping. A struct can contain values of any type, including other compound types.
In JOAP, as with XML-RPC, it is not possible to address, set, or delete elements of a struct. To set values in an struct, the entire new struct must be specified.
Structs are useful mainly for groupings of data that do not have independent identity or behavior. Where an object needs identity or behavior, an instance should be used instead of a struct.
Types are specified by a string name of the type. This can be one of the XML-RPC types described above, or a class address. [5]
This section defines the Jabber stanzas that make up the JOAP protocol.
Each stanza is an information query (IQ). Except for method calls, the stanzas are all in the 'jabber:iq:joap' namespace. Each of the following sections describes a stanza in that namespace, herein called a "verb". The verbs allow basic access to object servers, classes, and instances.
Not all verbs can be sent to all JOAP entities. The appropriate JOAP entity a verb should be addressed to is noted under the description of the verb.
The <describe> verb requests the interface -- that is, methods, attributes, and classes -- of a given object server or class. The IQ type is "get".
The <describe> verb is useful for creating wrapper classes in JOAP clients, either at runtime or at compile time. It can also be used for object browsers, or for client programs to ascertain that the interface they assume for an object is still valid.
<describe> verbs can be sent to object servers, classes, and instances. Each will return different data.
Each object description can contain one or more strings of descriptive text. This is to indicate the purpose and usage of the object in human-readable form.
Multiple descriptions are allowed in the hope that they will be used to describe the attribute in multiple languages (differentiated using the xml:lang attribute).
Attribute definitions have the following parts:
The attribute definitions returned to a client should include only attributes the user is authorized to access.
Method definitions have the following parts:
The method definitions returned to a client should include only methods the user is authorized to access.
Classes, in superclass definitions and object server interfaces, are always referred to by their full address.
The timestamp is a date-time value in ISO 8601 format, UTC. The timestamp indicates the last time an interface was changed, if that information is available.
The main point of describing the superclasses a class has is to allow clients to make typing distinctions: that is, to determine if a class presents a given interface, or may be provided as a parameter or attribute in another JOAP call.
The list of superclasses given in a class description is flat, not hierarchical. No provision is made to indicate which of a class's superclasses are superclasses of each other, nor is there any implied precedence order in the order of the classes in the returned description.
In addition, no provision is made to define which superclass actually implements any methods or attributes defined.
When a class receives a <describe> verb, it must return all its superclasses, including multiple ancestors. It must as well return all the attributes and methods that it responds to, including those defined in its superclasses. This is called a "flattened" description of the class. [6]
The following examples illustrate the use of the <describe> verb. [7]
To describe a server, the JOAP client sends this stanza.
<iq type='get' id='joap_describe_1' from='Client@example.com' to='trainset.example.com'> <describe xmlns='jabber:iq:joap' /> </iq>
The object server returns this response:
<iq type='result' id='joap_describe_1' from='trainset.example.com' to='Client@example.com'> <describe xmlns='jabber:iq:joap'> <desc xml:lang='en-US'> This server provides classes for managing a virtual remote train set. </desc> <attributeDescription writable='true'> <name>logLevel</name> <type>i4</type> <desc xml:lang='en-US'>Verbosity level for access logging.</desc> </attributeDescription> <methodDescription> <name>startLogging</name> <returnType>boolean</returnType> <desc xml:lang='en-US'>Start logging activity on this server. Returns true for success and false for an error.</desc> </methodDescription> <methodDescription> <name>stopLogging</name> <returnType>boolean</returnType> <desc xml:lang='en-US'>Stop logging activity on this server. Returns true for success and false for an error.</desc> </methodDescription> <class>Train@trainset.example.com</class> <class>Car@trainset.example.com</class> <class>Caboose@trainset.example.com</class> <class>Engine@trainset.example.com</class> <class>Boxcar@trainset.example.com</class> <class>PassengerCar@trainset.example.com</class> <class>Building@trainset.example.com</class> <class>TrackSegment@trainset.example.com</class> <class>Switch@trainset.example.com</class> <class>Station@trainset.example.com</class> <timestamp>2003-01-07T20:08:13Z</timestamp> </describe> </iq>
To describe the Car@trainset.example.com
class,
the JOAP client sends this stanza to the class for
boxcars.
<iq type='get' id='joap_describe_2' from='Client@example.com' to='Boxcar@trainset.example.com' > <describe xmlns='jabber:iq:joap' /> </iq>
The class returns this stanza to the JOAP client.
<iq type='result' id='joap_describe_2' from='Boxcar@trainset.example.com' to='Client@example.com'> <describe xmlns='jabber:iq:joap'> <desc xml:lang='en-US'> A Car in the trainset that can be used to ship cargo. </desc> <attributeDescription writable='false' required='true'> <name>trackingNumber</name> <type>i4</type> <desc xml:lang='en-US'>Tracking number for this car.</desc> </attributeDescription> <attributeDescription writable='true' required='true'> <name>contents</name> <type>string</type> <desc xml:lang='en-US'>Contents of the boxcar.</desc> </attributeDescription> <methodDescription allocation='class'> <name>nextTrackingNumber</name> <returnType>i4</returnType> <desc xml:lang='en-US'>The next available tracking number.</desc> </methodDescription> <superclass>Car@trainset.example.com</superclass> <timestamp>2003-01-07T20:08:13Z</timestamp> </describe> </iq>
To describe an instance, the JOAP client sends this stanza to a particular track segment.
<iq type='get' id='joap_describe_3' from='Client@example.com' to='TrackSegment@trainset.example.com/134' > <describe xmlns='jabber:iq:joap' /> </iq>
The instance returns this stanza to the JOAP client.
<iq type='result' from='TrackSegment@trainset.example.com/134' to='Client@example.com' id='joap_describe_3'> <describe xmlns='jabber:iq:joap'> <desc xml:lang='en-US'> A length of track in the trainset which can be connected to a previous and next length of track. </desc> <attributeDescription> <name>previous</name> <type>TrackSegment@trainset.example.com</type> <desc>Previous segment of track.</desc> </attributeDescription> <attributeDescription> <name>next</name> <type>TrackSegment@trainset.example.com</type> <desc>Next segment of track.</desc> </attributeDescription> <timestamp>2003-01-07T20:08:13Z</timestamp> </describe> </iq>
The <read> verb allows clients to retrieve the values of attributes of an object server, class, or instance. The client can specify which attributes to return; if no attributes are specified, then all attributes are returned. [8]
The <read> verb uses the "get" IQ type.
A timestamp, in ISO 8601 format, UTC, can be added to the results of a <read>. The timestamp indicates the last time any of an object's attribute values have changed (not just the requested ones). The timestamp can be used, for example, to implement object caching on the client side.
The following are some common error codes may be generated in response to a <read> verb.
This section gives some examples of using the <read> verb.
A client would send the following stanza to an instance to read its attributes:
<iq type='get' id='joap_read_1' from='Client@example.com' to='Station@trainset.example.com/Paddington'> <read xmlns='jabber:iq:joap' /> </iq>
In return, the instance would send this stanza to the client:
<iq type='result' id='joap_read_1' from='Station@trainset.example.com/Paddington' to='Client@example.com'> <read xmlns='jabber:iq:joap'> <attribute> <name>name</name> <value>Paddington Station</value> </attribute> <attribute> <name>size</name> <value> <struct> <member> <name>length</name> <value><i4>4</i4></value> </member> <member> <name>width</name> <value><i4>3</i4></value> </member> </struct> </value> </attribute> <attribute> <name>previous</name> <value>TrackSegment@trainset.example.com/334</value> </attribute> <attribute> <name>next</name> <value>TrackSegment@trainset.example.com/271</value> </attribute> </read> </iq>
To read only specified attributes of an instance, the client would send this stanza:
<iq type='get' id='joap_read_2' from='Client@example.com' to='Train@trainset.example.com/38'> <read xmlns='jabber:iq:joap'> <name>location</name> <name>cars</name> </read> </iq>
In return, the instance would send this stanza to the client:
<iq type='result' id='joap_read_2' from='Train@trainset.example.com/38' to='Client@example.com'> <read xmlns='jabber:iq:joap'> <attribute> <name>location</name> <value>Station@trainset.example.com/Paddington</value> </attribute> <attribute> <name>cars</name> <value> <array> <data> <value>Engine@trainset.example.com/14</value> <value>PassengerCar@trainset.example.com/112</value> <value>PassengerCar@trainset.example.com/309</value> <value>BoxCar@trainset.example.com/212</value> <value>Caboose@trainset.example.com/9</value> </data> </array> </value> </attribute> </read> </iq>
The <add> verb is used to create a new instance of a JOAP class. The verb is sent to the JOAP class, which returns the address of the newly-created instance.
Within each <add> verb the client must include attribute values for each required, writable attribute of the class.
The IQ is of type "set".
The following are some common error codes may be generated in response to an <add> verb.
To create a new PassengerCar, the client would send the following stanza to the PassengerCar class:
<iq type='set' id='joap_add_1' to='PassengerCar@trainset.example.com' from='Client@example.com'> <add xmlns='jabber:iq:joap'> <attribute> <name>passengers</name> <value><i4>38</i4></value> </attribute> </add> </iq>
The class would return the following response:
<iq type='result' id='joap_add_1' from='PassengerCar@trainset.example.com' to='Client@example.com'> <add xmlns='jabber:iq:joap'> <newAddress>PassengerCar@trainset.example.com/866</newAddress> </add> </iq>
Note that the class created a new instance identifier, 866, for the new instance. Further communications from the client would use the full instance address returned.
The <edit> verb is used to update the attributes of an object. The name and new value of each attribute that is to be updated is listed in the <edit> verb.
The IQ is of type "set".
Leaving a given attribute out of an <edit> verb does not indicate that the attribute should be set to an undefined or default value. The new values of attributes that are left out is implementation-dependent; in general, though, they should remain unchanged, if possible.
If the results of an <edit> verb have content, it will contain the new address of the instance that was updated. The new address should be used henceforth by the client. [9]
The following error codes may be generated in response to a <edit> verb.
To change the number of passengers in a PassengerCar, the client would send the following stanza to the instance:
<iq type='set' id='joap_edit_1' from='Client@example.com' to='PassengerCar@trainset.example.com/199'> <edit xmlns='jabber:iq:joap'> <attribute> <name>passengers</name> <value><i4>31</i4></value> </attribute> </edit> </iq>
The client would return the following stanza:
<iq type='result' id='joap_edit_1' to='Client@example.com' from='PassengerCar@trainset.example.com/199'> <edit xmlns='jabber:iq:joap' /> </iq>
If a client wanted to change the name of a Building, it would send the following stanza to the instance:
<iq type='set' id='joap_edit_2' from='Client@example.com' to='Building@trainset.example.com/JonesFamilyHome'> <edit xmlns='jabber:iq:joap'> <attribute> <name>name</name> <value>Smith Family Home</value> </attribute> </edit> </iq>
The results would be as follows:
<iq type='result' id='joap_edit_2' to='Client@example.com' from='Building@trainset.example.com/JonesFamilyHome'> <edit xmlns='jabber:iq:joap'> <newAddress>Building@trainset.example.com/SmithFamilyHome</newAddress> </edit> </iq>
Note that the instance indentifier, and thus the instance
address, of the instance has changed. The from
part
of the IQ, however, contains the old address.
The <delete> verb is used to delete an instance. The IQ is of type "set". The <delete> stanza has no sub-elements.
Only instances can be deleted. Classes and object servers cannot be deleted. After an instance is deleted, it is no longer addressable.
A given user may not be able to delete a particular instance.
The following error codes may be generated in response to a <delete> verb.
To delete an instance, a client would send the following stanza:
<iq type='set' id='joap_delete_1' from='Client@example.com' to='Building@trainset.example.com/Courthouse'> <delete xmlns='jabber:iq:joap' /> </iq>
The instance would return this stanza:
<iq type='result' id='joap_delete_1' to='Client@example.com' from='Building@trainset.example.com/Courthouse'> <delete xmlns='jabber:iq:joap' /> </iq>
If the user is not authorized to delete the instance, it would return this error:
<iq type='error' id='joap_delete_1' to='Client@example.com' from='Building@trainset.example.com/Courthouse'> <delete xmlns='jabber:iq:joap' /> <error code='403'> You are not authorized to delete this instance. </error> </iq>
The <search> verb allows rudimentary searching and listing of instances in a class. The IQ is of type "get".
The client sends a <search> verb to the class, specifying the attributes that are search criteria and values to search for. The class returns a list of the addresses of matching instances.
Multiple attributes are logically AND'd; that is, resulting instances must match all of the attribute values.
How attribute values are specified for matching depends on the type of the attribute.
Classes should return all instances of the class that are on the same object server (that is, which have the same domain identifier in their address) and that match the search criteria. This includes instances of subclasses of the class.
Whether a class returns instances of subclasses that reside on other object servers is implementation-dependent. [10]
Classes cannot be searched on attributes that are defined
only in subclasses; for example, a search for the attribute
"contents" sent to the
Car@trainset.example.com
class should result in a
406 (Not Acceptable)
error.
The semantics of an empty <search> verb is to request all instances of a class. This provides a listing or browsing functionality.
The following error codes may be generated in response to a <search> verb.
To search for Boxcar instances carrying coal, the client would send the following stanza to the Boxcar class:
<iq type='get' id='joap_search_1' from='Client@example.com' to='Boxcar@trainset.example.com'> <search xmlns='jabber:iq:joap'> <attribute> <name>contents</name> <value><string>coal</string></value> </attribute> </search> </iq>
The Boxcar class would return a list of all matching instances:
<iq type='result' id='joap_search_1' from='Boxcar@trainset.example.com' to='Client@example.com'> <search xmlns='jabber:iq:joap'> <item>Boxcar@trainset.example.com/195</item> <item>Boxcar@trainset.example.com/35</item> <item>Boxcar@trainset.example.com/681</item> </search> </iq>
To get a list of all Building instances, the client would send an empty <search> verb, as follows:
<iq type='get' id='joap_search_2' from='Client@example.com' to='Building@trainset.example.com'> <search xmlns='jabber:iq:joap' /> </iq>
The Building class would return the following stanza:
<iq type='result' id='joap_search_2' from='Building@trainset.example.com' to='Client@example.com'> <search xmlns='jabber:iq:joap'> <item>Building@trainset.example.com/Courthouse</item> <item>Station@trainset.example.com/Paddington</item> <item>Station@trainset.example.com/GareDeLyon</item> <item>Building@trainset.example.com/SmithFamilyHome</item> </search> </iq>
Note that the class returns instances of subclasses, as well as direct instances of the class.
Method calls in JOAP are simply XML-RPC calls, as defined in XEP-0009. [11] To call a method on an object, the client simply sends an XML-RPC message to that object. Method calls must match the parameters as defined in the method definition returned by the <describe> verb.
Method names must be the exact method name as returned by <describe>. No class or instance identifier prefix (with "." or ":") is used.
Note, also, that the addressee of the method call, that is, the object that defines the method, is not specified as a parameter of the method, as it is in some programming languages. The addressee of the method is implicit in the address to which the method was sent.
To start the event log on the train set server, the client would send the following stanza:
<iq type='set' id='joap_xmlrpc_1' from='Client@example.com' to='trainset.example.com'> <query xmlns='jabber:iq:rpc'> <methodCall> <methodName>startLogging</methodName> </methodCall> </query> </iq>
The object server would respond with the following results:
<iq type='result' id='joap_xmlrpc_1' to='Client@example.com' from='trainset.example.com'> <query xmlns='jabber:iq:rpc'> <methodResponse> <params> <param> <value><boolean>1</boolean></value> </param> </params> </methodResponse> </query> </iq>
To retrieve the next available Car tracking number, the client would send the following stanza to the Car class:
<iq type='set' id='joap_xmlrpc_2' from='Client@example.com' to='Car@trainset.example.com'> <query xmlns='jabber:iq:rpc'> <methodCall> <methodName>nextTrackingNumber</methodName> </methodCall> </query> </iq>
The class would respond with the following results:
<iq type='result' id='joap_xmlrpc_2' to='Client@example.com' from='Car@trainset.example.com'> <query xmlns='jabber:iq:rpc'> <methodResponse> <params> <param> <value><i4>909</i4></value> </param> </params> </methodResponse> </query> </iq>
To make a Switch change to a different track segment, the client would send the following stanza to the instance:
<iq type='set' id='joap_xmlrpc_3' from='Client@example.com' to='Switch@trainset.example.com/981'> <query xmlns='jabber:iq:rpc'> <methodCall> <methodName>switchTo</methodName> <params> <param> <value>TrackSegment@trainset.example.com/119</value> </param> </params> </methodCall> </query> </iq>
The instance would respond with the following results:
<iq type='result' id='joap_xmlrpc_3' from='Switch@trainset.example.com/981' to='Client@example.com'> <query xmlns='jabber:iq:rpc'> <methodResponse> <params> <param> <value><boolean>1</boolean></value> </param> </params> </methodResponse> </query> </iq>
A simple application server can be provided using JOAP. This is merely the degenerate case of an object server that provides only methods and attributes, with no classes.
A more complex example would be an interface to a relational database server, such as Oracle, PostgreSQL, or mySQL. The object server would represent a single database within the database server. Each table in the database would be represented by a class with no class attributes or methods. Each row in the database would be an instance of its table's class, with attributes but no methods.
A distributed n-tier application can be built fairly directly with JOAP. N-tier applications are usually defined as having three main segments:
With JOAP, application developers can create the last two segments with a JOAP interface. User-interface clients can use JOAP to access and manipulate the business objects in a business object server. In turn, the business objects can use JOAP to manipulate underlying database objects in the data storage layer (perhaps implemented using a relational database interface, as defined above).
Jabber protocols typically define a base set of functionality for a component to provide. Implementers often want to provide specialized, fine-grained control of the component that is not part of the core functionality of a component. For example, the implementer may wish to allow administrators to get metrics on a component, enable or review logs, note error situations, or configure the component remotely. [12]
A component can provide an additional JOAP interface, along with its regular protocol-specific interface, to enable this kind of control functionality. Implementers can in this way provide implementation-specific functionality in an open way.
For example, if conference.example.com
is
a MUC component, control.conference.example.com
might
be a JOAP component with access to the internal data
structures of the MUC component. A conference room addressed
in the MUC component as
ModelTrains@conference.example.com
might be addressed
in the JOAP component as
Room@control.conference.example.com/ModelTrains
.
There are a number of existing distributed object systems, such as SOAP, CORBA, distributed OLE, Enterprise Java Beans, etc.
It would be reasonable to create gateways for these object systems or object servers implementing their protocols using JOAP. JOAP could also be used to allow disparate object systems to communicate through a common protocol.
To follow.
This section describes some security considerations for implementers of JOAP.
No provision is made for authentication of users to the object server. Jabber users authenticate to a login server before they are able to send any Jabber stanzas.
Authorization for users to access and manipulate objects and attributes in JOAP is fine-grained; object servers can return error codes to indicate a lack of authorization for any given attribute, object, or method.
No provision is made to define a user's authorization for an object, attribute, or method. Implicit authorization is outlined with the results of the <describe> verb.
No provision is made in the JOAP protocol for providing privacy and confidentiality in JOAP conversations. This is left up to existing, more general Jabber protocols and extensions.
Confidentiality from external, non-Jabber observers can be obtained using transport-layer security (TLS) in all legs of the Jabber path -- from client to server to (potentially) another server to the object server component.
Maintaining confidentiality against observers in the Jabber pathway -- for example, servers relaying JOAP stanzas -- requires using end-to-end encryption.
Due to the nature of the JOAP addressing scheme, however,
perfect confidentiality cannot be preserved. Even if the
contents of an IQ packet are encrypted, the address of the
object the packet is sent to -- e.g.,
Tips@whistleblower.example.org/NuclearRegulatoryInfractions
-- will reveal some information about the JOAP
conversation which could be harmful to the user.
This document requires no interaction with the IANA.
This protocol defines one new namespace, 'jabber:iq:joap'.
Experimental implementations of this protocol should use the
namespace 'http://www.xmpp.org/extensions/xep-0075.html#0.3
' to
avoid conflicts with future versions.
struct
and array
attributes and
parameters are described just with the "struct" and
"array" types, and no definition is given of their
parts' types, names, or semantics. It may be valuable to
expand JOAP type descriptions to also describe the members of
a struct
or array
.The following glossary collects some definitions of terms used in this document.
Train@trainset.example.com/OrangeBlossomSpecial
.Train@trainset.example.com/OrangeBlossomSpecial
, the
instance identifier is OrangeBlossomSpecial
.Switch@trainset.example.com
.Switch@trainset.example.com
, the class identifier is
Switch
The following is an XML Schema for JOAP.
<?xml version='1.0' encoding='UTF-8'?> <schema xmlns='http://www.w3.org/2001/XMLSchema' xmlns:joap='jabber:iq:joap' targetNamespace='jabber:iq:joap' elementFormDefault='qualified' attributeFormDefault='unqualified'> <element name='describe'> <complexType> <choice> <group ref='joap:DescribeRequest' /> <group ref='joap:DescribeResponse' /> </choice> </complexType> </element> <element name='read'> <complexType> <choice> <group ref='joap:ReadRequest' /> <group ref='joap:ReadResponse' /> </choice> </complexType> </element> <element name='edit'> <complexType> <choice> <group ref='joap:EditRequest' /> <group ref='joap:EditResponse' /> </choice> </complexType> </element> <element name='add'> <complexType> <choice> <group ref='joap:AddRequest' /> <group ref='joap:AddResponse' /> </choice> </complexType> </element> <element name='delete'> <complexType> <choice> <group ref='joap:DeleteRequest' /> <group ref='joap:DeleteResponse' /> </choice> </complexType> </element> <element name='search'> <complexType> <choice> <group ref='joap:SearchRequest' /> <group ref='joap:SearchResponse' /> </choice> </complexType> </element> <group name='DescribeRequest'> <sequence /> <!-- empty --> </group> <group name='DescribeResponse'> <sequence> <element name='desc' type='joap:Description' minOccurs='0' maxOccurs='unbounded' /> <element name='attributeDescription' type='joap:AttributeDescription' minOccurs='0' maxOccurs='unbounded' /> <element name='methodDescription' type='joap:MethodDescription' minOccurs='0' maxOccurs='unbounded' /> <choice> <element name='superclass' type='joap:ClassAddress' minOccurs='0' maxOccurs='unbounded' /> <element name='class' type='joap:ClassAddress' minOccurs='0' maxOccurs='unbounded' /> </choice> <element name='timestamp' type='joap:Timestamp' minOccurs='0' maxOccurs='1' /> </sequence> </group> <group name='ReadRequest'> <sequence> <element name='name' type='joap:JOAPName' minOccurs='0' maxOccurs='unbounded' /> </sequence> </group> <group name='ReadResponse'> <sequence> <element name='attribute' type='joap:Attribute' minOccurs='0' maxOccurs='unbounded' /> <element name='timestamp' type='joap:Timestamp' minOccurs='0' maxOccurs='1' /> </sequence> </group> <group name='EditRequest'> <sequence> <element name='attribute' type='joap:Attribute' minOccurs='0' maxOccurs='unbounded' /> </sequence> </group> <group name='EditResponse'> <sequence> <element name='newAddress' type='joap:InstanceAddress' minOccurs='0' maxOccurs='1' /> </sequence> </group> <group name='AddRequest'> <sequence> <element name='attribute' type='joap:Attribute' minOccurs='0' maxOccurs='unbounded' /> </sequence> </group> <group name='AddResponse'> <sequence> <element name='newAddress' type='joap:InstanceAddress' minOccurs='1' maxOccurs='1' /> </sequence> </group> <group name='DeleteRequest'> <sequence /> <!-- empty --> </group> <group name='DeleteResponse'> <sequence /> <!-- empty --> </group> <group name='SearchRequest'> <sequence> <element name='attribute' type='joap:Attribute' minOccurs='0' maxOccurs='unbounded' /> </sequence> </group> <group name='SearchResponse'> <sequence> <element name='item' type='joap:InstanceAddress' minOccurs='0' maxOccurs='unbounded' /> </sequence> </group> <complexType name='Attribute'> <sequence> <element name='name' type='joap:JOAPName' minOccurs='1' maxOccurs='1' /> <element name='value' type='joap:JOAPValue' minOccurs='1' maxOccurs='1' /> </sequence> </complexType> <complexType name='AttributeDescription'> <!-- XXX: enforce name rules --> <sequence> <element name='name' type='joap:JOAPName' minOccurs='1' maxOccurs='1' /> <element name='type' type='joap:JOAPType' minOccurs='1' maxOccurs='1' /> <element name='desc' type='joap:Description' minOccurs='0' maxOccurs='unbounded' /> </sequence> <attribute name='required' type='boolean' default='false' /> <attribute name='writable' type='boolean' default='false' /> <attribute name='allocation' type='joap:Allocation' /> </complexType> <complexType name='MethodDescription'> <sequence> <element name='name' type='joap:JOAPName' minOccurs='1' maxOccurs='1' /> <element name='returnType' type='joap:JOAPType' minOccurs='1' maxOccurs='1'/> <element name='params' minOccurs='0' maxOccurs='1'> <complexType> <sequence> <element name='param' minOccurs='0' maxOccurs='unbounded' > <complexType> <sequence> <element name='name' type='joap:JOAPName' minOccurs='1' maxOccurs='1' /> <element name='type' type='joap:JOAPType' minOccurs='1' maxOccurs='1' /> <element name='desc' type='joap:Description' minOccurs='0' maxOccurs='unbounded' /> </sequence> </complexType> </element> </sequence> </complexType> </element> <element name='desc' type='joap:Description' minOccurs='0' maxOccurs='unbounded' /> </sequence> <attribute name='allocation' type='joap:Allocation' /> </complexType> <simpleType name='ClassAddress'> <restriction base='string'> <pattern value='[^@]+@[a-zA-Z0-9\.]+' /> </restriction> </simpleType> <simpleType name='InstanceAddress'> <restriction base='string'> <pattern value='[^@]+@[a-zA-Z0-9\.]+/.+' /> </restriction> </simpleType> <simpleType name='XMLRPCType'> <restriction base='string'> <enumeration value='int' /> <enumeration value='i4' /> <enumeration value='double' /> <enumeration value='boolean' /> <enumeration value='string' /> <enumeration value='array' /> <enumeration value='struct' /> </restriction> </simpleType> <simpleType name='JOAPType'> <union memberTypes='ClassAddress XMLRPCType' /> </simpleType> <simpleType name='JOAPName'> <restriction base='string'> <pattern value='[a-zA-Z_][0-9a-zA-Z_]*'/> </restriction> </simpleType> <simpleType name='Boolean'> <restriction base='unsignedByte'> <enumeration value='0' /> <enumeration value='1' /> </restriction> </simpleType> <!-- FIXME: figure out how to do this without using mixed content, which allows stuff we don't want. --> <complexType name='JOAPValue' mixed='true'> <choice minOccurs='0'> <element name='i4' type='integer' /> <element name='int' type='integer' /> <element name='boolean' type='joap:Boolean' /> <element name='string' type='string' /> <element name='double' type='decimal' /> <element name='datetime.iso8601' type='dateTime' /> <element name='base64' type='base64Binary' /> <element name='struct' type='joap:XMLRPCStruct' /> <element name='array' type='joap:XMLRPCArray' /> </choice> </complexType> <complexType name='XMLRPCStruct'> <sequence> <element name='member' minOccurs='1' maxOccurs='unbounded'> <complexType> <sequence> <element name='name' minOccurs='1' maxOccurs='1' type='string' /> <element name='value' minOccurs='1' maxOccurs='1' type='joap:JOAPValue' /> </sequence> </complexType> </element> </sequence> </complexType> <complexType name='XMLRPCArray'> <sequence> <element name='data' minOccurs='1' maxOccurs='1'> <complexType> <sequence> <element name='value' type='joap:JOAPValue' minOccurs='0' maxOccurs='unbounded' /> </sequence> </complexType> </element> </sequence> </complexType> <simpleType name='Allocation'> <restriction base='string'> <enumeration value='instance' /> <enumeration value='class' /> </restriction> </simpleType> <simpleType name='Description'> <restriction base='string' /> </simpleType> <simpleType name='Timestamp'> <restriction base='dateTime' /> </simpleType> </schema>
The following is a document-type description (DTD) for JOAP.
<!ELEMENT name (#PCDATA)> <!ELEMENT type (#PCDATA)> <!ELEMENT desc (#PCDATA)> <!ATTLIST desc xml:lang NMTOKEN #IMPLIED> <!ELEMENT i4 (#PCDATA)> <!ELEMENT int (#PCDATA)> <!ELEMENT string (#PCDATA)> <!ELEMENT double (#PCDATA)> <!ELEMENT datetime.iso8601 (#PCDATA)> <!ELEMENT base64 (#PCDATA)> <!ELEMENT class (#PCDATA)> <!ELEMENT superclass (#PCDATA)> <!ELEMENT item (#PCDATA)> <!ELEMENT returnType (#PCDATA)> <!ELEMENT member (name, value)> <!ELEMENT struct (member+)> <!ELEMENT data (value+)> <!ELEMENT array (data)> <!ELEMENT value (#PCDATA|i4|int|string|double|datetime.iso8601|base64|struct|array)*> <!ELEMENT attribute (name, value)> <!ELEMENT timestamp (#PCDATA)> <!ELEMENT newAddress (#PCDATA)> <!ELEMENT attributeDescription (name, type, desc*)> <!ATTLIST attributeDescription required (true|false|0|1) "false" writable (true|false|0|1) "false" allocation (class|instance) "instance"> <!ELEMENT params (param+)> <!ELEMENT param (name, type, desc*)> <!ELEMENT methodDescription (name, returnType, params?, desc*)> <!ATTLIST methodDescription allocation (class|instance) "instance"> <!ELEMENT describe (desc*, attributeDescription*, methodDescription*, (class*|superclass*), timestamp?)> <!ELEMENT read (name*|(attribute*, timestamp?))> <!ELEMENT edit (attribute*|newAddress?)> <!ELEMENT add (attribute*|newAddress)> <!ELEMENT search (attribute*|item*)> <!ELEMENT delete EMPTY>
Because JOAP requires some significant examples to define the protocol, an example domain was developed to provide consistency. Readers familiar with UML may find the following diagram useful to illustrate some of the fine points of JOAP listed above.
Train: number: i4 name: string location: TrackSegment cars: Car[] void forward() void back() void insertCar(Car car, Car before) Car: trackingNumber: i4 i4 nextTrackingNumber() {class} Caboose: Car Engine: Car canPull: i4 Boxcar: Car contents: string PassengerCar: Car passengers: i4 Building: name: string size: struct (length: i4, width: i4) TrackSegment: previous: TrackSegment next: TrackSegment Switch: in: TrackSegment out: TrackSegment[] boolean switchTo(TrackSegment) Station: TrackSegment, Building
This document in other formats: XML PDF
This XMPP Extension Protocol is copyright © 1999 – 2024 by the XMPP Standards Foundation (XSF).
Permission is hereby granted, free of charge, to any person obtaining a copy of this specification (the "Specification"), to make use of the Specification without restriction, including without limitation the rights to implement the Specification in a software program, deploy the Specification in a network service, and copy, modify, merge, publish, translate, distribute, sublicense, or sell copies of the Specification, and to permit persons to whom the Specification is furnished to do so, subject to the condition that the foregoing copyright notice and this permission notice shall be included in all copies or substantial portions of the Specification. Unless separate permission is granted, modified works that are redistributed shall not contain misleading information regarding the authors, title, number, or publisher of the Specification, and shall not claim endorsement of the modified works by the authors, any organization or project to which the authors belong, or the XMPP Standards Foundation.
## NOTE WELL: This Specification is provided on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. ##
In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall the XMPP Standards Foundation or any author of this Specification be liable for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising from, out of, or in connection with the Specification or the implementation, deployment, or other use of the Specification (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if the XMPP Standards Foundation or such author has been advised of the possibility of such damages.
This XMPP Extension Protocol has been contributed in full conformance with the XSF's Intellectual Property Rights Policy (a copy of which can be found at <https://xmpp.org/about/xsf/ipr-policy> or obtained by writing to XMPP Standards Foundation, P.O. Box 787, Parker, CO 80134 USA).
The HTML representation (you are looking at) is maintained by the XSF. It is based on the YAML CSS Framework, which is licensed under the terms of the CC-BY-SA 2.0 license.
The Extensible Messaging and Presence Protocol (XMPP) is defined in the XMPP Core (RFC 6120) and XMPP IM (RFC 6121) specifications contributed by the XMPP Standards Foundation to the Internet Standards Process, which is managed by the Internet Engineering Task Force in accordance with RFC 2026. Any protocol defined in this document has been developed outside the Internet Standards Process and is to be understood as an extension to XMPP rather than as an evolution, development, or modification of XMPP itself.
The primary venue for discussion of XMPP Extension Protocols is the <standards@xmpp.org> discussion list.
Discussion on other xmpp.org discussion lists might also be appropriate; see <https://xmpp.org/community/> for a complete list.
Errata can be sent to <editor@xmpp.org>.
The following requirements keywords as used in this document are to be interpreted as described in RFC 2119: "MUST", "SHALL", "REQUIRED"; "MUST NOT", "SHALL NOT"; "SHOULD", "RECOMMENDED"; "SHOULD NOT", "NOT RECOMMENDED"; "MAY", "OPTIONAL".
1. XEP-0009: Jabber-RPC <https://xmpp.org/extensions/xep-0009.html>.
2. This requirement is intended to allow easy mapping of attributes in JOAP to attributes of objects in client programming languages. The restriction is the lowest common denominator for variable names in most modern programming languages.
3. XML-RPC <http://www.xmlrpc.com/spec>.
4. This is to avoid conceptual mismatch in programming languages where the other three characters allowed by XML-RPC, namely ".", ":", and "/", are used to separate class or instance names from methods.
5. Implementers can determine if a specified type is valid by checking it against a list of the XML-RPC types. If it does not match, it should be checked to see if matches the syntax for a class address (node identifier plus domain identifier). Otherwise, it is not a valid type.
6. Flattening the class interface reduces the need for making multiple "describe" verb calls just to find the interface for one class.
7. All extended examples in this document refer to a particular object domain, based on a fictional model train set. A UML description of the object domain is available in Appendix D.
8. This allows clients to cheaply retrieve meta-information about an instance that may have exceptionally large data, such as bin64-encoded file data.
9. This is to allow updates that alter the unique key or attribute of an instance that determine its instance identifier.
10. This caveat is to allow different types of subclassing policies. Classes that define a well-known, standard interface -- for example, a class defined by a standards organization -- would probably not be "aware" of all instances of that class. However, it is conceivable to have a multi-tier business application where the object servers did know about other servers, their classes, and their instances.
11. XEP-0009 leaves some open questions as to use of widely-defined extensions to the XML-RPC standard, such as the <nil> type.
12. Most Jabber components currently define Web interfaces, or command-line scripts, to perform this kind of control.
Note: Older versions of this specification might be available at https://xmpp.org/extensions/attic/
@report{prodromou2003n/a, title = {Jabber Object Access Protocol (JOAP)}, author = {Prodromou, Evan}, type = {XEP}, number = {0075}, version = {0.3}, institution = {XMPP Standards Foundation}, url = {https://xmpp.org/extensions/xep-0075.html}, date = {2003-01-28/2003-05-22}, }
END