You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-user@axis.apache.org by 卢杨 <ly...@hotmail.com> on 2010/05/03 17:06:04 UTC

About JSP client for web services

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