cancel
Showing results for 
Search instead for 
Did you mean: 

Converting JSP application into an iView

Former Member
0 Kudos

Hi folks,

I have a simple JSP application - takes a form based input, and prints a confirmation that the input is being processed. How can I can convert this JSP app into an iView ? I have downloaded the NetWeaver, EP sneak peak. Do I have to download any other products. I am new to SAP. So any help will be really useful.

Thanks,

Vamsi.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Vamsi,

You have to download netweaver developer studio or eclipse for IDE and develop JSPDynpage component for portal. If you have portal then install the PDK in your portal for documentation and help on creating portal application.

Prakash

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Vamsi,

Install NetWeaver Devloper Studio , create a Portal Application, add one portal component either by creating JSPDynPage or DynPage or Abstract Portal Component.

Save your JSP pages in JSP or pagelet folder of the path:

<your project name>/dist/PORTAL-INF

edit the portalapp.xml file

and add the following tag

<component name="Welcome">

<component-config>

<property name="ComponentType" value="jspnative">

</property>

<property name="JSP" value="pagelet/Welcome.jsp">

</property>

</component-config>

<component-profile/>

</component>

Here I have saved my Welcome.jsp in pagelet folder.

Thanks

Hari

Former Member
0 Kudos

Hi Vamsi,

You can deploy using NWDS and then go to portal and create iViews from par.

Regards,

Venu

Former Member
0 Kudos

Hi Hari,

Thanks for the input. I could generate the iView as you had suggested. However I have more than one file. For example : The Welcome.jsp file has a link to a local test.html file. If I click the link, I get an error that an iView does not exist. I guess the html is not being inlcuded and compiled while the PAR is generated. How can I resolve this issue ?

Thanks,

Vamsi.