Archive

Archive for the ‘SoapUI’ Category

Load Properties from ini file

July 11, 2010 Leave a comment
The Example code below explains how do we get the ini file located in the system. Which get the properties and saves as global properties.
def loadProperties(path)
{
//Loads the file settings.ini
def properties = new java.util.Properties();
properties.load( new java.io.FileInputStream( “c:/settings.ini” ))
return properties
Categories: SoapUI

TestCase and TestStep execution with Groovy…

July 9, 2010 6 comments
TestCase looping
for( c in 0..5 )
testRunner.runTestStepByName( “My Request” )
Categories: SoapUI

Assertions

July 9, 2010 Leave a comment
Name = values.getPropertyValue(“UserName”);
UID = values.getPropertyValue(“UserID”); Read more…
Categories: SoapUI

Properties

July 9, 2010 Leave a comment

Properties

when creating a testsuite or a testcase it is required to send the properties from one step to another step for which there is an option of  ‘Property Transfer’ in soap UI. Especially when you need to transfer the variable to multiple Steps there is a bit of overhead.

The Best practice is to send the properties to higher level and use them.

Read more…

Categories: SoapUI

Useful information on soap UI

June 22, 2010 Leave a comment

you can browse the below link to get more information on SoapUI Tool.

  1. White Papers on soapUI
  2. Forum

Read more…

Categories: SoapUI

Soap UI in Windows

June 22, 2010 Leave a comment
Categories: SoapUI

About Soap UI

June 22, 2010 Leave a comment

Web Services:

Two different systems want to communicate with each other to exchange the data between them.

SoapUI tool is the best tool which helps to test the web services. It is a open source web service testing tool for Service Oriented Architecture. (http://www.eviware.com)

Read more…

Categories: SoapUI

Soap UI in Linux servers

June 18, 2010 Leave a comment

Installation of  SoapUI

  1. Go to http://www.soapui.org/ and download the SoapUI version requiered.
  2. The file to prefer is on the format soapui-#.#.#-linux-bin.zip
  3. Upload the soapui-#.#.#-linux-bin.zip to the linux machine /abc/soap/ using the xxxxxx user.
  4. Logon to the linux machine with xxxxxx user and execute      “cd /abc/ “
  5. Extact the .zip file by executing  “unzip soapui-#.#.#-linux-bin.zip”
  6. Change rights of *.sh files by executeing  ” cd soapui-#.#.#/bin chmod u+x *.sh “

Read more…