Jolt 1.2 Readme

textField by setting the input value of the service as text from
the contents of the textField.
-The following generated code was expected:
joltServiceBean1.setInputTextValue("FIELDNAME",
textField1.getText());
-Instead the following incorrect code is generated:
joltServiceBean1.setInputTextValue(textField1.getText(),
textField1.getText());
Erroneous code is generated also in other cases when the user selects
the data necessary for handling joltInputEvent from contents of other
fields. For example, incorrect code is still generated when the user
types the following value manually:
-Typing "STRING",textField1.getText() will generate this code:
joltServiceBean1.setInputTextValue("\"STRING\",
textField1.getText","\"STRING\", textField1.getText")
instead of the expected code:
joltServiceBean1.setInputTextValue("STRING",
textField1.getText())
The only workaround is to edit the code after it is generated.
5. Case 10-000814-5969
While creating an interaction for joltTextField, a list of methods is
presented to the user to choose from. The removeJoltInputListener()
method is not in the list.
6. Case 10-000814-6117
A selection for JoltChoice is added by calling
joltChoice.addItem(new String("XYZ")). This selection does not appear
on the screen until the above method is called seven times. At that
time, the joltChoice shows that 7 items with value "XYZ" are added.
This problem occurs only on JoltChoice for Swing1.0 and Swing1.1.
This problem does not occur on JoltChoice for AWT.
7. Case 10-000815-6523
In order to generate code to receive and handle events posted by other
programs using tppost(), etc., the user needs to create an interaction
for JoltSessionBean to create a JoltOutputListener and invoke the
listener when there is a serviceReturned event. The serviceReturned
event is missing in the list of events to handle for the
JoltSessionBean. The only one available currently is PropertyChange.
8. Case 10-000815-6632
JoltServiceBean.getOccurrenceCount() returns 0 immediately after the
file:///C|/Jolt12/ReadmeJolt12.txt
file:///C|/Jolt12/ReadmeJolt12.txt (7 of 8) [4/27/2004 10:35:04 AM]