Forum Discussion
sumambo
15 years agoOccasional Contributor
Hi Ole,
Another workaround for modifying the java class could be creating a 'SequenceConnector' ... the input to the connector would be from the 'Result' output of the SoapUiRunner ... in that case , it would need to send an event in output as per the following logic.
createInput( "input", "Individual Result From the SoapUiRunner" )
createOutput( "output", "Outgoing Trigger Event" )
onMessage{
incoming, outgoing, message ->
// Assuming th soapUi request succeeded since this is at the Result output
outEvent = createEvent()
send( output, outEvent );
}
}
Please help me figure out how to create an event and send it through the output. I looked at the FixedRateController.groovy and found the 'schedule' method,but I am not sure how the triggered event can be bound to that output.
Another workaround for modifying the java class could be creating a 'SequenceConnector' ... the input to the connector would be from the 'Result' output of the SoapUiRunner ... in that case , it would need to send an event in output as per the following logic.
createInput( "input", "Individual Result From the SoapUiRunner" )
createOutput( "output", "Outgoing Trigger Event" )
onMessage{
incoming, outgoing, message ->
// Assuming th soapUi request succeeded since this is at the Result output
outEvent = createEvent()
send( output, outEvent );
}
}
Please help me figure out how to create an event and send it through the output. I looked at the FixedRateController.groovy and found the 'schedule' method,but I am not sure how the triggered event can be bound to that output.