Request theRequest) throws Throwable
{
// Create the JMS Request object and creates necessary JMS objects
// so that the user can get them in his beginXXX method, so that he
// can create the message to send.
JmsRequest request = new JmsRequest(
JmsClientHelper.getQueueSession());
// Add Cactus information to the JMS Message
request.getMessage().setStringProperty(
ServiceDefinition.CLASS_NAME_PARAM, theDelegatedTest.getClass().getName());
request.getMessage().setStringProperty(
ServiceDefinition.METHOD_NAME_PARAM, (getCurrentTestName(theDelegatedTest)));
// Start the test
new JmsClient().doTest(request);