To create your own application that uses the jPorta framework. Simply:
Create a new web application (using your IDE or by hand). See here for more information.
Copy jeenius.jar from the <JPORTA>\lib directory and place it into the WEB-INF\lib folder of your web application.
Copy jporta.jar from the <JPORTA>\lib directory and place it into the WEB-INF\lib folder of your web application.
In your WEB-INF\web.xml file add the following section:
<taglib>
<taglib-uri>jeenius</taglib-uri>
<taglib-location>/WEB-INF/lib/jeenius.jar</taglib-location>
</taglib>
<taglib>
<taglib-uri>jporta</taglib-uri>
<taglib-location>/WEB-INF/lib/jporta.jar</taglib-location>
</taglib>
Create a simple JSP file that outputs some content.
Use the demo source (<JPORTA>\demo\www_src\index.jsp) to create to a index.jsp page for your application
Use the demo source (<JPORTA>\demo\www_src\WEB-INF\gadgets.xml) to create a gadgets registry for your application.