Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Texo/XML REST Web Services"

Line 3: Line 3:
 
== Introduction ==
 
== Introduction ==
  
TO BE DONE
+
The XML REST web services follow the same structure and approach as the [[Texo/JSON_REST_Web_Services|JSON REST web services]]. The documentation in that page also applies to the XML REST webservice layer, with the following remarks:
 +
* for the URL: in the JSON examples the url has a 'jsonws', for xml web services this should be replaced with 'xmlws'
 +
* XML web services expect XML in the request body (when posting/putting)
 +
* XML web services will return XML according to the ecore/XML schema as defined by the response schema (see JSON REST documentation)
  
== Response XML Schema ==
+
Most/all of [[Texo/JSON_REST_Web_Services|the JSON REST web services documentation]] applies to the XML REST web services. Therefore this page only contains some examples of posting and receiving XML.
 
+
== Test Tools ==
+
 
+
== Insert/Update Operation ==
+
 
+
== Retrieve - Individual - Paging ==
+
 
+
== Delete Operation ==
+

Revision as of 15:48, 4 April 2012

Contents

Introduction

The XML REST web services follow the same structure and approach as the JSON REST web services. The documentation in that page also applies to the XML REST webservice layer, with the following remarks:

  • for the URL: in the JSON examples the url has a 'jsonws', for xml web services this should be replaced with 'xmlws'
  • XML web services expect XML in the request body (when posting/putting)
  • XML web services will return XML according to the ecore/XML schema as defined by the response schema (see JSON REST documentation)

Most/all of the JSON REST web services documentation applies to the XML REST web services. Therefore this page only contains some examples of posting and receiving XML.

Back to the top