• 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
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

[URLyBird] Standalone vs. Networked Client

 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello All,

just to make sure I understood correctly:

1) If the program is invoked using the "alone" switch, then the client
GUI is invoked and only allows local files to be used as database
locations.

2) If the program is invoked with no switch (default), then the client
GUI is invoked and only allows network locations (IP addresses) as
database locations.

Meaning, that the client GUI is the same for both cases, and only the
"open database" operation behaves differently.

Am I missing anything?


Thanks
 
Ranch Hand
Posts: 190
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The gui is the same, the database is the same. The only different is 1 accesses the dao via RMI and the other one goes direct.
[ December 01, 2004: Message edited by: James Clinton ]
 
ranger
Posts: 17347
11
Mac IntelliJ IDE Spring
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
That is basically correct. Just know that networked involves a server, and local does not have a server. It accesses the data directly.

Mark
 
Ranch Hand
Posts: 81
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What Mark was saying,

Also, It seems some people think they have to specify the actual location of the database db file. I beleive those people are misreading the instructions.

Atleast what I have read is that you should specify the server name and port when using no parameter, you should activate the server portion of the program when run in [server] mode and you should activate everything via no rmi when run in [alone] mode.
 
Just the other day, I was thinking ... about this tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic