if you want to sign the message you need to use the new WSS support in soapUI 2.0 beta.. do as follows:
1) select the WSS inspector at the bottom of the request editor 2) select the "Cryptos" tab and add a new crypto; point it to your keystore 3) select the "Entries" tab and add a new Signature entry, select the created krypto and specify the alias/password for the key you want to use for signing 4) select the "Config" tab and check the "Auto apply..." option 5) send your request!
If all goes well , your message should get digitally signed and sent away.. you can look in the http-log to see the actual message that was sent (with the SOAP Signature headers)..
Alternatively, instead of selecting the "Auto apply" option, you could use the "Apply" above the WSS tabs to button to sign the request in the request editor, in that way you can see the signed message before sending your request..
hmmm.. please give some more details: what do you mean by "pass the keystore information thro Datapower"? What are you trying to do? When are you getting this error?
hmm.. hard to say.. can you send me the project-file so I can have a look if the external request seems to be ok (based on your log output)? (ole@eviware.com)
This should definitely be possible, it's the main use-case for the MockResponse TestStep.. you need to
1) add a MockResponse step to your testcase after the request 2) configure which interface/operation it should mock and the response it should return. - You can add assertions for the incoming request just like for the response in a testrequest step.
When running the TestCase, soapUI Pro will start a listener when it comes to your MockResponse step and wait for the incoming request as configured (ie port/interface/operation).. once received it will return the configured response and move on to the next step in your TestCase..
Hope this gets you started, please post again otherwise!
Version 1.7.6 introduced the possibility to set the range for a DataSource (in the DataSource options dialog), maybe you can just set the start row to 5001? (you can use the Test button to validate that it's starting at the correct row)
unfortunately there are no other graphs available currently, if you want to tailor data/statistics collection for your specific needs please consider creating your own LoadTestRunListener which can collect the data in any way you might want.. have a look at http://www.soapui.org/architecture/extensions.html for general information on how to extend soapUI, if you are a soapUI Pro user there is a more detailed tutorial for this exact use-case at http://www.eviware.com/content/view/90/44/
no, this will unfortunately not work.. as you know we are in the process of improving property-related functionality, one improvement will be the availability of a number of predefined properties, including a "projectDir" property containing the folder of the project file, which you will be able to use as you suggest, for example with "${projectDir}\temp.properties" in a properties step source file.. for now you will need a groovy script..