Difference between revisions of "Xebra Taglib XRPC"

(New page: Category:Xebra About | Installation | Documentation | Tutorials | [[Xebra FAQ|Frequently Asked Quest...)
 
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
[[Category:Xebra]]
 
[[Category:Xebra]]
 
[[Xebra About|About]] | [[Xebra Installation|Installation]] |  [[Xebra Documentation|Documentation]] |  [[Xebra Tutorial|Tutorials]] | [[Xebra FAQ|Frequently Asked Questions]]
 
[[Xebra About|About]] | [[Xebra Installation|Installation]] |  [[Xebra Documentation|Documentation]] |  [[Xebra Tutorial|Tutorials]] | [[Xebra FAQ|Frequently Asked Questions]]
 +
 +
The XRPC Tag Library is used for rpc applications and configures an rpc interface.
 +
===XRPC===
 +
{| class="wikitable"
 +
! Tag
 +
! Description
 +
|-
 +
|
 +
<xml>
 +
<xrpc:api class="..." namespace="...">
 +
</xrpc:api>
 +
</xml>
 +
|
 +
Basic configuration of the service. The class is the class which provides the procedures and the namespace is the namespace of the procedures.
 +
|-
 +
|
 +
<xml>
 +
<xrpc:method id="..." />
 +
</xml>
 +
|
 +
A method of the service. This procedure will be available from the service.
 +
|-
 +
|}
 +
====Example====
 +
For examples see [[Xebra_XML_RPC]]

Latest revision as of 12:45, 17 July 2009

About | Installation | Documentation | Tutorials | Frequently Asked Questions

The XRPC Tag Library is used for rpc applications and configures an rpc interface.

XRPC

Tag Description
<xrpc:api class="..." namespace="...">
</xrpc:api>

Basic configuration of the service. The class is the class which provides the procedures and the namespace is the namespace of the procedures.

<xrpc:method id="..." />

A method of the service. This procedure will be available from the service.

Example

For examples see Xebra_XML_RPC