Search code examples
web-servicesnetbeans-6.9

Web Service on Netbeans


I have created a Web Service in Net Beans 6.9 and deploy it locally. And I am using it via a java SE application by adding Web Service client in this application. How to obtain the link of the Web Serice so that it can be used from anywhere ?

2) From where to obtain WSDL file of Web Service ?

3) How to host a Web Service on the internet ?

Thank a ton in advance..!!!


Solution

  • You could create a new project of type web application in Netbeans. In the web application, you will then create a web service (NOT a web service client).

    For publishing and testing the web application, you will have to deploy it to a web server (e.g. GlassFish).

    After publishing the web application, the WSDL file will be typically located at: http://localhost:<port>/<your web app>/<your service>?wsdl

    For GlassFish, the default port is 8080.

    If your current Netbeans installation doesn't support web projects or you don't have GlassFish installed, I suggest you download and install the latest version of Netbeans with Java EE support (bundled Apache Tomcat and GlassFish server in the same setup).

    http://netbeans.org/downloads/index.html