I've developed a web applicaton that sits inside another web application (that is not mine and is hosted on a different server than mine)
I want to pass the user details from one to the other. How can i do this?
The application with the user details (the parent application in which my application is displayed) is built using java and java servlets
and my application is built using javascript mainly.
I can not touch the parent application as far as editting the code but it know it handles these detaisl with request paramaters and then session.
I can use javascript, jsp, or jquery to do this (if possible)
appA.domain.comand your app is hosted atyourapp.domain.com. AppA integrates with your application on the client side, e.g. it provides a link toyourappor it calls certain services onyourappby using Ajax technology. IfappAcalls your application you want to pass certain user attributes toyourapp. Is that correct? – home Jul 14 '11 at 13:05