is JNLP for making set up for java apps not applet
pariya shiri
Greenhorn
Joined: Feb 18, 2010
Posts: 15
posted
0
I have a project that use Derby client DB, it should work trough the network, several clients can access it . Is it possible to make set up file by JNLP?
if not what's the way?
That all depends on what "work through the network" means. If you plan to distribute copies of your application to many computers, where they will run and do something via the network, then yes. Otherwise maybe, or no, depending on what your application's architecture is. Perhaps you could describe that.
pariya shiri
Greenhorn
Joined: Feb 18, 2010
Posts: 15
posted
0
Thanks for reply.
I should consider a computer as server that keeps database and another computers should be connected to that server via network (a local network like an office not internet) and they perform some ordinary tasks like inserting,updating,...
You can distribute applications using JNLP. Therefore it follows that you can distribute applications which connect to a server using JNLP.
pariya shiri
Greenhorn
Joined: Feb 18, 2010
Posts: 15
posted
0
And Is there anyway to start Derby Server vai JNLP?
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 32421
posted
0
No. JNLP is an app distribution mechanism, not a DB management mechanism. If the remote DB isn't running, then there's nothing the app can do about that.
Ulf Dittmer wrote:No. JNLP is an app distribution mechanism, not a DB management mechanism. If the remote DB isn't running, then there's nothing the app can do about that.
thanks for reply. I understand that I can run derby server by java code
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 32421
posted
0
pariya shiri wrote:I understand that I can run derby server by java code
In local mode, yes, but not in network mode. If you expect other clients to be able to connect to the DB, then you need to start it independently of your client app.
subject: is JNLP for making set up for java apps not applet