ContributionsMost RecentMost LikesSolutionsTrying to read a composite project file from java getting an error as "Unexpected element: CDA" Hi Team, Not able to read composite project file from java getting an error as "Unexpected element: CDATA". WsdlTestCase testCase = new WsdlProject("src/test/resources/xml/SoapUI") .getTestSuiteByName("TestSuite 1") .getTestCaseByName("TestCase 1"); I also tried to use WsdlProjectPro but getting error as "java.lang.NoClassDefFoundError: com/eviware/soapui/impl/wsdl/WsdlProjectPro". Regards, Re: Trying to read a composite project file from java getting an error as "Unexpected element: CDA" Hi Rao, Thank you. I have added all the Jar in ReadyAPI_HOME/bin/ and READYAPI_HOME/lib to class path but still i get the error as given below. Code 1: WsdlTestCase testCase = new WsdlProject("src/test/resources/xml/SoapUI") .getTestSuiteByName("TestSuite 1") .getTestCaseByName("TestCase 1"); Error : org.apache.xmlbeans.XmlException: error: Unexpected element: CDATA Code 2: WsdlTestCase testCase = new WsdlProjectPro("src/test/resources/xml/SoapUI") .getTestSuiteByName("TestSuite 1") .getTestCaseByName("TestCase 1"); Error : java.lang.NoClassDefFoundError: com/eviware/soapui/impl/wsdl/WsdlProjectPro Re: Trying to read a composite project file from java getting an error as "Unexpected element: CDA" Hi Rao, Thank you for the help. I did add the jar, now I get an different error as "java.lang.NoClassDefFoundError: com/eviware/soapui/model/project/MockServiceLifecycleListener". Regards, Re: package com.smartbear.ready.cmd.runner.pro does not exist Thank you, this issue is solved now. Re: How to capture assertions from SoapUI Test steps while executing SoapUI Scripts from a java applicat Thanks for the sample code. Is it possible to read all the assertions and its results in the step even if the step is passed during execution. package com.smartbear.ready.cmd.runner.pro does not exist Hi, I am trying to upgrade my Soapui - cucumber test framework to soapui pro - cucumber framework. I am getting a error as "package com.smartbear.ready.cmd.runner.pro does not exist". I have added the plugin as given below in my pom file <plugin> <groupId>com.smartbear</groupId> <artifactId>ready-api-maven-plugin</artifactId> <version>2.3.0</version> <!-- <configuration> <projectFile>project_path</projectFile> <reportFormat>HTML</reportFormat> <junitReport>true</junitReport> <reports>${basedir}/target/surefire-reports</reports> <environment>Dev</environment> </configuration> --> <executions> <execution> <phase>test</phase> <goals> <goal>test</goal> </goals> </execution> </executions> </plugin> Could someone please help.