• 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

JNDI server persistance

 
Ranch Hand
Posts: 48
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
what happens to the value contained in the JNDI, if the server is down �
will it preserve the value or will it start afresh?
 
author
Posts: 11962
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I don't think the JNDI spec defines "persistent entries" as such -- the JNDI server may ofcourse provide proprietary methods for defining persistent values.
 
Ranch Hand
Posts: 162
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Arvind Varma:
what happens to the value contained in the JNDI, if the server is down �
will it preserve the value or will it start afresh?


JNDI is as such a standard API interface for java applications to access a naming/directory servies. The naming and directory service acts as a database (techincally they are only services to store/access the data) to store the data. Note that naming and directory service doesn't support transaction,so if you store something, it assumed to be there even if the transaction transaction is rolled back.
reply
    Bookmark Topic Watch Topic
  • New Topic