I am using Eclipse and Tomcat server for developing a web application with Web Services.
When I test the web service, I get :
“Hi there, this is an AXIS service!
Perhaps there will be a form for invoking the service here…”
The IDE does provide a facility to create a test web client for testing the web service.
However, I want to write my own JSP page from scratch to consume this web service…
Please provide me some sample code / related links.
Thanks in advance.
You can do it in following pattern :
1.Create a form in jsp to take input data.
2.Retrieve those data from servlet.
3.Make a call to webservice using client generated from WSDL and send response back to jsp.
Addition of a new layer that will interact with service would be an better design