Forum Discussion

autoscout24's avatar
autoscout24
Contributor
14 years ago

Convert Composite project to Normal project

Hi Guys,
We have an situation, where we develop all the SAOP UI tests in composite project style in order avoid conflicts in the repository. when a release happens i convert the composite project to normal soap ui project(XML file). This XML file is parsed with some parameters and created new XML's based on the parameter value and test running in parallel using command line arguments in different virtual machines.

question is

is it possible to convert the Composite project to Normal Project via command line so that i can avoid my manual work?

Regards
Vijay
  • Hi,

    There is no such option included in soapUI but you could do it fairly easy using our API (http://www.soapui.org/apidocs/pro/) .

    Basically you would have something like

    WsdlProjectPro project = new WsdlprojectPro(path);
    ...
    project.setComposite( false );
    ...
    project.save();

    Hope this helps!

    Regards,
    Dragica
    /SmartBear Sweden