save a soap response to a file
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2007
01:51 PM
06-14-2007
01:51 PM
save a soap response to a file
Hello,
How can i save a soap response to a file from a groovy script?
greetings
How can i save a soap response to a file from a groovy script?
greetings
2 REPLIES 2
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2007
02:06 PM
06-14-2007
02:06 PM
Hi!
try the following;
regards!
/Ole
eviware.com
try the following;
def msg = context.getProperty( "request-step#Response" )
new File( "testout.txt" ).write( msg )
regards!
/Ole
eviware.com
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2007
02:18 PM
06-14-2007
02:18 PM
Cool,
Tanx that's just what iam looking for
Tanx that's just what iam looking for
