about servers

Hello frndz..

I have a develop webapplication using servlet and jdbc technology to store data in database. Its working fine in my system(localhost) .And the data will be stored in my system(oracle)..

Suppose if I put the application in intenet...where the data will be stored? or shall i have to maintain any database to store the data.

..

What is the process....PLeases tell me....

[413 byte] By [rakesh_yadaa] at [2007-11-26 16:25:05]
# 1

> Hello frndz..

> I have a develop webapplication using servlet and

> jdbc technology to store data in database. Its

> working fine in my system(localhost) .And the data

> will be stored in my system(oracle)..

> Suppose if I put the application in

> intenet...where the data will be stored?

> or shall i

> have to maintain any database to store the data.

If you write to a database, that's where it'll be stored.

If you're asking if the data will be written to YOUR Oracle instance, the answer is yes, provided that you configure the Internet application to write there and the Internet server can reach your Oracle instance.

If you've gotta ask, this is a bad idea.

The database instance would be better off in the data center where your app is hosted, inside the firewall.

%

duffymoa at 2007-7-8 22:49:06 > top of Java-index,Java Essentials,New To Java...
# 2
If You gonna host Your app out side, just ask hosting what is their DB connection string. And don't forget to create ER structure before start the app ;)Good luck!
_Dima_a at 2007-7-8 22:49:06 > top of Java-index,Java Essentials,New To Java...