Show TOC Start of Content Area

Component documentation Page Web Service  Locate the document in its SAP Library structure

The page Web service enables you to get information about a specific page, including the layout of the page and the iViews on the page.

For information on the how a page is described, see the Page data type.

The URL for each iView to display on the page is available in the Iview objects contained in the Page data type.

Use Cases

Use the page Web service when creating a client for portal content, and you need to display a page that the user requested.

WSDL

The WSDL for this service is at the following URL:

http://<server>:<port>/PageServiceEJBWS/Config?wsdl

where <server> and <port> are the server and port number for the portal.

This service requires HTTP authentication. A user is required for accessing the PCD, and the page returned is a personalized page based on the authenticated user.

Accessing via EJB

You can also access the Web service’s functionality by calling the underlying EJB, as follows:

...

      JARs for Build Path / Classpath:

       com.sap.portal.ps.ejb.PageServiceEJBBean.jar, located in the Java EE application com.sap.portal.ps.ejb.PageServiceEJBEAR

       com.sap.portal.ppse.common_api.jar, located in the Java EE application com.sap.portal.ppse.common

      JNDI Name: PageServiceEJBBean

      Home Interface: com.sap.portal.ps.ejb.PageServiceEJBHome

      Remote Interface: com.sap.portal.ps.ejb.PageServiceEJBRemote

For general information on accessing portal EJBs, see Portal Web Services.

Requests

      getPage

Data Types

      Cell

      Iview

      Page

      PageRequest

      Row

      Table

End of Content Area