@Override
public void runSuccessCase() {
log.debug("Running AddProxy SuccessCase ");
StockQuoteClient stockQuoteClient = new StockQuoteClient();
OMElement result = null;
try {
AuthenticateStub authenticateStub = new AuthenticateStub();
ConfigServiceAdminStub configServiceAdminStub = new ConfigServiceAdminStub("https://" + FrameworkSettings.HOST_NAME + ":" + FrameworkSettings.HTTPS_PORT + "/services/ConfigServiceAdmin");
authenticateStub.authenticateAdminStub(configServiceAdminStub, sessionCookie);
ArtifactReader artifactReader = new ArtifactReader();
LogViewerStub logViewerStub = new LogViewerStub("https://" + FrameworkSettings.HOST_NAME + ":" + FrameworkSettings.HTTPS_PORT + "/services/LogViewer");
OMElement omElement = artifactReader.getOMElement(InPathTest.class.getResource("/dropOutSeq.xml").getPath());
configServiceAdminStub.updateConfiguration(omElement);
if (FrameworkSettings.STRATOS.equalsIgnoreCase("false")) {
result = stockQuoteClient.stockQuoteClientforProxy("http://" + FrameworkSettings.HOST_NAME + ":" + FrameworkSettings.HTTP_PORT, null, "IBM");
} else if (FrameworkSettings.STRATOS.equalsIgnoreCase("true")) {
result = stockQuoteClient.stockQuoteClientforProxy("http://" + FrameworkSettings.HOST_NAME + ":" + FrameworkSettings.HTTP_PORT + "/services/" + FrameworkSettings.TENANT_NAME + "/", null, "IBM");
}
Thread.sleep(2000);
GetLogs getLogs = new GetLogs();
getLogs.setKeyword("mediator");
GetLogsResponse getLogsResponse = logViewerStub.getLogs(getLogs);