In this section, you may be able to find some useful information to resolve your problems in using the Rapid Deployment Wizard.
It contains the following parts:
The Rapid Deployment Wizard uses its own properties file, RapidDeployment.properties, which is located on the root directory for this wizard. (For example, <WSAD rootdir>/plugins/com.ibm.workflow.RapidDeployment.wizard)
Key name | Description |
defaultTemplate | The relative path to the template JSP file for an activity implementation. The default path is "template/rdtemplate.jsp". This template will be used when "Generate JSP for the activity" is checked in "Selecting a target process or an activity" and "Default template" is selected in "Selecting a JSP file and a template". |
defaultProcessTemplate | The relative path to the template JSP file for a process instanciation. The default path is "template/rdprocesstemplate.jsp" This template will be used when "Generate JSP for the activity" is cleared in "Selecting a target process or an activity" and "Default template" is selected in "Selecting a JSP file and a template". |
profileName | The relative path to the profile to save current profile information. |
documentRootDirectory | The document root directory of the MQSeries Workflow Web Client. The default value is "webApplication". This value will be used to show a default "Output Folder" for a JSP file to be generated in "Selecting a JSP file and a template". |
programOutputDirectory | The relatice path to the project folder for an activity implementation. The default value is "program". This value will be used to show a default "Output Folder" for a JSP file to be generated in "Selecting a JSP file and a template". |
processOutputDirectory | The relatice path to the project folder for a process instanciation. The default value is "process". This value will be used to show a default "Output Folder" for a JSP file to be generated in "Selecting a JSP file and a template". |
readDoubleMethod | The prototype method for referring to a FLOAT type member. The output is located in a generated JSP file, and the name arguments are replaced by the referred member name. You must declare this method in the template files. |
readStringMethod | The prototype method for referring to a STRING type member. The output is located in a generated JSP file, and the name arguments are replaced by the referred member name. You must declare this method in the template files. |
readLongMethod | The prototype method for referring to a LONG type member. The ouput is located in generated JSP file, and the name arguments are replaced by the referred member name. You must declare this method in the template files. |
readGlobalMethod | The prototype method for referring to a Global Container member. The ouput is located in generated JSP file, and the name arguments are replaced by the referred member name. You must declare this method in the template files. |
loopIndex | This is a variable name of the loop index used for an array member in the Output JSP file. |
buttonFormat.index | This is a type of a format for a submit button which is used for the predefined buttons in "Editing the submit button properties. You can specify a tag format for a button where %(name) and %(value) should be used for a name and a value for the tag. This format is reffered by the property of buttons in the next item. |
button.name.properties | This is used to register the properties of a submit button which is used for the predefined buttons in "Editing the submit button properties. If you want to add your own submit button to the predefined button list, you need to specify the following properties.
|
The following Q&A may help you from your troubles with the Rapid Deployment Wizard.
A. Please follow the following step:
Instance Name:<input name="instanceName" type="text" value="<%=context.getTemplate().name()>">
Process Context:<input name="context" type="text" value="">
A. Please refer to the button's section of the propery file.
Internal Servlet Error: javax.servlet.ServletException: com.ibm.workflow.servlet.client.RequestContext: method getGlobalContainer()Lcom/ibm/workflow/api/ReadOnlyContainer; not found at javax.servlet.ServletException.(ServletException.java:161)
A.
The version of MQSeries Workflow on your environment may be 3.3.2. You need to install Service Pack 1 to support a global container.
Otherwize, you need to remove the access method to the global container member in JSP file.
Please follow the following step:
val = context.getMemberValue(context.getGlobalContainer(), name, "");
© Copyright IBM Corporation 2002. All Rights Reserved.