Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

...

e.g. here is a url where the content type is the same as request or what is configured in grouper-ws.properties: http://localhost/grouper-ws/servicesLite/v3_0_000/group/a:bImage Removed

e.g. here is a url where the request is an http param request, and the configured response content type is xhtml, but the client wants xml: http://localhost/grouper-ws/servicesLite/*xml*/v3_0_000/group/a:b?includeGroupDetail=TImage Removed

Guidelines

When working with the XHTML, please prepare for upgrades on the server.  e.g. when parsing assume there might be different types of elements, new attributes, etc.  If there is something not expected, then probably ignore it (unless something is badly malformed or something).  Assume that things will be added to the service, and not changed or removed (unless there is a drastic upgrade).  Also, the XML/XHTML/JSON is not indented, though this shouldnt matter.  The XHTML should be valid based on the strict doctype (can validate from validator.w3.org).  The XML and JSON should obviously be valid

...