amrita singhal wrote:my proj is running successfully...
now i want to treat it as software..
it should run on a pc where softwares are not installled ,direct working my proj.(becoz now proj becomes software)
so i want to know how it works as software...???
i also made .war file but when i run it another pc it requires to install tomcat server to another pc....................
You seem to be getting upset when people here are just trying to help you.
First of all, software is software. I think you're using this term incorrectly. When you begin creating Java source code, it is software. When you package all the application components (Java class files, JSP files, deployment descriptor files, resource files, etc.) into a War file, you get a web application archive. But it's still all software.
Now, I don't understand your use of English very well, so I'm trying hard to understand what you want, and some of it is guess work. I hope you will forgive me if I misunderstand what you are trying to ask.
Once you create a Web Archive (.war), that is not enough to just take to your customer's machine and run. It requires many other things, not the least of which is a web application
container (like JBoss, Tomcat, etc.) along with the database, and possibly other resources.
These additional components are not part of your .war file. If you don't install them, how do you think they will get installed?
If you want, you are free to create an installable package (using Install Shield, or your tool of choice) to install all these other components, but that would be a lot of work. If you only need to install your application onto one machine, I would look into installing all these prerequisites manually.
Please also read my previous posts in this
thread.
I hope this will help.