Session: when you want to share your data in your whole application. like user_id. Request: its just use for forward and recieve the data between webpages but its data just shareable for next and last hit webpages.. not like session.
Originally posted by Saif uddin: Session: when you want to share your data in your whole application. like user_id.
Nope.
Session: The information is available throughout the session till session is invalidated
Request: The information is available just for that particular request cycle after that that particular request is disposed off
Adeel Ansari
Ranch Hand
Joined: Aug 15, 2004
Posts: 2874
posted
0
Originally posted by vijayk gopu: What is the best way of sharing data between web apps request or session or application?
These scopes would not be available out of the context. Or you can use some stateful beans. Indeed, you can send some data using request parameters.
Other options are already mentioned.
leonardo battagli
Ranch Hand
Joined: Aug 28, 2003
Posts: 33
posted
0
Originally posted by Adeel Ansari:
These scopes would not be available out of the context. Or you can use some stateful beans. Indeed, you can send some data using request parameters.
Other options are already mentioned.
Ok, btw HttpSession API confirm this "Session information is scoped only to the current web application (ServletContext), so information stored in one context will not be directly visible in another."
but what that 'directly' means? which are the not-so direct way to access to session info from a different web context?
Rahul Bhattacharjee
Ranch Hand
Joined: Nov 29, 2005
Posts: 2300
posted
0
You can try this , but would not recomend this.
Write a singleton repository , which can store key , value pairs and then place those classes in shared/classes , so that this is visible to all the web applcations.
Originally posted by Rahul Bhattacharjee: You can try this , but would not recomend this.
Write a singleton repository , which can store key , value pairs and then place those classes in shared/classes , so that this is visible to all the web applcations.
what does that 'singleton repository' means?
It means, create an object with the singleton pattern and store it in shared/classes of the ear, so that both application can access it?
Jeroen T Wenting
Ranch Hand
Joined: Apr 21, 2006
Posts: 1847
posted
0
simple: do NOT do this. If you need to send data from one web app to another store it in a database used by both or send http requests to servlets back and forth.
Do NOT attempt to write some class, instances of which you hope will be available to both applications. It's not going to work, and even if you think it does it's not at all scalable and extremely poor design.
42
Adeel Ansari
Ranch Hand
Joined: Aug 15, 2004
Posts: 2874
posted
0
You can choose, the most suitable one for you, from the list given by Ulf.