Hello people,
This question has been asked many many times. Still some things are not clear to me by reading
the related threads.
Here are my questions
1) can i create a package suncertify.config. In that package i want to create a
java class Called Configuration which is the entry point to my application
In the Configuration class, I have a main() method constructs a dialog for configuration based on the type of argument.
2)
java -jar <path_and_filename> Server
pops up a dialog that requires the following user input.
Server name: Is this really required? or can we get the Ip address using InetAddress.getLocalHost().getHostAddress()?.
Dblocation: This is required for the server to establish the communication with the database right?.
server Port: Is this required too? Or can we default it to 1099?
database port: Do we need it?
java -jar <path_and_filename> Alone
pops up the dialog that requires the folloing input from user
Dblocation: Needed as the client estabishes the connection with out the network code right?.
database Port: Do we need it?
java -jar <path_and_filename>
This is where i am more confused.
For this step to occur, Does the server has to be already up and running on different machine or same machine?
pops up the dialog that requires the folloing input from user
server name: ip address right?. Does it matter if the user enters the url?.
server port: do we need the port or just default 1099?.
Your input is appreciated.
[ April 24, 2008: Message edited by: John Mattman ]