14 years ago
How to get HTTP Trace real time in Eclipse?
Hi,
I plugged SOAP UI to Eclipse and I'm able to run test cases through it. However, I don't understand how to get HTTP traces in real-time in the console. I want to see all the SOAP Requests and SOAP Responses in the console. Currently I just get the INFO log in my console. My current JAVA code is the following:
WsdlProject project = new WsdlProject("W:/EWG_3.4-4.0/QA/Tenant Provisioning/Test-soapui-project.xml");
TestSuite testSuite = project.getTestSuiteByName("Normal Test Cases");
com.eviware.soapui.model.testsuite.TestCase testcase = testSuite.getTestCaseByName("Test Case");
// create empty properties and run synchronously
TestCaseRunner runner = testcase.run(new PropertiesMap(), false);
assertEquals(Status.FINISHED, runner.getStatus() );
Do I need to add more options to get the trace?
Thank you
Tourniquet85
I plugged SOAP UI to Eclipse and I'm able to run test cases through it. However, I don't understand how to get HTTP traces in real-time in the console. I want to see all the SOAP Requests and SOAP Responses in the console. Currently I just get the INFO log in my console. My current JAVA code is the following:
WsdlProject project = new WsdlProject("W:/EWG_3.4-4.0/QA/Tenant Provisioning/Test-soapui-project.xml");
TestSuite testSuite = project.getTestSuiteByName("Normal Test Cases");
com.eviware.soapui.model.testsuite.TestCase testcase = testSuite.getTestCaseByName("Test Case");
// create empty properties and run synchronously
TestCaseRunner runner = testcase.run(new PropertiesMap(), false);
assertEquals(Status.FINISHED, runner.getStatus() );
Do I need to add more options to get the trace?
Thank you
Tourniquet85