• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Context

 
Ranch Hand
Posts: 68
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How to share a context object between two machines assuming that one has app server and another one just has JDK?

Thank you
 
Ranch Hand
Posts: 225
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

How to share a context object between two machines assuming that one has app server and another one just has JDK?



What do you mean by 'share a context object'?? Can you elaborate what you are exactly trying to do?

If you just want the attributes of the context to be passed to the machine that has only the jdk, you can either iterate through the context and pass all the variables, or directly pass the context object to the machine.

[Edited to add qutoe and word it better]
[ October 06, 2005: Message edited by: Neeraj Dheer ]
 
Ranch Hand
Posts: 135
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Do you try to share the app server side state to the jdk client? If yes, then you might need to choose a mechanism to serialize the data over to the client. Web services, RMI, self defined mechanism might be helpful.
 
reply
    Bookmark Topic Watch Topic
  • New Topic