header
header
Main Menu
Home
Eviware Store
Downloads
Products
News
Forum
Eviware Blog
Search
FAQs
Customer Area
Support
Documentation
Tutorials
CookBook
Downloads
Forum
Login Form
Welcome, Guest. Please login or register.
November 22, 2008, 01:23:46 pm
Username: Password:
Login with username, password and session length

Forgot your password?
 
Latest posts of: omatzura
Welcome, Guest. Please login or register.
November 22, 2008, 01:23:46 pm
Home Help Search Login Register
News: The Forums are up! Welcome to eviware.

  Show Posts
Pages: 1 ... 34 35 [36] 37 38 ... 42
526  soapUI / soapUI / Re: soapui 1.7.6 thread not increasing in load test on: November 22, 2007, 12:10:02 am
Hi Ali,

hmm.. can you mail me the project file for testing/debugging?

thanks in advance!

regards,

/Ole
eviware.com
527  soapUI / soapUI / Re: Problem with SEQUENCES on: November 20, 2007, 07:11:01 pm
Hi Juergen,

hmm.. are you getting any errors in the error log or console window? Can you show a screenshot of this so I can see all your settings?

regards!

/Ole
eviware.com
528  soapUI / soapUI / Re: Assert using XPath in XML contained in CDATA on: November 20, 2007, 12:19:37 am
Hi!

This looks like a fine approach to me :-)

regards!

/Ole
eviware.com
529  soapUI / soapUI / Re: No signature in message! (from client) on: November 20, 2007, 12:18:52 am
Hi!

strange error.. soapUI 2.0 uses has upgraded to jdk 1.6.03.. maybe the mercury libraries aren't in sync with java 1.6?

regards!

/Ole
eviware.com
530  soapUI / soapUI / Re: No signature in message! (from client) on: November 16, 2007, 04:09:55 pm
Hi!

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..

Hope this helps!

regards,

/Ole
eviware.com
531  soapUI / soapUI / Re: No signature in message! (from client) on: November 16, 2007, 12:57:31 am
Hi!

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?

regards!

/Ole
eviware.com
532  soapUI / soapUI / Re: Asynchronous Testing using soapUI pro on: November 13, 2007, 02:52:53 am
Hi!

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)

regards!

/Ole
eviware.com
533  soapUI / soapUI / Re: Asynchronous Testing using soapUI pro on: November 07, 2007, 11:29:18 pm
Hi!

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!

regards,

/Ole
eviware.com
534  soapUI / soapUI / Re: Saving attachments automatically on: November 02, 2007, 10:05:37 am
Hi!

sure.. create a groovy script step after your request and use something like the following:

def testStep = testRunner.testCase.getTestStepByName( "request.." )
def response = testStep.testRequest.response

def outFile = new java.io.FileOutputStream( "myfile..")
def in = response.attachments[0].inputStream

com.eviware.soapui.support.Tools.writeAll( outFile,  in )


Hope I got that right.. :-)

regards!

/Ole
eviware.com

535  soapUI / soapUI / Re: Log4j and extending the HtmlLayout layout class on: October 11, 2007, 07:16:55 pm
Hi Joey,

maybe you can create a groovy-script first in your testcase that gets the loggers' FileAppender and calls its activateOptions method? ie

Logger.getLogger(..).getAppender( .. ).activateOptions()

which should reset the log (if I understand the javadocs correctly)!?

Hope this helps!

regards,

/Ole
eviware.com
536  soapUI / soapUI / Re: Loading a new WSDL Project on: October 10, 2007, 10:50:45 am
Hi!

hmm.. maybe you need to specify a proxy? (in the http-settings tab?)

Can you load the WSDL in your web-browser ok?

regards!

/Ole
eviware.com
537  soapUI / soapUI / Re: Restart/Retry Option in Datasource on: October 07, 2007, 06:56:03 pm
Hi Franky,

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)

Hope this helps!

regards,

/Ole
eviware.com
538  soapUI / soapUI / Re: Any other Add-in's for graphs in Load test on: October 04, 2007, 09:31:09 am
Hi Saju,

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/

Hope this helps!

regards,

/Ole
eviware.com
539  soapUI / soapUI / Re: relative path for txt Files to be loaded from in Properties Step on: October 03, 2007, 07:46:13 pm
Hi Ali,

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..

regards,

/Ole
eviware.com
540  soapUI / soapUI / Re: relative path for txt Files to be loaded from in Properties Step on: October 02, 2007, 11:13:23 pm
Hi,

currently relative paths are resolved relative to the working directory, I guess you want to resolve relative to the project file?

regards,

/Ole
eviware.com
Pages: 1 ... 34 35 [36] 37 38 ... 42


Login with username, password and session length

Powered by MySQL Powered by PHP Powered by SMF 1.1.2 | SMF © 2006-2007, Simple Machines LLC Valid XHTML 1.0! Valid CSS!
header header
header
header