hello,
i will develop an iView for the EP6 with Eclipse (Java) and i want to use a jsp.
i can creat the jsp file by right click on a folder, new, file but it don't deployed in the pdk
but i don't know in wich folder of the project i have to put it in.
is anyone able to help me cause i realy try everything
thx
Message was edited by: MARTINE BOMBARDELLI
JSPs should go into the folder "private/pagelet".
If you wrote a jsp component don't forget to modify your portalapp.xml.
It should contain something like this:
<component name="Bla">
<component-config>
<property name="ClassName" value="Bla"/>
<property name="SecurityZone" value="Bla/high_safety"/>
<property name="ComponentType" value="jspnative"/>
<property name="JSP" value="pagelet/MyJSPPage.jsp"/>
</component-config>
<component-profile/>
</component>
Add a comment