This is an automated email from the ASF dual-hosted git repository. dgriffon pushed a commit to branch UNOMI-449-use-rest-endpoints-1.5.x in repository https://gitbox.apache.org/repos/asf/unomi.git
commit 83860e1101b41d42edd6d2bb8d88edab24d0856e Author: David Griffon <[email protected]> AuthorDate: Mon Apr 12 15:33:27 2021 +0200 [UNOMI-449] Use new endpoints internally (mostly in tests and documentation) --- manual/src/main/asciidoc/new-data-model.adoc | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/manual/src/main/asciidoc/new-data-model.adoc b/manual/src/main/asciidoc/new-data-model.adoc index 0b98dfd..6c490dd 100644 --- a/manual/src/main/asciidoc/new-data-model.adoc +++ b/manual/src/main/asciidoc/new-data-model.adoc @@ -109,4 +109,21 @@ Note that it is also possible to change the index prefix to be different from th so that you could host multiple Apache Unomi instances on the same ElasticSearch cluster. Important note: only the data that Apache Unomi manages will be migrate. If you have any other data (for example Kibana -or ElasticSearch monitoring indices) they will not be migrated by this migration tool. \ No newline at end of file +or ElasticSearch monitoring indices) they will not be migrated by this migration tool. + +=== Important changes in public servlets since version 1.5.5 +What used to be dedicated servlets are now part of the REST endpoints. +Prior to version 1.5.5 the following servlets were used: + +* /context.js /context.json +* /eventcollector +* /client + +In version 1.5.5 and later you have to use the new `cxs` REST endpoints: + +* /cxs/context.js /cxs/context.json +* /cxs/eventcollector +* /cxs/client + +The old servlets have been deprecated and will be removed in a future major version, so make sure +to update your client applications.
