public WsdlTestStep buildTestStep(WsdlTestCase testCase, TestStepConfig config, boolean forLoadTest) {
return new WsdlTestRequestStep(testCase, config, forLoadTest);
}
public static TestStepConfig createConfig(WsdlRequest request, String stepName) {
RequestStepConfig requestStepConfig = RequestStepConfig.Factory.newInstance();
requestStepConfig.setInterface(request.getOperation().getInterface().getName());
requestStepConfig.setOperation(request.getOperation().getName());
WsdlRequestConfig testRequestConfig = requestStepConfig.addNewRequest();
testRequestConfig.setName(stepName);
testRequestConfig.setEncoding(request.getEncoding());
testRequestConfig.setEndpoint(request.getEndpoint());
testRequestConfig.addNewRequest().setStringValue(request.getRequestContent());