cancel
Showing results for 
Search instead for 
Did you mean: 

Portal Components

Former Member
0 Kudos

Experts,

If anyone having link or sample eaxample How to create a portal application and how to deploy it. .

I have open Enterprise portal perspective in NWDS and I want to create EP sample applications. How to create a basic app like hello world.

Thanks

Nitu

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

Abstract portal component Procedure,

1. From the File menu, select New à Other. The New window is displayed.

2. Select Portal Application, and then Create a Portal Application Project. Click Next.

3. In the Project name textbox, enter a name for the project.

4. click finish.

5. From the File menu, select New-> Other. The New window is displayed.

6. Select Portal Application, and then Create a New Portal Application Object. Click Next.

7. Select the project to which you want to add the portal component.Click Next.

8. Select Portal Component->AbstractPortalComponent. Click Next.

9. enter the details : name , location, class name, package name. click finish.

10. add the following code in doContent() method.

response.write("HelloWorld");

Regards,

Sunaina Reddy T

Answers (3)

Answers (3)

Former Member
0 Kudos

hi

Portal components are Java Server Pages (JSPs) or Java classes that produce HTML output, which is displayed on the client browser when a page is rendered. These core portal components include the page builder and administration tools. The portal components are responsible for creating the necessary content for display in the iViews.

A portal component can do the following:

Call other portal components, if needed

Respond to other events

Detect another component's profile and properties

A good example of a portal component is a portal builder component, which is responsible for the following:

Receives HTTP requests from the client

Forwards the incoming HTTP request to the relevant portal components and services

Receives the response back from the portal server

Builds the portal page

Sends the page response back to the client

Thanks

Ch.Bharathi

Former Member
0 Kudos

Hi nittinitu ,

U get lot of material in SDN and Help.Give the search query string as "creating Portal Applications"

[help|http://help.sap.com/saphelp_nw70/helpdata/en/83/4baa42cdccda11e10000000a155106/content.htm]

Regards,

srikanth

Former Member
0 Kudos

Hi,

We can create two types of application using EP perspetive

1)JSPDynpage

2)AbstractPortalComponent

these both can be deployed on portal by creating a par file out of the project that you created and then uploading the par file using Java Developer role.

To create these projects you can follow these step

1) File -> New-> Other: Select Portal Application

2) Select Create a Portal Application

Search for "JSPDynpage" or "Creating an AbstractPortalComponent" in help.sap you will find the tutorials that you are looking for.