Try OpenEdge Now
skip to main content
Customization Guide
Customizing the Home module : Servlets
 

Servlets

Similarly, for servlets to make use of the API, the main API bean must be accessible from the servlet. You need to include the following package:
com.savvion.sbm.bpmportal.bizsite.api.*;
To use the API, create an instance of BizSiteBean.

Example of API use within a servlet

import com.savvion.sbm.bpmportal.bizsite.api.*;
...
...
bizSiteBean bizSite = new BizSiteBean();
if( bizSite.login( "ebms", "ebms", request ) ) {
...
...