Problem with testing if procedure is persistent

blackkids

New Member
Hi,
I've got a problem with one of my webspeed servers always saying that a procedure is persistent when it isn't.

I used the file below to test the issue, and the problem server always outputs "Persistent" when my other servers output "Not Persistent" which is correct.

Code:
<html>
<head>
</head>
<body>
<script language="SpeedScript">
 
[SIZE=2]IF THIS-PROCEDURE:PERSISTENT THEN DO:[/SIZE]
[SIZE=2] {&OUT} 'Persistent'.[/SIZE]
[SIZE=2]END.[/SIZE]
ELSE DO:
  {&OUT} 'Not Persistent'.
END.
 
[SIZE=2]</script>[/SIZE]
</body>
[SIZE=2]</html>[/SIZE]

Does anyone know where I should be looking to fix this problem?

I'd appreciate any help.

Webspeed: 3.1C
Progress: 9.1D
OS: SuSe Linux 9 (Patch Level 4)

Best Regards,
Iain
 
Found the problem!!
Within ubroker.properties I need the following line about "STATE_AWARE_ENABLED=no".

Code:
 # Sample Environment for Broker: wsbroker1
 #
[Environment.wsbroker1]
    STATE_AWARE_ENABLED=no
    TESTENV=MYENV
 
Back
Top