Skip to content
Snippets Groups Projects
Commit 7cacab5d authored by Thorsten Vitt's avatar Thorsten Vitt
Browse files

Fixed sessionId parameter name for the image URLs.

TG-crud uses sessionId, while TG-search (and the aggregator) uses sid
...

git-svn-id: https://develop.sub.uni-goettingen.de/repos/textgrid/trunk/services/aggregator@13859 7c539038-3410-0410-b1ec-0f2a7bf1c452
parent 60c356b9
No related branches found
No related tags found
No related merge requests found
...@@ -111,7 +111,7 @@ public StreamingOutput get(@PathParam("object") final URI uri, ...@@ -111,7 +111,7 @@ public StreamingOutput get(@PathParam("object") final URI uri,
new XdmAtomicValue(repository.getCRUDRestEndpoint() new XdmAtomicValue(repository.getCRUDRestEndpoint()
+ "/@URI@/data" + "/@URI@/data"
+ ((sid == null || "".equals(sid)) ? "" + ((sid == null || "".equals(sid)) ? ""
: ("?sid=" + sid)))); : ("?sessionId=" + sid))));
if (css != null) { if (css != null) {
transformer.setParameter(new QName("cssFile"), new XdmAtomicValue(css)); transformer.setParameter(new QName("cssFile"), new XdmAtomicValue(css));
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment