Differences between revisions 9 and 10
Revision 9 as of 2008-04-09 17:13:38
Size: 2430
Editor: 69-84-116-053-dhcp
Comment: Web Services don't need to be xml based.
Revision 10 as of 2008-04-09 17:15:00
Size: 2432
Editor: 69-84-116-053-dhcp
Comment:
Deletions are marked like this. Additions are marked like this.
Line 9: Line 9:
* [http://json-rpc.org/wiki/python-json-rpc] The specification website includes a python implementation.  * [http://json-rpc.org/wiki/python-json-rpc] The specification website includes a Python implementation.
Line 11: Line 11:
* [http://pypi.python.org/pypi/JsonUtils/ JsonUtils] is another library that supports JSON-RPC.  * [http://pypi.python.org/pypi/JsonUtils/ JsonUtils] is another library that supports JSON-RPC.

Web Services

Web services can be generally regarded as functions or functionality of applications or systems exposed over the Web using standardised message formats and typically interfaced to other software using traditional APIs, although "message-centric" usage of such services is also possible and may be favoured by certain technologies.

JSON-RPC

[http://json-rpc.org/ JSON-RPC] is an increasingly popular Web Services specification that uses the light-weight [http://json.org/ JSON] (JavaScript Object Notation) data-interchange format (in comparison to the tools listed below, which all use XML). JSON-RPC was created in 2004 and implementations exist in JavaScript, Java, PHP and Perl (among other languages) in addition to Python.

SOAP

["SOAP"] is a Web services technology favoured in certain environments. The following projects seek to support SOAP and related technologies such as WSDL:

XML-RPC

The first popular and largely standardised Web services technology was [wiki:XmlRpc XML-RPC], supported in Python by the following libraries:

  • xmlrpclib - found in the standard library

XMPP

More in common with the message-centric usage of ["SOAP"], [http://www.xmpp.org/ XMPP] - an Internet standard which provides the foundation for the Jabber instant messaging technology - could be used as a Web services protocol. See ["PythonXml"] for details of suitable projects.

Editorial Note

The above lists should be arranged in ascending alphabetical order - please respect this when adding new solutions. When specifying release dates please use the format YYYY-MM-DD.

WebServices (last edited 2020-04-14 19:32:51 by HansNordhaug)

Unable to edit the page? See the FrontPage for instructions.