ContributionsMost RecentMost LikesSolutionsversion code repository and build process integrationHi there, I have a question on running SOAPUI automation test suites via build process like Ant pulling the test suites from version code repository. Currently I run it from inside the SOAPUI tool by manually triggering the test suite Can this be achieved. Do share pointers or docs which may help Regards, SushantRe: datasource loop and web service input list objectOk. Will verify if this can be applied for my scenario. I am already running a datasource -datasource loop (step1 of the test suite) for populating the web service request which works well for single occurence elements in the payload. Step 2 of my test suite is the TestRequest step which prepares the web service request payload. Should i be running another datasource-datasource loop nested under the parent datasource loop just to populate the web service request multi-occurence element values. I believe the only way to handle this is via groovy script interspersed b/w the second datasource loop and the Test Requestdatasource loop and web service input list objectHi there, I have a web service which has one input attribute as list of values (multiple occurrence) besides other inputs which are single occurrence. I am using the datasource loop to grab all input data to be passed to the web service request. I am able to map the single occurrence value columns retrieved from the query directly to the web service request input attributes but am wondering how to go about mapping a collection (database retrieved values) to web service input (list). Let me know your thoughts Regards, Ssupport for wsdl2.0Hi there, We are using a licensed version of SOAPUI Pro 3.5.1 but it seems there is no support for WSDL2.0 documents. When I try to open a WSDL2.0 document I get the following error Sun Nov 21 01:28:59 EST 2010:ERROR:An error occured [WSDLException (at /wsdl:description): faultCode=INVALID_WSDL: Expected element '{http://schemas.xmlsoap.org/wsdl/}definitions'.], see error log for details The wsdl2.0 we are trying to open starts something like this <wsdl:description targetNamespace Let me know your thoughts. Thanks, SushantRe: auto generating data sink reportsHi Ole, Yes we are using Subreports feature of the Datasink. Not sure what do you mean by printable reports. But after the SOAPUI run we manually have to export the report which always takes the same name items.*** We want the ability to store the reports in an external folder as part of the automated SOAPUI run Thanks, Sushantauto generating data sink reportsHi there, We currently run soapuipro which has a few steps database lookup, web service invocation, result comparison and gathering result in a datasink.This data sink has quite a few columns and we want to persist the datasink results in external csv or xls file automatically with a pre-defined column order. Currently we are not able to provide a column order on the datasink report and also have to generate the report manually each time after running the soapui pro utility. How can we configure soapui pro to generate the datasink reports automatically as we have to run the tool frequently and would be more productive to have the reports generated automatically. Let me know. Thanks - SushantDatasink report column order does not stickHi there, I am using SOAPUI pro Datasink feature for capturing SOAP response results. We are using the subreport capability of the Datasink step to output the result in respective columns. No matter how we arrange the order of the properties, the report is generated in some randomly column order. We want to impose an order in which these property results are outputted in report. Let us know how to go about achieving the same. Regards, SushantSolvedsoapui pro datasource step removes leading zeroHi there, I am fetching records from Oracle database table (column - float) and the data is something like this 0.1234 SOAPUI pro is stripping the leading zero in the result and displaying the value as .1234 This is causing all of our automation test case to fail. Please respond how can we tackle this. -Sushantcapturing array element values in a datasinkHi there, I want to capture the information comprised within two string arrays of a groovy assertion script to a DataSink report. string array1 = ['Vehicle is of type Car', 'Vehicle is of type Scooter', 'Vehicle is of type Truck'] Column1 of the datasink report should have Vehicle is of type Car Vehicle is of type Scooter Vehicle is of type Truck string array2 = ['Vehicle is of type Cycle', 'Vehicle is of type Bike', 'Vehicle is of type Van'] Column2 of the datasink report should have Vehicle is of type Cycle Vehicle is of type Bike Vehicle is of type Van The datasink property does not seem to accept an array type. How can I get the above working. Regards, Sushantcomparing list of values in two arraysHi there, I am using SOAPUI Pro 3.5.1 I am trying to achieve the following with SOAPUI Pro. Please let me know your thoughts. I have a datasource step where in a query fetches us a list of values. query (select columnname as result from tablename) the result is rows of string values (expected results) - "Risk is average" "Risk is low" "Risk is high" Now the next step is the SOAP Request- Response. In the response I have a xsd string array node containing the values (actual results) " Risk is low" " Risk is high" I want to compare to verify for each and every row in the expected results there is a match available in the actual results. If yes assert true else assert false. I tried using the xpath assert on the soap response element and compare it with datasource attribute as expected result but it was picking only the first element value for comparison. Please advice Thanks, Sushant