IBM Business Process Manager, V8.0.1, All platforms > Reference > Commands and scripts > Commands (wsadmin scripting)
BPMShowProcessApplication command
This command lists information about a process application on a Process Center or a Process Server.
Purpose
Use the BPMShowProcessApplication command in connected mode from either a Process Center server or a Process Server to return detailed information about a process application, including a list of all its snapshots. In a network deployment environment, you must run this command on the node containing the application cluster member that handles Process Server or Process Center applications. Do not run this command from the deployment manager profile.
If you are using a SOAP connection, the command can take longer to complete than the specified SOAP timeout value. Although the command continues to run until it is finished, you might see the exception java.net.SocketTimeoutException: Read timed out. To prevent this exception, set a higher value for the property....
com.ibm.SOAP.requestTimeout
...in the profile_root/properties/soap.client.props file.
Parameter
- -containerAcronym containerAcronym
- A required parameter that identifies the process application acronym.
For example, the BillingDispute process application might have an acronym of BILLDISP.
Example
The following example illustrates how establish a SOAP connection to the Process Center server and then show the details of the BillingDispute process application.
In a network deployment environment, use the port configured for the application cluster member that runs the Process Server or Process Center applications. To determine the correct port number, see the WebSphere administrative console Ports collection page (click Servers > Server Types > WebSphere application servers > server_name > Communications > Ports and find the value for SOAP_CONNECTOR_ADDRESS).
- Jython example
wsadmin -conntype SOAP -port 8880 -host ProcessCenterServer01.mycompany.com -user admin -password admin -lang jython AdminTask.BPMShowProcessApplication('[-containerAcronym BILLDISP]')Tip: Add the jython print statement before the command when you want to see formatted output.
- Jacl example
wsadmin -conntype SOAP -port 8880 -host ProcessCenterServer01.mycompany.com -user admin -password admin $AdminTask BPMShowProcessApplication {-containerAcronym BILLDISP}
The output is similar to the following example.
Name: P1 Acronym: P1 Description: Toolkit: false Tracks: Track Name: Main Track Acronym: Main Default: true Tip: Created On: 2011-09-01 12:47:31.829 Created By: User1 State: State[Inactive] List of Snapshots: Name: JSActivate Acronym: JSA Created On: 2011-08-29 16:28:42.191 Created By: User1 Name: SS1 Acronym: SS1 Created On: 2011-08-29 16:32:09.456 Created By: User1 Name: ss2 Acronym: S2 Created On: 2011-08-29 17:30:00.863 Created By: User1 Name: SS3 Acronym: SS3 Created On: 2011-08-30 11:02:35.787 Created By: User1 Track Name: T1 Track Acronym: T1 Default: false Tip: Created On: 2011-09-01 14:05:03.207 Created By: User1 State: State[Undeployed] List of Snapshots: Name: Main - JSActivate Acronym: MJSA Created On: 2011-09-01 14:05:03.207 Created By: User1
Parent topic: Commands (wsadmin scripting)
Related reference:
BPMExtractOfflinePackage command