I've done it.
Create a form and post it to another JSP (or to the same one) with your parameters
----
<form action="" method="post">
<input type="text" name="parameter1"/>
<input type="text" name="parameter2"/>
<input type="button" value="submit"/>
</form>
-----
IN that JSP use the <jsp:useBean id="axisService" class="MyAxisClient"/>
Then call your client's controlling method with parameters:
<% //Call axis client
String replyMsg = axisService.send(request.getParameter("parameter1"),
request.getParameter("parameter2"));
//Display Results
out.printlin("<b>The result of your request was: </b><p>" + replyMsg);
%>
Hope that helps
Greg Bobak
Senior Programmer Analyst
Cole National
http://www.thingsremembered.com
-----Original Message-----
From: Alexandru Simion [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 02, 2003 9:15 AM
To: [EMAIL PROTECTED]
Subject: Calling a web service from a browser
Hi ,
Can, anyone, tell me if it is possible to invoke an axis web service
from a browser ?
And, if yes, what is the procedure to do that ?
Thanks
Sam.
Privileged/Confidential Information may be contained in this message. If you are not the addressee indicated in this message (or responsible for delivery of the message to such person), you may not copy or deliver this message to anyone. In such case, you should destroy this message and kindly notify the sender by reply email. Please advise immediately if you or your employer do not consent to Internet email for messages of this kind. Opinions, conclusions and other information in this message that do not relate to the official business of my firm shall be understood as neither given nor endorsed by it.
