Dear Developers, Is it possible for just creating a JSP page to call a web service using like this way:
<form action='http://localhost/axis2/services/echo/echoString' method="post" target="_blank"> <table> <tr> <td>Echo:</td> <td> <input class="echo" type="text" size="30" name="args0"> </td> </tr> <tr> <td></td> <td align="right"> <input type="submit" value="Submit" class="button"> </td> </tr> </table> </form> I can run it but return a fragmentary string without the last character. Must I use the stub.java to generate client? Yours sincerely, Jason