ContributionsMost RecentMost LikesSolutionsRe: Logging to a file.Hi, You can just include the code i included in the log4j xml file. Now whenever you invoke log.info, it will redirect all output to log file. Regards, Deepesh JainRe: QC integrationHello, You would need Agiletestware plugin for soapui. Try this link for more info: http://www.agiletestware.com/ Regards, DeepeshRe: Adding assertions automatically to a test caseI believe you are trying to add assertions to test step right? Either way, i don't think soap ui has any functionality to add certain assertions automatically. You can however run a groovy script from within a test case or like a start up script to add assertions that you need to all the desired test steps in same test case or multiple test cases. There is already another topic discussing how to do this. Maybe you can get some pointers from there. Here is the link: viewtopic.php?f=5&t=359 Regards, Deepesh JainRe: How does Teardown script get value set by Setup script?Can you try like this: context.settime = <value you want to assign> and try accessing it similarly? Regards, Deepesh JainRe: Datasource value not being replaced in xml requestI think it should work. I guess it even does for SOAP, not sure if it is a bug for REST. You can check with soapui team for that. Regards, Deepesh JainRe: WSDL name from project?double click on the project itself in the navigation pane on the left and it will give you all the details of the project including the wsdl that was used to create the project. Hope this helps. Regards, Deepesh JainRe: Datasource value not being replaced in xml request apandit wrote: 1. The PRO license has not expired. I am able to invoke non-REST service with data source and it definitely inserts correct values 2. I double checked and it is referring to the correct Datasource. Any other suggestion? I have attached the project file if that helps. Thanks, Okay, i did try your project. There seems to be a problem loading the values directly from the data source. There fore you need to include a property transfer step which would take properties email and mobile phone from the data source and populate them to request. You would also need to reconfigure your data source loop then to point the target step to properties step. I have modified your project and attaching it here for your reference so that you can refer the property transfer step. Hope this helps. Regards, Deepesh JainRe: soapUI Response - Binary ConversionYou will have to use java in your groovy script to convert binary to text. Refer the link below to see details how this is done in java: http://vikashazrati.wordpress.com/2008/ ... scii-text/ Regards, Deepesh JainRe: please help on transfer a value to a attibuteHere are the steps you need to take: 1. Create a new properties step just before your request step and create a property there with some name. 2. Assign it the value you are looking for to transfer. 3. Go back to request, select the value ("111111111") and right click, select get value from, and select properties and the property name you created. It should work. Regards, Deepesh JainRe: Create a Login TestSure. Basically you need to understand what you are getting in the response and what you need. To begin with you are getting a big string in your response for the value of node "LoginResult". Now out of this BIG string, you are trying to capture a substring ("SessionID":"c121d901-22dc-40ec-8562-4aefaccc893b","UserID":"aa819828-78b1-4007-96d4-49113fdf5ef6") Unfortunately, the only way to do is this through groovy scripting. You can create a groovy script after your test request, read the value of session id and use basic string - substring function to get session id and use it as per your needs. Regards, Deepesh Jain