ContributionsMost RecentMost LikesSolutionsRe: Plugin EventListener (SoapUI 5.1)Hi all, I'm sorry about the slow reply on this; it's a confirmed bug for all annotated listener and will be fixed in the upcoming Ready API release - and also possibly in an upcoming SoapUI Pro maintenance release, although I don't know when that is planned. You can hack around this by initializing statically in your plugin: static { final SoapUIListenerRegistry registry =SoapUI.getSoapUICore().getListenerRegistry(); registry.addListener(TestRunListener.class, <yourlistenerclass>, null); } Hope this helps - sorry about this mistake on our side! best regards, /Ole SmartBear SoftwareRe: More documentation for writing custom Factory ExtensionsHi, actually - the plugin template at https://github.com/olensmar/soapui-plugin-template/ contains a custom TestAssertion (and factory) - does that help? /Ole SmartBear SoftwareRe: Code reuse in Groovy scriptsHi! soapUI Pro 3.6.1 introduced a project-level script library (as a property for the project node in the bottom left table of properties), maybe that would suffice!? regards, /Ole eviware.comRe: Can we add assert information into SoapUI's log ?Hi! Good point! Actually this isn't possible for the built in assertions, exception being the Script Assertion which can return any error message it wants when it throws an Exception. So either you use a Script Assertion or validate your response with a separate Groovy Script Step that can do the same (ie throw an exception with a descriptive message). hope this helps! regards, /Ole eviware.comRe: soapUI to mock non-SOAP HTTP/XML web serviceHi Chandra, have a look at http://www.soapui.org/Service-Mocking/m ... vices.html which has some examples on how this can be done. "Real" REST mocking is high on our list for improvements, so it will be in one of the upcoming releases after 4.0 regards! /Ole eviware.comRe: Changes in Response definitions - no effect on soapUI?Hi! A SchemaCompliance assertion should detect that the old response isn't compliant with the new schema.. how are you validating the response? regards, /Ole eviware.comRe: "holder.declareNamespace" failed in SOAPUI 2.5Hi! Probably the namespace support wasn't complete or working in 2.5, you should be able to declare the namespace as part of the xpath expression itself, ie log.info holder.getNodeValue( "declare namespace ns='http://tempuri.org'; //ns:Facility") regards, /Ole eviware.comRe: oAuth HMAC-SHA1 Signature SupportHi! hmm.. do you know of some good and easy-to-follow examples of how to use oAuth from a client (ie from soapUI)? Please let me know so I could write up a blog-entry on how to do this with soapUI (if possible). Thanks in advance! regards, /Ole eviware.comRe: Disable TestCase or SkipGreat! for the sake of groovyness, you can just write testCase1.disabled = true cheers! /Ole eviware.comRe: Disconnect component WiresHi! Please select a wire by clicking on it and then press the delete button to delete it! regards, /Ole eviware.com