Microsoft’s Biggest Miss

One of the benefits of a long car trip with my wife is the opportunity to have really great and insightful conversations with the smartest person I know. Yesterday, on the first leg of our trip, we spent some time discussing Microsoft’s many missed opportunities. The failure to take the iPhone seriously. The failure to take the iPad seriously. And, on. And on…

http://minimalmac.com/post/17758177061/microsofts-biggest-miss

Killing a “Killed” Session in Oracle

“Killing” a session in Oracle just means that you’ve asked the session to kill itself. That can take time depending on what the session is doing.

If you have sessions with status “KILLED” that you know aren’t doing anything important, you can kill the session immediately by executing :

ALTER SYSTEM KILL SESSION ‘sid,serial#’ IMMEDIATE;

Property Expansion in SOAPUI

From groovyinsoapui.wordpress.com :

Accessing variable values on the go while sending SOAP request to some service, might solve many problems at times. In SOAP UI, there are two ways to accomplish this

i) Using ‘Property Transfer’ step

ii) Using ‘Property Expansion’ accordingly wherever required. Here I am explaining this procedure fo accesing properties.

${#Scope#Property-name[#xpath-expression]}

${Property-name} refers to a Global Property
(example: ${UserName} to a global Property named “UserName”)

${#Project#Property-name}refers to a Project Property
(example: ${#Project#UserName} to a Property on Project level named “UserName”)

${#TestSuite#Property-name} refers to a TestSuite Property
(example: ${#TestSuite#UserName} to a Prop on TestSuite level named “UserName”)

${#TestCase#Property-name} refers to a TestCase Property
(example: ${#TestCase#UserName} to a Prop on TestCase level named “UserName”)

${TestStep-name#Property-name} refers to a property in a named TestStep.