• 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
  • Tim Cooke
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

Networked and Non-Networked Mode in "Real World"

 
Ranch Hand
Posts: 286
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
Does anyone know of any "real world"
examples where one would construct an application
wherein the client had the option between running
the application in networked or non-networked mode;
or, would it perhaps be used during software development
only (but, if so, why not use "loop back" using localhost?).
Thanks,
Javini Javono
[ January 24, 2004: Message edited by: Javini Javono ]
 
Ranch Hand
Posts: 41
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
how about an internet enabled computer game.
you can run in solo mode, or as a server for many players, or as a client with many players.
 
Ranch Hand
Posts: 160
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Javini
This is very common in mobile applications due to limited connectivity. The application will connected to the database in network mode. Get a snapshot of it, go the the actual site, no network, could be warehouse or even clinic in the case of doctors, work on the limited data. Then, get into the network mode and perform any synchronisation when necessary.
For desktop and enterprise applications, usually when operate in non-network mode is when some highly secure operations that need to be performed and all other network connections have to be closed so that the operation will not be interfered.
IMHO, loopback networking is used for development testing. In the real deployment, once the application is deployed, regardless whether is local or remote, the same IP address can be used. Security can be attached to IP address for very secure application and 127.0.0.1 is not acceptable. For example, MYSQL server can config to do that.
Best Regards
 
Politics n. Poly "many" + ticks "blood sucking insects". Tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic