String to = "http://127.0.0.1:" + 9999 + "/axis2/services/RMSampleService";
String repoPath = "target" + File.separator + "repos" + File.separator + "client";
String axis2_xml = "target" + File.separator + "repos" + File.separator + "client" + File.separator + "client_axis2.xml";
ConfigurationContext configContext = ConfigurationContextFactory.createConfigurationContextFromFileSystem(repoPath,axis2_xml);
Options clientOptions = new Options ();
clientOptions.setAction(echoAction);
clientOptions.setTo(new EndpointReference (to));
String sequenceKey = SandeshaUtil.getUUID();
clientOptions.setProperty(SandeshaClientConstants.SEQUENCE_KEY,sequenceKey);
ServiceClient serviceClient = new ServiceClient (configContext,null);
HashMap axisServices = configContext.getAxisConfiguration().getServices();
AxisService service = null;
Iterator values = axisServices.values().iterator();
while(values.hasNext())
service = (AxisService)values.next();
// Set the Sequence timout property to 1 second.
Iterator operations = service.getOperations();
while (operations.hasNext())
{
AxisOperation op = (AxisOperation) operations.next();
SandeshaPolicyBean propertyBean =
SandeshaUtil.getPropertyBean(op);
// Indicate that the sequence should timeout after 1 second
// And that it should be deleted after 2 seconds
if (propertyBean != null) {
propertyBean.setInactiveTimeoutInterval(1, "seconds");
propertyBean.setSequenceRemovalTimeoutInterval(2, "seconds");
}
}
// Set a bad acks to so the CreateSequence will be refused.
String acksTo = AddressingConstants.Final.WSA_NONE_URI;
clientOptions.setProperty(SandeshaClientConstants.AcksTo,acksTo);
clientOptions.setTransportInProtocol(Constants.TRANSPORT_HTTP);
clientOptions.setUseSeparateListener(true);
clientOptions.setProperty(SandeshaClientConstants.LAST_MESSAGE, "true");
serviceClient.setOptions(clientOptions);
TestCallback callback1 = new TestCallback ("Callback 1");
serviceClient.sendReceiveNonBlocking (getEchoOMBlock("echo1",sequenceKey),callback1);
long limit = System.currentTimeMillis() + waitTime;
Error lastError = null;
while(System.currentTimeMillis() < limit) {
Thread.sleep(tickTime); // Try the assertions each tick interval, until they pass or we time out
try {
//assertions for the out sequence.
SequenceReport sequenceReport = SandeshaClient.getOutgoingSequenceReport(serviceClient);
assertEquals(sequenceReport.getSequenceStatus(),SequenceReport.SEQUENCE_STATUS_TIMED_OUT);
assertEquals(sequenceReport.getSequenceDirection(),SequenceReport.SEQUENCE_DIRECTION_OUT);
assertTrue(callback1.isErrorReported());
assertEquals(callback1.getResult(),null);
lastError = null;
break;
} catch(Error e) {
lastError = e;
}
}
if(lastError != null) throw lastError;
while(System.currentTimeMillis() < limit) {
Thread.sleep(tickTime); // Try the assertions each tick interval, until they pass or we time out
// Check that the sequence has been deleted.
StorageManager storageManager =
SandeshaUtil.getSandeshaStorageManager(configContext, configContext.getAxisConfiguration());
Transaction tran = storageManager.getTransaction();
RMSBean finderBean = new RMSBean();
List rmsBeans = storageManager.getRMSBeanMgr().find(finderBean);
tran.commit();
lastError = null;
if (!rmsBeans.isEmpty())
lastError = new Error("rmsBeans not empty " + rmsBeans);
else
break;
}
if(lastError != null) throw lastError;
configContext.getListenerManager().stop();
serviceClient.cleanup();
}