ContributionsMost RecentMost LikesSolutionsRe: API Masterminds Talks – What are the best practices of working remotely? I was away for sometime because of my work schedule. Here, is my way of working from home. The best practice is being honest with your work and passion. If you are really honest, you would definately find out the best way to complete the assignmments from client and the company. Since, I work as a single resource for my client, I have to be very active and productive in terms of the work and the assignments. A cup of strong coffee or the green tea is a must after every gap you take while working. :D Always think about the people who don't get this opportunity to work from home. This will compel you to work work and work. :) Re: Passing multiple parameters in a single SOAP request Did you mean passing the multiple values to below tags one by one? <ns1:Parameter name="SO1_DOMAIN_NAME" value="7013"/> or like this :- <ns1:Parameter name="SO1_DOMAIN_NAME" value="7013, 0002, 0999"/> Re: compare expected output read from excel with the soapUI response What is the error you are getting? And please mention the line number also. Re: Renaming a file using groovy nmraoCould you please help here? i am also not able to get this,.. I gave the solution. its not working as expected. Re: Renaming a file using groovy Try the below code for the Workbok :- String FILE = "C:\\Desktop\\data.xls"; Workbook old_wb = Workbook.getWorkbook(new File(FILE)); DateFormat df = new SimpleDateFormat("yyyy-MM-dd:hh:mm:ss"); String filename = old_wb + df.format(new Date()) + "."; And if you have the excel path then directly use :- String FILE = "C://Desktop//data"; String FILE_EXTENSION = "xls"; DateFormat df = new SimpleDateFormat("yyyy-MM-dd:hh:mm:ss"); String filename = FILE + df.format(new Date()) + "." + FILE_EXTENSION; System.out.println(filename); Re: Renaming a file using groovy Read the properties step using groovy.. def myProps = testRunner.testCase.getTestStepByName("Properties") You can write groovy and java code together in soapui. There won't be any problem. Re: Renaming a file using groovy You can use java code also in soap ui. You can follow below link. There are lot many examples :- https://stackoverflow.com/questions/32587062/name-a-file-in-java-to-include-date-and-time-stamp Re: WSDL script WSDL file always consists of the business logic for the client. So, the client's developer has to build WSDL file according to the business requirement. And then willl provide you the WSDl with the keystore information. So, that only the allocated user can only see the details for the WSDL. For example :- https://footballpool.dataaccess.eu/info.wso?WSDLWSDL is opne for everyone. Anybody can import this and use this. nmrao- you can provide more details. if you have any. Re: compare property names with data in excel file Thats good.:smileyhappy: And remember the rule for this community. Always accept the solution which helped you. Don't forget to give kudos for the working solutions provided by community members. Before asking any question in here, Please check whether the question was asked earlier here. AND Prepare yourself and learn the tools and someday please help someone from the team. You will feel great. Good Luck ! Re: compare property names with data in excel file Please recheck again. I have changed the line 20