Hi,
it may sound strange, but is it possible to get somehow the Http request especially the GET parameters from a web-app ?
Thanks
Gabor
Hi,
it may sound strange, but is it possible to get somehow the Http request especially the GET parameters from a web-app ?
Thanks
Gabor
In the meantime I have found
http://localhost:8080/app/open?screen=app$screenName\¶ms=param1:paramValue1,param2:paramValue1,...
which solves my problem
We recommend using LinkHandler mechanism described here: Screen Links - CUBA Platform. Developer’s Manual
Also if you want to implement custom behaviour for different get params you can either implement additional http servlet filter or extend CubaApplicationServlet and use your own inheritor in web.xml. In your servlet implementation you can override service method and perform additional URL operations there.
Hi Yuriy,
this is very useful, thank you!
I will look into this soon.
Gabor