Reputation: 11
I have created two (java web applcaion ). one acts as a Server , I created ( web service) into. the second acts as client , I created ( Web service client) into .
I created them in netBeans, and they run .
but now I want to run them out net beans , how I can do this?
I want any way to run out netBeans such as command prompt or an where.
if you have idia about running (.war) file , please tell me. thanks in advance.
Upvotes: 1
Views: 5982
Reputation: 188014
What NetBeans did behind the scenes for you was to deploy your bundled and zipped source code into a servlet container (most likely Tomcat), which in turn takes care of everything between the webservice requests and your application.
TOMCAT_HOME/bin/shutdown.sh
TOMCAT_HOME/webapps
TOMCAT_HOME/bin/startup.sh
)TOMCAT_HOME/logs/catalina.out
) to find out about potential deployment problemsIf everything went fine, you should be able to use your webservice with your client.
Upvotes: 2