Build JSPs

Once that's done, you're ready to build your JSPs. Inside your JSP's <head> tag, add the following:
<jsorb:standardIncludes/>
This tag generates a <script> tag which is handled by the servlet and includes all of the core JsOrb JavaScript, including the marshaler, remote proxy support, transport, etc.

After that, you can import your POJO classes into your JSP using the following:

<jsorb:import entity="com.foo.Bar"/>
The tag will be replaced with a <script> tag which will point to the JsOrb servlet. The servlet will generate the JavaScript for your class.