Hi,
I have a
java servlet url which is shared with soem thirdparty, my servlet url is
http://<mydomain>/calback
Thirdparty is passing information to my servlet in below format
http://<mydomain>/calback#data=<data i need to read from this request>
Can someone advice how can i read this data being received after # in the invoked url
tried getAttributes(), getPathInfo(), getParameterNames(), getRequestURI() and getRequestURL() but none of them is returning me data passed to me url after #
Kindly advice how can i sortout this issue and read required data?