You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

BorlandGenerateClient.html 2.2 KiB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Language" content="en-us">
  4. <title>BorlandGenerateClient Task</title>
  5. </head>
  6. <body>
  7. <h2><a name="log">BorlandGenerateClient</a></h2>
  8. <h3>Description</h3>
  9. <p>The BorlandGenerateClient is a task dedicated to Borland Application Server
  10. v 4.5. It offers to generate the client jar file corresponding to an ejb jar
  11. file.</p>
  12. <h3>Parameters</h3>
  13. <table border="1" cellpadding="2" cellspacing="0">
  14. <tr>
  15. <td valign="top" width="63"><b>Attribute</b></td>
  16. <td valign="top" width="915"><b>Description</b></td>
  17. <td align="center" valign="top" width="62"><b>Required</b></td>
  18. </tr>
  19. <tr>
  20. <td valign="top" width="63">ejbjar</td>
  21. <td valign="top" width="915">ejb jar file</td>
  22. <td align="center" valign="middle" width="62">yes</td>
  23. </tr>
  24. <tr>
  25. <td valign="top" width="63">debug</td>
  26. <td valign="top" width="915">If true, turn on the debug mode for each borland
  27. tools (java2iiop, iastool ...) default = false</td>
  28. <td align="center" valign="middle" width="62">no</td>
  29. </tr>
  30. <tr>
  31. <td valign="top" width="63">clientjar</td>
  32. <td valign="top" width="915">client jar file name. If missing the client jar
  33. file name is build using the ejbjar file name: ejbjar = hellobean-ejb.jar
  34. =&gt; hellobean-ejbclient.jar</td>
  35. <td align="center" valign="middle" width="62">no</td>
  36. </tr>
  37. <tr>
  38. <td valign="top" width="63">mode</td>
  39. <td valign="top" width="915">choose the command launching mode. Two values:
  40. java or fork. default = java. Possibility to specify a classpath.</td>
  41. <td align="center" valign="middle" width="62">no</td>
  42. </tr>
  43. </table>
  44. <h3>Examples</h3>
  45. <p>The following build.xml snippet is an example of how to use Borland element
  46. into the ejbjar task using the java mode.</p>
  47. <pre>
  48. &lt;blgenclient ejbjar=&quot;lib/secutest-ejb.jar&quot; clientjar=&quot;lib/client.jar&quot; debug=&quot;true&quot; mode=&quot;java&quot;&gt;
  49. &lt;classpath&gt;
  50. &lt;pathelement locacation=&quot;mymodule.jar&quot;/&gt;
  51. &lt;/classpath&gt;
  52. &lt;/blgenclient&gt;
  53. </pre>
  54. <pre>&nbsp;</pre>
  55. <p align="center">Copyright &copy; 2001 Apache Software Foundation. All rights
  56. Reserved.</p>
  57. </body>
  58. </html>