This is the WSO2 Business Process Server documentation version 3.1.0.View documentation for the latest release.

Unknown macro: {next_previous_link3}
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

General BPS Questions

What is WSO2 BPS?

WSO2 Business Process Server (BPS) is an easy-to-use, open source product for business process management and it executes business processes written following WS-BPEL standard.

What is the Open Source license of WSO2 BPS?

It is released under Apache Software License Version 2.0.

How do I download WSO2 BPS and get started quickly?

WSO2 BPS is distributed completely free and the distribution packs can be downloaded from the WSO2 Oxygen Tank (http://wso2.org) or http://wso2.com under the "Products" menu. WSO2 BPS can be downloaded as a binary distribution or built from SVN source.

The BPS  Quick Start Guide has hands-on instructions to quickly setup BPS, model a BPEL process, deploy and test it.

Is their commercial support available for WSO2 BPS?

We are committed to ensuring that your enterprise middleware deployment is completely supported from evaluation to production. Our unique approach ensures that all support leverages our open development methodology and is provided by the very same engineers who build the technology. For details visit WSO2 Support.

Can I get involved with the BPS development activities?

Not only you are allowed, but also encouraged. You can start by subscribing to carbon-dev@wso2.org and architecture@wso2.org mailing lists. Feel free to provide ideas, feedback and help make our code better. You can also report bugs on  https://wso2.org/jira/browse/BPS and submit patches. For more information on our mailig lists, refer to http://wso2.org/mail .


Core Carbon Questions

What are the technologies used underneath WSO2 BPS?

WSO2 BPS is built on top of WSO2 Carbon (http://wso2.com/products/carbon), an OSGi based components framework for SOA. It is powered by Apache ODE (http://ode.apache.org) as the underlying BPEL engine. Java is the primary programming language used to develop WSO2 BPS.

What are the minimum requirements to run WSO2 BPS?

Refer to BPS system requirements.

How do I deploy a third-party library into the BPS?

Copy any third-party jars into $BPS_HOME/repository/components/lib directory and restart the server. WSO2 BPS converts those jars to OSGi bundles and place them in <BPS_HOME>/repository/components/dropins directory.

Can I extend the management console UI to add custom UIs?

Yes, you can extend the management console easily by writing a custom UI component and simply deploying the OSGi bundle.

Can I use an external user store to manage and authenticate WSO2 BPS users?

Yes, you can connect WSO2 BPS with any external user store implementation. The user store could be LDAP based, JDBC based or a custom developed user store. For details, refer to  User Management.

I don't want some of the features that come with WSO2 BPS. Can I remove them?

Yes, BPS is lean and allows you to maintain just the right set of features required at the time. Simply login to the BPS management console and uninstall any unwanted features from the list of Installed Features.

Can I change the language of the management console?

Yes, WSO2 BPS comes with a UI framework which supports i18n (internationalization), which lets you to use a language of your choice for the management console.


Production Environments

What are the implications of hot deployment/hot update in a production environment?

Hot deployment/hot update may take the system to inconsistent states if the updates are not properly coordinated. Therefore, it is recommended to turn hot deployment and hot update off for production deployments.

I already have a WSO2 Governance Registry instance that contains my organization's SOA metadata. Can I get WSO2 BPS to use that registry instance as the metadata store?

WSO2 BPS integrates with WSO2 Governance Registry out of the box. Refer Registry Management for the necessary steps involved in remote registry configuration.

What is a graceful shut down?

When a graceful shut down is initiated, the ESB will continue to serve the accepted requests but stops processing new ones.


BPS Deployment

What Java versions are supported by the BPS?

It is tested on JDK 1.6.*. JDK 1.7.*. Sun JDK and IBM JDK are supported.

What are the minimum artifacts required to deploy WSO2 BPS?

When deploying, you can omit $BPS_HOME/samples and $BPS_HOME/repository/samples from the standard distribution.

How can I disable the management console?

You can uninstall all the UI components from the list of Installed Features. This disables the management console.

Does WSO2 BPS support application server deployments?

It has been tested on the following application servers: JBoss, Weblogic, Websphere and Tomcat.

What is the database management system used in WSO2 BPS?

WSO2 BPS is shipped with an embedded H2 database. However any database management system can be plugged into the BPS via JDBC. Database for BPEL engine persistence storage can be configured via "datasources.properties" file in <BPS_HOME>/repository/conf directory. Registry and user management related database configurations are available in <BPS_HOME>/repository/conf/registry.xml and <BPS_HOME>/repository/cong/user-mgt.xml files. For more information, refer to Setting up Databases.

How can I change the memory allocation for WSO2 BPS?

The memory allocation setting are in the wso2server.sh and can be changed by editing the following configuration.

-Xms256m -Xmx512m -XX:MaxPermSize=128m


BPEL Deployment Configurations

How to enable specific transports when deploying BPEL 

To enable specific transports can be done by introducing service.xml to bpel file. You can configure the required transport by defining it in service.xml like below.

<transports> 
        <transport>http</transport> 
 </transports>

         After that the service.xml should be referred by deploy.xml inside your bpel process. Sample deploy.xml is given below.     

   <deploy xmlns="http://www.apache.org/ode/schemas/dd/2007/03" xmlns:tns="http://wso2.org/bps/samples/CustomerInfo"> 
           <process name="tns:CustomerInfo"> 
           <in-memory>true</in-memory> 
           <active>true</active> 
               <provide partnerLink="CustomerInfoPL"> 
                   <service name="tns:CustomerInfoService" port="CustomerInfoPort"> 
                      <endpoint xmlns="http://wso2.org/bps/bpel/endpoint/config" serviceDescriptionReference="services.xml"/> 
                   </service> 
               </provide> 
          </process> 
      </deploy>

  • No labels