I guess, you can directly invoke your webservice from JSP using the stub
(I haven't tried it though).
For Ex:
<%
String endPointURL =
http://localhost/webservices/services/MyService;
MyServiceStub stub = new MyServiceStub(endPointURL);
Employee[] employees = stub.getEmployees(); // getEmployees
is a method in your service
// Use this employees array to display the data in the jsp.
%>
________________________________
From: Martin Gainty [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 26, 2000 1:33 PM
To: [email protected]
Subject: Re: Axis stub response to JSP.
JSP -> Servlet(packages WSDLToJava StubClient) including encoding SOAP
Request into XML-> AxisServlet
AxisServlet-> XML response back to Servlet -> Servlet parses the XML
/populates beans/sends textResponse back
->JSP (AJAX Div Tag or create ResultsJsp)
Im sure there is a simpler solution..Anyone else?
M--
----- Original Message -----
From: Ajay Joshi <mailto:[EMAIL PROTECTED]>
To: [email protected]
Sent: Thursday, October 25, 2007 3:32 PM
Subject: Axis stub response to JSP.
Hi,
How Axis stub (generated thru WSDL2Java) can return response to
JSP?
I can see response in XML format.. response can be print to
browser using servlet in text/html format.
.
But I am not sure how to convert response to Java object than be
displayed to JSP.
Regards
Ajay