diff --git a/build.gradle b/build.gradle index ea74028d..12639529 100644 --- a/build.gradle +++ b/build.gradle @@ -7,19 +7,19 @@ // All rights reserved buildscript { - repositories { - maven { url 'http://dl.bintray.com/ecpluginsdev/maven' } - - jcenter() - } - dependencies { - classpath group: 'com.electriccloud.plugins', name: 'flow-gradle-plugin', version: '1.+' - } + repositories { + maven { url 'http://dl.bintray.com/ecpluginsdev/maven' } + + jcenter() + } + dependencies { + classpath group: 'com.electriccloud.plugins', name: 'flow-gradle-plugin', version: '2.+' + } } group = 'com.electriccloud' description = 'Plugins : EC-WebSphere' -version = '2.6.0' +version = '2.6.1' apply plugin: 'flow-gradle-plugin' apply plugin: 'license' @@ -27,26 +27,26 @@ apply plugin: 'license' license { header = file ('shortHeader.txt') exclude "**/project.xml" -} +} dependencies { - testCompile 'junit:junit:[4,)' - testCompile 'org.mockito:mockito-core:1.9.5' + testCompile 'junit:junit:[4,)' + testCompile 'org.mockito:mockito-core:1.9.5' } test { - Properties props = new Properties() + Properties props = new Properties() - systemProperties['COMMANDER_SERVER'] = "$commanderServer" - systemProperties['PLUGIN_VERSION'] = version - //TODO: load properties for WebSphere + systemProperties['COMMANDER_SERVER'] = "$commanderServer" + systemProperties['PLUGIN_VERSION'] = version + //TODO: load properties for WebSphere - testLogging { - // Show that tests are run in the command-line output - events 'started', 'passed' - exceptionFormat = 'full' - } + testLogging { + // Show that tests are run in the command-line output + events 'started', 'passed' + exceptionFormat = 'full' + } } task wrapper(type: Wrapper) { gradleVersion = '2.14' } diff --git a/htdocs/images/icon-plugin.svg b/htdocs/images/icon-plugin.svg new file mode 100644 index 00000000..d5e53c8c --- /dev/null +++ b/htdocs/images/icon-plugin.svg @@ -0,0 +1,20 @@ + + + diff --git a/pages/EC-WebSphere_help.xml b/pages/EC-WebSphere_help.xml index 2c6bea9f..0dccbb19 100644 --- a/pages/EC-WebSphere_help.xml +++ b/pages/EC-WebSphere_help.xml @@ -13,20 +13,20 @@
Plugin version @PLUGIN_VERSION@
- -Revised on November 09, 2018
- + +Revised on January 14, 2019
+Configuration Name | Identifier of the configuration to create. i.e: myconfig |
WSAdmin Absolute Path | Absolute path to wsadmin script. |
Connection Type | Specifies type of connection to use to connect to the application server that you want to administer. |
WebSphere Host | Hostname of the WebSphere Application Server to administer using wsadmin tool. For example: 10.200.1.234 or yourWSServer. |
WebSphere Connector Port | Port of WebSphere Application server to which wsadmin should connect.Give the port number based on the type of connection you choose.For example, if you want to connect to application server using SOAP connection give the port number of SOAP connector of that server. |
Login as | Credentials used to connect to WebSphere instance. |
Debug Level | Debug level. |
Creates a mail provider along with protocol provider and mail session.
- - + +This procedure creates mail provider with a protocol provider, a mail session and a custom property in the specified scope.
- +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Wsadmin Absolute Path | Path to wsadmin. If the location of wsadmin is in the PATH environment variable, then just the script name can be specified omitting its full path. E.g. '/path/to/wsadmin.sh' or 'wsadmin.bat'. |
Scope | Specifies the scope in which the mail provider supports installed mail applications.For example, 'Cell=Cell01,Node=Node01,Server=server1' or 'Cell=Cell01,ServerCluster=testCluster' |
Mail Provider Name | Specifies the name to be given to the new mail provider . |
Mail Provider Description | Specifies the mail provider description. |
Isolate this mail provider? | Specifies that this mail provider will be loaded in its own class loader. This allows the application server to load different versions or implementations of the same mail provider in the same Java Virtual Machine. Give each version or implementation of the mail provider a unique class path in following (Mail provider classpath) field that is appropriate for that version or implementation. |
Mail Provider Classpath | Specifies the class path to a Java archive (JAR) file that contains the implementation classes for this mail provider. |
Custom Property Name | Specifies the name of custom property to create. |
Custom Property Value | Specifies the value to associate with this custom property of the resource. |
Protocol Provider Name | Specifies the name to be given to the new protocol provider . |
Protocol Provider Class Name | Specifies the implementation class of this protocol provider. |
Protocol Provider Type | Specifies the type of protocol provider. Valid options are STORE(for incoming protocol provider) or TRANSPORT(for outgoing protocol provider). |
Mail Session Name | Specifies the administrative name of the JavaMail session object. |
Mail Session JNDI Name | Specifies the Java Naming and Directory Interface (JNDI) name for the resource, including any naming subcontexts. |
Category | Optional string to use while classifying or grouping the resources. |
Enable Debug Mode? | Select to print the interaction between mail application and mail server as well as the properties of this mail session to System.Out.log file. |
Mail Session Description | Specifies optional description for mail session. |
Incoming Mail Server | Specifies the host name server that is accessed when receiving mail. |
Incoming Mail Server Port | Specifies the port of the server that is accessed when receiving mail. |
Incoming Mail Server Credentials | Specifies the credential for the mail account when the incoming mail server requires authentication. |
Outgoing Mail Server | Specifies the host name of server that is accessed when sending mail. |
Outgoing Mail Server Port | Specifies the port of the server that is accessed when sending mail. |
Outgoing Mail Server Credential | Specifies the user of the mail account when the outgoing mail server requires authentication. |
Enable Strict Internet Address Parsing? | Specifies whether the recipient addresses must be parsed in strict compliance with RFC 822. |
To create a new mail provider along with protocol provider and mail session, do these steps:
@@ -354,20 +354,20 @@ Each configuration is given a unique name that is entered in designated paramete - +Creates a new JavaMail session using the wsadmin tool.
- - + +This procedure creates a JavaMail session object for default mail provider at specified scope.
- +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Wsadmin Absolute Path | Path to wsadmin. If the location of wsadmin is in the PATH environment variable, then just the script name can be specified omitting its full path. E.g. '/path/to/wsadmin.sh' or 'wsadmin.bat'. |
Scope | Specifies the scope in which the mail session supports installed mail applications.For example, 'Cell=Cell01,Node=Node01,Server=server1' or 'Cell=Cell01,ServerCluster=testCluster' |
Mail Session Name | Specifies the administrative name of the JavaMail session object. |
Mail Session Description | Specifies optional description for mail session. |
Mail Session JNDI Name | Specifies the Java Naming and Directory Interface (JNDI) name for the resource, including any naming subcontexts. |
Category | Optional string to use while classifying or grouping the resources. |
Enable Debug Mode? | Select to print the interaction between mail application and mail server as well as the properties of this mail session to System.Out.log file. |
Outgoing Mail Server | Specifies the host name of server that is accessed when sending mail. |
Outgoing Mail Server Port | Specifies the port of the server that is accessed when sending mail. |
Outgoing Mail Server Protocol | Specifies the protocol to use when sending mail. |
Outgoing Mail Server Credential | Specifies the user of the mail account when the outgoing mail server requires authentication. |
Return E-mail Address | Represents the Internet email address that, by default, displays in the received message in the From or the Reply-To address. The recipient's reply will come to this address. |
Incoming Mail Server | Specifies the host name server that is accessed when receiving mail. |
Incoming Mail Server Port | Specifies the port of the server that is accessed when receiving mail. |
Incoming Mail Server Protocol | Specifies the protocol to use when receiving mail. |
Incoming Mail Server Credentials | Specifies the credential for the mail account when the incoming mail server requires authentication. |
Enable Strict Internet Address Parsing? | Specifies whether the recipient addresses must be parsed in strict compliance with RFC 822. |
To create a mail session for default mail provider, do these steps:
@@ -488,20 +488,20 @@ Each configuration is given a unique name that is entered in designated paramete - +Publishes WSDL files in each web services-enabled module to the file system location
- - + +This procedure publishes WSDL files in each web services-enabled module to the file system location.
- +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Wsadmin Absolute Path | Path to wsadmin. If the location of wsadmin is in the PATH environment variable, then just the script name can be specified omitting its full path. E.g. '/path/to/wsadmin.sh' or 'wsadmin.bat'. |
Application Name | Name of the application of which to publish the WSDL file. i.e: 'webapp'. |
Location to publish WSDL file | Filename and absolute path on the filesystem where published WSDL files should get stored.For example, 'C:/webservices/sampleWSDL.zip' |
Commands | Commands to be entered to wsadmin. Use one command per line. |
Java Parameters | Java options to be passed to wsadmin, separate them using semicolons (;). |
Classpath | Jars to be passed to the wsadmin classpath. It is a string containing paths (semicolon-separated) the required JARs to execute wsadmin in a particular job. i.e: 'c:/MyDir/Myjar.jar;d:/yourdir/yourdir.jar' or '/MyDir/Myjar.jar;/yourdir/yourdir.jar'. |
SOAP address prefixes | Give SOAP address prefix in format "{{module {{binding partial-url}}}}" to customize the WSDL SOAP address for each module.. i.e: '{ {AddressBookJ2WB.war {{http http://localhost:9080}}} {StockQuote.jar {{http https://localhost:9443}}} }'. |
Additional Commands | Additional commands to be entered for wsadmin. |
To publish WSDL files, do these steps:
@@ -569,22 +569,22 @@ Each configuration is given a unique name that is entered in designated paramete - +(Applicable only for WebSphere Network Deployment installation.)
- - + +This procedure creates an Application Server identical to an existing Application Server or an Application Server definition which is part of a template. In addition it will synchronize nodes if checked.
- - + +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Node Name | Name of the node where application server is to be created. |
Server Name | Name of application server to be created. |
Generate Unique Ports? | @@ -617,7 +617,7 @@ Each configuration is given a unique name that is entered in designated paramete If not checked ports in template will be used as is for server creation. |
Source Type | @@ -627,7 +627,7 @@ Each configuration is given a unique name that is entered in designated paramete After successful creation template will be deleted. |
Source Template Name | @@ -635,7 +635,7 @@ Each configuration is given a unique name that is entered in designated paramete Name of server template to be the source for a new server. |
Source Template Location | @@ -643,24 +643,24 @@ Each configuration is given a unique name that is entered in designated paramete This parameter is applicable only when the source is a Template. |
Source Server Name | Name of application server to be the source for a new server in format nodename:servername. |
Sync Nodes? | The syncNode command forces a configuration synchronization to occur between the node and the deployment manager for the cell in which the node is configured. |
To Create Application Server in Flow interface, do these steps:
@@ -679,22 +679,22 @@ Each configuration is given a unique name that is entered in designated paramete(Applicable only for WebSphere Network Deployment installation.)
- - + +This procedure deletes an existing Application Server. In addition it will synchronize nodes if checked.
- - + +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Node Name | Name of the node where application server to be deleted. |
Server Name | Name of application server to be deleted. |
Sync Nodes? | The syncNode command forces a configuration synchronization to occur between the node and the deployment manager for the cell in which the node is configured. |
To Delete Application Server in Flow interface, do these steps:
@@ -748,22 +748,22 @@ Each configuration is given a unique name that is entered in designated paramete(Applicable only for WebSphere Network Deployment installation.)
- - + +This procedure creates a template of an existing Application Server.
- - + +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Node Name | Name of the node where application server is located. |
Application Server Name | Name of the application server the template will be based out of. |
Template Name | Application server template name to be created. |
Template Location | Specifies a configuration Id that represents the location to place the template. |
Template Description | Description of application server template. |
Sync Nodes? | The syncNode command forces a configuration synchronization to occur between the node and the deployment manager for the cell in which the node is configured. |
To Create Application Server Template in Flow interface, do these steps:
@@ -834,22 +834,22 @@ Each configuration is given a unique name that is entered in designated paramete(Applicable only for WebSphere Network Deployment installation.)
- - + +This procedure deletes an existing Application Server Template.
- - + +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Template Name | Application server template name to be deleted. |
Sync Nodes? | The syncNode command forces a configuration synchronization to occur between the node and the deployment manager for the cell in which the node is configured. |
To Delete Application Server Template in Flow interface, do these steps:
@@ -898,25 +898,25 @@ Each configuration is given a unique name that is entered in designated paramete(Applicable only for WebSphere Network Deployment installation.)
- - + +Creates a new Application Server cluster.
- - + +This procedure creates a cluster, adds members to it, and can deploy an application in it using a Jython script.
- +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Cluster Name | Name of the new cluster. |
Prefer Local? | Specifies whether enterprise bean requests are routed to the node on which the client resides whenever such a routing is possible. |
Create First Cluster Member? | If not checked, empty cluster will be created |
First Cluster Member Creation Policy | @@ -957,36 +957,36 @@ Each configuration is given a unique name that is entered in designated paramete Template - use app server template to create 1st cluster member |
Source Template Name | Name of server template to be the source for first cluster member. |
Source Server Name | Name of application server to be the source for a new server in format nodename:servername. |
First Cluster Member Node | Node name where first cluster member will be created. |
First Cluster Member Name | Name of the server that will be created as a first cluster member. |
First Cluster Member Weight | Weight of first cluster member. |
Generate Unique Ports for First Cluster Member? | @@ -994,7 +994,7 @@ Each configuration is given a unique name that is entered in designated paramete If not checked ports in template will be used as is for server creation. |
Server Resources Promotion Policy | @@ -1005,12 +1005,12 @@ Each configuration is given a unique name that is entered in designated paramete Default is Cluster. |
Add Cluster Members? | If checked, additional cluster members will be added right after cluster creation. |
Gen Unique Ports for Cluster Members? | @@ -1018,31 +1018,31 @@ Each configuration is given a unique name that is entered in designated paramete If not checked ports in template will be used as is for server creation. |
Weight of Each Cluster Member | Weight of each cluster member from list. |
Cluster Members List | List of cluster members to be created in format NodeName:server1, NodeName2:server2. |
Sync Nodes? | The syncNode command forces a configuration synchronization to occur between the node and the deployment manager for the cell in which the node is configured. |
To Create Cluster in Flow interface, do these steps:
@@ -1061,25 +1061,25 @@ Each configuration is given a unique name that is entered in designated paramete(Applicable only for WebSphere Network Deployment installation.)
- - + +Deletes an existing cluster using the wsadmin tool
- - + +This procedure delete the specified cluster.
- +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Cluster Name | The name of the cluster to delete. |
Sync Nodes? | The syncNode command forces a configuration synchronization to occur between the node and the deployment manager for the cell in which the node is configured. |
To Delete Cluster in Flow interface, do these steps:
@@ -1128,22 +1128,22 @@ Each configuration is given a unique name that is entered in designated paramete(Applicable only for WebSphere Network Deployment installation.)
- - + +This procedure exports the definition of an Application Server in an environment to an archive (with extension .car) in the filesystem, that can in turn be used import into another environment and create an identical server.
- - + +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Node Name | Name of application server node. |
Application Server Name | Name of the application server to be exported. |
Archive | Specifies the fully qualified path of the exported configuration archive. |
To Export Application Server in Flow interface, do these steps:
@@ -1195,22 +1195,22 @@ Each configuration is given a unique name that is entered in designated paramete(Applicable only for WebSphere Network Deployment installation.)
- - + +This procedure imports an Application Server from an Archive and creates an identical server in the environment the Archive is imported into.
- - + +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Node Name | Name of the Node in which the Application Server is to be Imported. |
Application Server Name | Name of the Application Server to be created based on the server in the Imported Archive. |
Archive | Specifies the fully qualified path of the configuration archive. |
Node Name in Archive | @@ -1249,7 +1249,7 @@ Each configuration is given a unique name that is entered in designated paramete If there are multiple nodes in the Archive, mention the node name of the Server to be imported. |
Server Name in Archive | @@ -1258,22 +1258,22 @@ Each configuration is given a unique name that is entered in designated paramete If there are multiple servers in the Archive, mention the name of the Server to be imported. |
Core Group | Specifies the core group name to which the server should belong. |
Sync Nodes? | The syncNode command forces a configuration synchronization to occur between the node and the deployment manager for the cell in which the node is configured. |
To Import Application Server in Flow interface, do these steps:
@@ -1292,25 +1292,25 @@ Each configuration is given a unique name that is entered in designated paramete(Applicable only for WebSphere Network Deployment installation.)
- - + +Lists all the members of cluster using wsadmin tool.
- - + +This procedure lists down all the members (application servers) of the cluster using a Jython script.
- +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Cluster Name | Name of the cluster of which members to list down. |
Output Property Path | Property where cluster members list is to be stored. |
To List Cluster Members in Flow interface, do these steps:
@@ -1357,25 +1357,25 @@ Each configuration is given a unique name that is entered in designated paramete(Applicable only for WebSphere Network Deployment installation.)
- - + +Removes list of application servers from existing cluster
- - + +This procedure removes specified application servers from the cluster using a Jython script.
- +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Cluster Name | Name of cluster from which to remove/delete the members. |
List of Cluster Members | @@ -1403,17 +1403,17 @@ Each configuration is given a unique name that is entered in designated paramete Important note: server will be not only removed from cluster, but also deleted. |
Sync Nodes? | The syncNode command forces a configuration synchronization to occur between the node and the deployment manager for the cell in which the node is configured. |
To Remove Cluster Members in Flow interface, do these steps:
@@ -1432,28 +1432,28 @@ Each configuration is given a unique name that is entered in designated paramete(Applicable only for WebSphere Network Deployment installation.)
- - + +Synchronizes active nodes.
- - + +Synchronizes Cell's Deployment Manager config repository with nodes of the cell. By default, WebSphere nodes are configured for auto-sync. This procedure should be used for manual nodes synchronization. For example: New custom property for node was added, and configuration was saved. Next, to make it available on each server it should be propagated to all servers of the node by nodes synchronization.
- +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Wsadmin Path | Path to wsadmin. If the location of wsadmin is in the PATH environment variable, then just the script name can be specified omitting its full path. E.g. '/path/to/wsadmin.sh' or 'wsadmin.bat'. |
(Applicable only for WebSphere Network Deployment installation.)
- - + +Creates the First Cluster Member of an existing cluster.
- - + +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Cluster Name | Name of the new cluster. |
First Cluster Member Name | Server Name of first cluster member. |
First Cluster Member Node | Node Name of first cluster member. |
First Cluster Member Weight | Weight of first cluster member. |
Generate Unique Ports for First Cluster Member? | @@ -1540,7 +1540,7 @@ Next, to make it available on each server it should be propagated to all servers If this option is not checked, ports in template will be used as is. |
Server Resources Promotion Policy | @@ -1551,7 +1551,7 @@ Next, to make it available on each server it should be propagated to all servers Default is Cluster. |
First Cluster Member Creation Policy | @@ -1560,31 +1560,31 @@ Next, to make it available on each server it should be propagated to all servers Template - Use app server template to create first cluster member |
Source Template Name | Name of server template to be the source for first cluster member. |
Source Server Name | Name of application server to be the source for a new server in format nodename:servername. |
Sync Nodes? | The syncNode command forces a configuration synchronization to occur between the node and the deployment manager for the cell in which the node is configured. |
To Create First Cluster Member in Flow interface, do these steps:
@@ -1603,22 +1603,22 @@ Next, to make it available on each server it should be propagated to all servers(Applicable only for WebSphere Network Deployment installation.)
- - + +Creates members under an existing cluster.
- - + +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Cluster Name | A name of the cluster where servers is to be created. |
Gen Unique Ports? | Generate unique ports number if checked. |
Cluster Member Weight | Weight of each cluster member |
List of Cluster Members | List of cluster members. |
Sync Nodes? | The syncNode command forces a configuration synchronization to occur between the node and the deployment manager for the cell in which the node is configured. |
To Create Cluster Members in Flow interface, do these steps:
@@ -1682,22 +1682,22 @@ Next, to make it available on each server it should be propagated to all servers(Applicable only for WebSphere Network Deployment installation.)
- - + +This procedure starts one or more Application Servers that can be spread across nodes.
- - + +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Server List | - List of Servers to be started. Provide them in this format : NodeName:ServerName. For example, + List of Servers to be started. Provide them in this format : NodeName:ServerName. For example, Node1:Server1, Node2:Server2, Node3:Server3, or Node4:* to start all servers within Node4. |
Wait time | Not Required. Time to wait until all servers are started. If not specified wait time will be treated as 0. |
To Start Application Servers in Flow interface, do these steps:
@@ -1747,22 +1747,22 @@ Next, to make it available on each server it should be propagated to all servers(Applicable only for WebSphere Network Deployment installation.)
- - + +This procedure stops one or more Application Servers that can be spread across nodes.
- - + +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Server List | - List of Servers to be stopped. Provide them in this format : NodeName:ServerName. For example, + List of Servers to be stopped. Provide them in this format : NodeName:ServerName. For example, Node1:Server1, Node2:Server2, Node3:Server3, or Node4:* to stop all servers within Node4. |
Wait time | Not Required. Time to wait until all servers are stopped. If not specified wait time will be treated as 0. |
To Stop Application Servers in Flow interface, do these steps:
@@ -1812,25 +1812,25 @@ Next, to make it available on each server it should be propagated to all servers(Applicable only for WebSphere Network Deployment installation.)
- - + +Starts cluster using wsadmin tool.
- - + +This procedure starts a cluster.
- +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Cluster Name | Name of the cluster to be started. |
Timeout | Specifies the waiting time before cluster start times out and returns an error. |
To Start Cluster in Flow interface, do these steps:
@@ -1879,25 +1879,25 @@ Next, to make it available on each server it should be propagated to all servers(Applicable only for WebSphere Network Deployment installation.)
- - + +Stops cluster using wsadmin tool.
- - + +This procedure stops a cluster.
- +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Cluster Name | Name of the cluster to be stopped. |
Timeout | Specifies the waiting time before cluster stop times out and returns an error. |
Perform Ripple Start? | If checked, all servers within cluster will be stopped one-by-one and then started. |
To Stop Cluster in Flow interface, do these steps:
@@ -1951,22 +1951,22 @@ Next, to make it available on each server it should be propagated to all servers(Applicable only for WebSphere Network Deployment installation.)
- - + +This procedure starts the Deployment Manager in a WAS network deployment.
- - + +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
StartManager Location | Absolute Physical path in Filesystem to location of startManager script i.e., /path/to/startManager.sh or startManager.bat |
Deployment Manager Profile | @@ -1994,27 +1994,27 @@ Next, to make it available on each server it should be propagated to all servers If this is not provided StartManager will start the DeploymentManager which has the default profile. |
Log File Location | Absolute Physical path in Filesystem to location of startManager.sh logs i.e., /path/to/startServer.log |
Timeout | Specifies the waiting time before deployment manager start times out and returns an error. |
Additional Parameters | This parameter can be used to either override defaults or pass Custom Properties. For example: -quiet, -nowait, -help. |
To Start Deployment Manager in Flow interface, do these steps:
@@ -2033,22 +2033,22 @@ Next, to make it available on each server it should be propagated to all servers(Applicable only for WebSphere Network Deployment installation.)
- - + +Stops Deployment Manager
- - + +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
StopManager Location | Absolute Physical path in Filesystem to location of stopManager script i.e., /path/to/stopManager.sh or stopManager.bat |
Deployment Manager Profile | @@ -2076,27 +2076,27 @@ Next, to make it available on each server it should be propagated to all servers If this is not provided StopManager will stop the DeploymentManager which has the default profile. |
Log File Location | Absolute Physical path in Filesystem to location of stopManager.sh logs i.e., /path/to/stopServer.log |
Timeout | Specifies the waiting time before deployment manager stop times out and returns an error. |
Additional Parameters | This parameter can be used to either override defaults or pass Custom Properties. For example: -quiet, -nowait, -help. |
To Stop Deployment Manager in Flow interface, do these steps:
@@ -2115,22 +2115,22 @@ Next, to make it available on each server it should be propagated to all servers(Applicable only for WebSphere Network Deployment installation.)
- - + +This procedure starts a WAS node and optionally starts all Application Servers in that Node.
- - + +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
StartNode Location | Absolute Physical path in Filesystem to location of startNode script i.e., /path/to/startNode.sh or startNode.bat |
Node Profile | @@ -2158,37 +2158,37 @@ Next, to make it available on each server it should be propagated to all servers If this is not provided StartNode will start the Node which has the default profile. |
Log File Location | Absolute Physical path in Filesystem to location of startNode.sh logs i.e., /path/to/startServer.log |
Timeout | Specifies the waiting time before node start times out and returns an error. |
Start all Application Servers? | Start all application servers within node after nodeagent is started. |
Node Name to start Servers | Name of the node where application servers needs to be started. |
Additional Parameters | This parameter can be used to either override defaults or pass Custom Properties. For example: -quiet, -nowait, -help. |
To Start Node in Flow interface, do these steps:
@@ -2207,22 +2207,22 @@ Next, to make it available on each server it should be propagated to all servers(Applicable only for WebSphere Network Deployment installation.)
- - + +This procedure stops a WAS node and stops the Application Servers in that Node based on the Stop Node policy.
- - + +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
StopNode Location | Absolute Physical path in Filesystem to location of stopNode script i.e., /path/to/stopNode.sh or stopNode.bat |
Node Profile | @@ -2250,32 +2250,32 @@ Next, to make it available on each server it should be propagated to all servers If this is not provided StopNode will stop the Node which has the default profile. |
Log File Location | Absolute Physical path in Filesystem to location of stopNode.sh logs i.e., /path/to/stopServer.log |
Timeout | Specifies the waiting time before node stop times out and returns an error. |
Node Stop Policy | Policy that will be used for node stopping. It could be one of: Just Stop node agent, stop Spplication Servers, Save Node State. |
Additional Parameters | This parameter can be used to either override defaults or pass Custom Properties. For example: -quiet, -nowait, -help. |
To Stop Node in Flow interface, do these steps:
@@ -2294,20 +2294,20 @@ Next, to make it available on each server it should be propagated to all serversStarts a WebSphere instance
- - + +This procedure starts a WebSphere instance or an application server using startServer.sh.
- +StartServer Absolute Path | Absolute path of the start server script, including filename and extension. i.e: 'startServer.bat' or '/path/to/startServer.sh' or 'C:\Program Files\IBM\WebSphere\AppServer\bin\startServer.bat'. |
Instance name | The name of the instance of the server to be started. i.e: 'server01'. |
Additional Commands | Additional commands to be entered for the startup of the server. |
Stops a WebSphere instance
- - + +This procedure stops a WebSphere instance or an application server using stopServer.sh
- +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Script Location | Absolute path of the stop server script, including filename and extension. i.e: 'C:/Program Files/IBM/WebSphere/AppServer/bin/stopServer.bat', 'stopServer.bat', '/path/to/stopServer.sh' |
Instance Name | Server instance name of the server to be stopped. i.e: 'server01'. |
Additional Commands | Additional commands to be entered for stop the server. |
Runs a task using wsadmin
- - + +This procedure runs a task using wsadmin and the Jython code files.
- +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Wsadmin Absolute Path | Absolute path of wsadmin, including filename and extension. If the path in which wsadmin is stored in the path environmental variable, the absolute path is ommited. i.e: '/path/to/wsadmin.sh' or 'wsadmin.bat'. |
Commands | Commands to be entered to wsadmin. Use one command per line. |
Java Parameters | Java options to be passed to wsadmin, separate them using semicolons (;). |
Classpath | Jars to be passed to the wsadmin classpath. It is a string containing paths (semicolon-separated) the required JARs to execute wsadmin in a particular job. i.e: 'c:/MyDir/Myjar.jar;d:/yourdir/yourdir.jar' or '/MyDir/Myjar.jar;/yourdir/yourdir.jar'. |
Script File Absolute Path | Path of a Jython script that will be run using wsadmin. i.e: '/path/to/scriptFile.jython' or 'c:/dir/scriptFile.jython'. |
Script File Source | Indicates either if a script file route or an embedded script file will be provided. |
Script File | Content of the script file to run if Embedded File is chosen in the Script File Source. |
Additional Commands | Additional commands to be entered for wsadmin. |
For a complete example, go to the Examples and Use Cases section.
- +Configures the session management properties for the deployed application.
- - + +This procedure configures the session management related properties for deployed application. For more information on each of the parameter, please refer to the WebSphere Knowledge Center Page.
- +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Wsadmin Absolute Path | Path to wsadmin. If the location of wsadmin is in the PATH environment variable, then just the script name can be specified omitting its full path. E.g. /path/to/wsadmin.sh or wsadmin.bat. |
Application Name | Name of the web application to configure. |
Enable SSL Tracking | Specifies that session tracking uses Secure Sockets Layer (SSL) information as a session ID. Enabling SSL tracking takes precedence over cookie-based session tracking and URL rewriting. |
Enable Cookies | Specifies whether to enable cookies. |
Enable URL Rewriting | Specifies whether the session management facility uses rewritten URLs to carry the session IDs. If URL rewriting is enabled, the session management facility recognizes session IDs that arrive in the URL if the encodeURL method is called in the servlet. |
Enable Protocol Switching | This option is only applicable when Enable URL rewriting is selected. This option specifies that the session ID is added to a URL when the URL requires a switch from HTTP to HTTPS or from HTTPS to HTTP. If rewriting is enabled, the session ID is required to go between HTTP and HTTPS. |
Max in-memory session count | Specifies the maximum number of sessions to maintain in memory. |
Allow Overflow | Specifies whether the number of sessions in memory can exceed the value specified by the Max in-memory session count property. This option is valid only in non-distributed sessions mode.. |
Enable Serialized Session | If selected, concurrent session access in a given server is not permitted. |
Maximum Wait Time | Specifies the maximum amount of time in seconds a servlet request waits on an HTTP session before continuing execution. The default is 5 seconds. Under normal conditions, a servlet request waiting for access to an HTTP session gets notified by the request that currently owns the given HTTP session when the request finishes. |
Access Session On Timeout | Specifies whether the servlet is started normally or aborted in the event of a timeout. If you specify true, the servlet is started normally. If you specify false, the servlet execution aborts and error logs are generated. |
Invalid Timeout | Specifies how long(in minutes) a session can go unused before it is no longer valid. |
Session Persistence Mode | Specifies whether to enable session persistence mode. |
To Configure Session Management for application, do these steps:
@@ -2572,20 +2572,20 @@ Next, to make it available on each server it should be propagated to all servers - +Modify Application ClassLoader.
- - + +This procedure modifies ClassLoader of the deployed Application.
- +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Wsadmin Path | Path to wsadmin. If the location of wsadmin is in the PATH environment variable, then just the script name can be specified omitting its full path. E.g. '/path/to/wsadmin.sh' or 'wsadmin.bat'. |
Load Order | The class-loader delegation mode, also known as the class loader order, determines whether a class loader delegates the loading of classes to the parent class loader. |
ClassLoader Isolation Policy | Application class loaders load EJB modules, dependency JAR files, embedded resource adapters, and application-scoped shared libraries. Depending on the application class-loader policy, an application class loader can be shared by multiple applications (Single) or unique for each application (Multiple). The application class-loader policy controls the isolation of applications that are running in the system. When set to Single, applications are not isolated. When set to Multiple, applications are isolated from each other. |
Application Name | Name of the existing web application, which ClassLoader should be modified. |
To modify Application's ClassLoader do the following steps:
@@ -2703,20 +2703,20 @@ Next, to make it available on each server it should be propagated to all servers - +Start an application using wsadmin
- - + +This procedure starts an application using wsadmin. If the application is already running, a warning will be thrown.
- +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Wsadmin Absolute Path | Absolute path of wsadmin, including filename and extension. If the path in which wsadmin is stored in the path environmental variable, the absolute path is ommited. i.e: '/path/to/wsadmin.sh' or 'wsadmin.bat'. |
Application Name | Name of the application to start. i.e: 'webapp'. |
Cluster Name | Name of the cluster on which application is deployed. Not required in WebSphere Base Edition. |
Server Name | Name of the server on which application is deployed. Specify server in the form Node=server. For e.g. Node01=Server1. Not required in WebSphere Base Edition. |
Commands | Commands to be entered to wsadmin. Use one command per line. |
Java Parameters | Java options to be passed to wsadmin, separate them using semicolons (;). |
Classpath | Jars to be passed to the wsadmin classpath. It is a string containing paths (semicolon-separated) the required JARs to execute wsadmin in a particular job. i.e: 'c:/MyDir/Myjar.jar;d:/yourdir/yourdir.jar' or '/MyDir/Myjar.jar;/yourdir/yourdir.jar'. |
Additional Commands | Additional commands to be entered for wsadmin. |
To start an application, do these steps:
@@ -2791,20 +2791,20 @@ Next, to make it available on each server it should be propagated to all servers report. - +Stop an application using wsadmin
- - + +This procedure stops an application using wsadmin. If the application is already stopped, a warning will be thrown.
- +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Wsadmin Absolute Path | Absolute path of wsadmin, including filename and extension. If the path in which wsadmin is stored in the path environmental variable, the absolute path is ommited. i.e: '/path/to/wsadmin.sh' or 'wsadmin.bat'. |
Application Name | Name of the application to stop. i.e: 'webapp'. |
Cluster Name | Name of the cluster on which application is deployed. Not required in WebSphere Base Edition. |
Server Name | Name of the server on which application is deployed. Specify server in the form Node=server. For e.g. Node01=Server1. Not required in WebSphere Base Edition. |
Commands | Commands to be entered to wsadmin. Use one command per line. |
Java Parameters | Java options to be passed to wsadmin, separate them using semicolons (;). |
Classpath | Jars to be passed to the wsadmin classpath. It is a string containing paths (semicolon-separated) the required JARs to execute wsadmin in a particular job. i.e: 'c:/MyDir/Myjar.jar;d:/yourdir/yourdir.jar' or '/MyDir/Myjar.jar;/yourdir/yourdir.jar'. |
Additional Commands | Additional commands to be entered for wsadmin. |
To stop an application, do these steps:
@@ -2879,20 +2879,20 @@ Next, to make it available on each server it should be propagated to all servers report. - +Creates a JDBC Provider using the wsadmin tool
- - + +This procedure creates a JDBC provider using a Jython script.
- +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Wsadmin Absolute Path | Absolute path of wsadmin, including filename and extension. If the path in which wsadmin is stored in the path environmental variable, the absolute path is ommited. i.e: '/path/to/wsadmin.sh' or 'wsadmin.bat'. |
JDBC Provider Name | Name of the JDBC Provider. |
JDBC Provider Description | A description for the JDBC Provider. |
Cell Scope | Parent object where the JDBC Provider will be created. This determines the visibility scope of the JDBC Provider. When the Cell Scope is provided, if the node and server scopes are not provided, then the scope will be the 'cell'; if the node is provided and the server not, then the scope will be the 'node'; if the server is provided and the node not, then the scope will be the 'server'. At least the Cell, the Node or the Server scope must be provided. i.e: 'wsaspluginNode01Cell'. |
Cluster Scope | When the Cluster Scope is provided, then the scope will be the cluster. i.e: 'cluster1'. |
Node Scope | When the Node Scope is provided, if the cell and server scopes are not provided, then the scope will be the 'node'; if the cell is provided and the server not, then the scope will be the 'node'; if the server is provided and the cell not, then the scope will be the 'server'. i.e: 'wsaspluginNode01'. |
Server Scope | When the Server Scope is provided, then the scope will be the Node and the server always, even if the Node and the Cell Scopes are not provided. i.e: 'server1'. |
Implementation Class Name | Java class name of the JDBC provider implementation. |
Driver Class Path | A path for the resource provider classes. |
To create a JDBC provider, do these steps:
@@ -2974,20 +2974,20 @@ Next, to make it available on each server it should be propagated to all servers report. - +Deletes a JDBC Provider using the wsadmin tool
- - + +This procedure deletes a JDBC provider using a Jython script.
- +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Wsadmin Absolute Path | Absolute path of wsadmin, including filename and extension. If the path in which wsadmin is stored in the path environmental variable, the absolute path is ommited. i.e: '/path/to/wsadmin.sh' or 'wsadmin.bat'. |
JDBC Provider Name | A unique name that identifies the JDBC Provider to delete in the WebSphere domain. |
To delete a JDBC provider, do these steps:
@@ -3033,20 +3033,20 @@ Next, to make it available on each server it should be propagated to all servers - +Creates a datasource using the wsadmin tool. The scope assigned to the datasource is provided by the JDBC Provider.
- - + +The procedure creates a datasource by using a Jython script.
- +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Wsadmin Absolute Path | Absolute path of wsadmin, including filename and extension. If the path in which wsadmin is stored in the path environmental variable, the absolute path is ommited. i.e: '/path/to/wsadmin.sh' or 'wsadmin.bat'. |
JDBC Provider | Name of an existing JDBC Provider. |
Datasource Name | A unique name that identifies this Datasource in the WebSphere domain. |
Datasource Description | A description for the datasource. |
JNDI Name | The JNDI path to where this Datasource is bound. |
Statement Cache Size | Specifies the number of statements that can be cached per connection. The application server caches a statement after you close that statement. |
Authentication Alias Name | Provide the authentication data alias. |
Datasource Helper Class Name | Provide the datasource helper class name. |
To create a datasource, do the following steps:
Deletes a datasource using the wsadmin tool
- - + +This procedure deletes a datasource using a Jython script.
- +Configuration Name | Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
Wsadmin Absolute Path | Absolute path of wsadmin, including filename and extension. If the path in which wsadmin is stored in the path environmental variable, the absolute path is ommited. i.e: '/path/to/wsadmin.sh' or 'wsadmin.bat'. |
Datasource Name | A unique name that identifies the datasource to delete in the WebSphere domain. |
To delete a datasource, do these steps:
@@ -3181,20 +3181,20 @@ the following diagnostic report. - +Creates a JMS Provider using the wsadmin tool
- - + +This procedure creates a new JMS provider using a Jython script.
- +Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
-
+
|
Wsadmin Absolute Path | Path to wsadmin. If the location of wsadmin is in the PATH environment variable, then just the script name can be specified omitting its full path. E.g. '/path/to/wsadmin.sh' or 'wsadmin.bat'. |
Scope | Specifies a scope of cell, node, server, or cluster for the JMS provider. E.g. Cell=Cell01,Node=Node01,Server=server1 |
JMS Provider Name | Specifies the name to assign to the new JMS provider. |
Initial Context Factory | Specifies the Java class name of the initial context factory for the JMS provider. |
JMS provider URL | Specifies the JMS provider URL for external JNDI lookups. |
Classpath | Specifies a list of paths or Java archive (JAR) file names which together form the location for the resource provider classes. Use a semicolon (;) to separate class paths. |
Description | Specifies a description of the JMS Provider. |
Isolated Class Loader | If set to true, specifies that the resource provider is loaded in its own class loader. |
Native Path | Specifies an optional path to any native libraries, such as *.dll and *.so. Native path entries are separated by a semicolon (;). |
Provider Type | Specifies the JMS provider type that this JMS provider uses. |
Property Set | Specifies resource properties in the following format: [[['name','nameValue1'],['type','typeValue1'],['value','valueValue1']]... [['name','nameValuen'],['type','typeValuen'],['value','valueValuen']]] |
Supports ASF | If set to true, specifies that the JMS provider supports Application Server Facilities (ASF), which provides concurrency and transactional support for applications. |
To create a new JMS provider, do these steps:
@@ -3282,20 +3282,20 @@ report.Deletes JMS Provider
- - + +This procedure deletes an existing JMS Provider.
- +Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
-
+
|
JMS Provider Scope | Scope of the WebSphere messaging provider to be deleted. |
JMS Provider Administartive Name | The administrative name of JMS Provider to be deleted. |
To delete JMS Provider in Commander interface, do these steps:
@@ -3357,20 +3357,20 @@ report. - +Creates or updates JMS Queues
- - + +This procedure creates a new JMS Queue or updates an existing JMS Queue.
- +Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
-
+
|
Messaging System Type | The name of the messaging provider. Pass in either WMQ or SIB. |
Queue Scope | Scope of the messaging provider at which the JMS Queue is to be created. |
Queue Administrative Name | The administrative name assigned to this WebSphere MQ messaging provider queue. |
Queue Name | Name of the Queue. |
JNDI Name | The name used to bind this object into WebSphere Application Server JNDI. |
Queue Manager Name | Queue manager that hosts the queue. |
Queue Administrative Description | An administrative description assigned to queue. |
Additional Options | - This parameter can be used to either override defaults or pass Custom Properties. + This parameter can be used to either override defaults or pass Custom Properties. For example: -ccsid 1208 -readAhead YES |
To create or update JMS Queue in Commander interface, do these steps:
@@ -3465,20 +3465,20 @@ report. - +Deletes JMS Queues
- - + +This procedure deletes an existing JMS Queue.
- +Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
-
+
|
Messaging System Type | The name of the messaging provider. Pass in either WMQ or SIB. |
Queue Scope | Scope of the messaging provider at which the JMS Queue is to be deleted. |
Queue Administrative Name | The administrative name assigned to this WebSphere MQ messaging provider queue. |
To delete JMS Queue in Commander interface, do these steps:
@@ -3545,20 +3545,20 @@ report. - +Creates or updates JMS Topics
- - + +This procedure creates a new JMS Topic or updates an existing JMS Topic.
- +Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
-
+
|
Messaging System Type | The name of the messaging provider. Pass in either WMQ or SIB. |
Topic Scope | Scope of the messaging provider at which the JMS Topic is to be created. |
Topic Administrative Name | The administrative name assigned to this WebSphere MQ messaging provider Topic. |
Topic Name | Name of the Topic. |
JNDI Name | The name used to bind this object into WebSphere Application Server JNDI. |
Topic Administrative Description | An administrative description assigned to Topic. |
Additional Options | - This parameter can be used to either override defaults or pass Custom Properties. + This parameter can be used to either override defaults or pass Custom Properties. For example: -readAhead YES -ccsid 1208 |
To create or update JMS Topic in Commander interface, do these steps:
@@ -3648,20 +3648,20 @@ report. - +Deletes JMS Topics
- - + +This procedure deletes an existing JMS Topic.
- +Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
-
+
|
Messaging System Type | The name of the messaging provider. Pass in either WMQ or SIB. |
Topic Scope | Scope of the messaging provider at which the JMS Topic is to be deleted. |
Topic Administrative Name | The administrative name assigned to this WebSphere MQ messaging provider topic. |
To delete JMS Topic in Commander interface, do these steps:
@@ -3728,20 +3728,20 @@ report. - +Creates or updates SIB JMS Activation Specs
- - + +This procedure creates a new JMS Activation Spec or updates an existing JMS Activation Spec.
- +Name of the configuration to be used. URL, port and credentials are retrieved from the given configuration. A Configuration defines connection details and can be created by going to plugin configuration page. |
-
+
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Scope of the Activation Spec | Scope of the WebSphere Default messaging provider at which the Activation Spec is to be created. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Activation Spec Administrative Name | The administrative name assigned to this Activation Spec. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
JNDI Name | The name and location used to bind this object into WebSphere Application Server JNDI. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Destination JNDI Name | The JNDI name of the destination JMS queue or topic used by the message-driven bean. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Activation Spec Administrative Description | An Administrative description assigned to Activation Spec. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Destination Type | An option to determine whether the message_driven bean uses a JMS queue or a JMS topic. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Message Selector |
@@ -3799,15 +3799,15 @@ report.
-
+
-
+
CreateOrUpdateWMQJMSActivationSpec- - + +Creates or updates WMQ JMS Activation Specs - - + +This procedure creates a new JMS Activation Spec or updates an existing JMS Activation Spec. - +CreateOrUpdateWMQJMSActivationSpec Parameters
Create or update WMQ JMS Activation SpecTo create or update WMQ JMS Activation Spec in Commander interface, do these steps: @@ -3953,20 +3953,20 @@ report. - +DeleteJMSActivationSpec- - + +Deletes JMS Activation Specs - - + +This procedure deletes an existing JMS ActivationSpec. - +DeleteJMSActivationSpec Parameters
Delete JMS Activation SpecTo delete JMS Activation Spec in Commander interface, do these steps: @@ -4037,20 +4037,20 @@ report. - +CreateOrUpdateSIBJMSConnectionFactory- - + +Creates or updates SIB JMS Connection Factories - - + +This procedure creates a new SIB JMS Connection Factory or updates an existing JMS Connection Factory. - +CreateOrUpdateSIBJMSConnectionFactory Parameters
|