Forum Discussion
singhtester
13 years agoContributor
Sarath,
1.I have not yet done, but there could be a "package" that you can create in what ever the tool you are having your XML in. Soapui can import the packages.Please share, in case you are able to do so.
2.You can Save the response using the below:Create a groovy script with the below code.
def myOutFile = "D:/outfiles/response.xml"
def response = context.expand( '${Scriptname#Response}' )
def f = new File(myOutFile)
f.write(response, "UTF-8")
Note:script name is your script name.
Gurpreet
1.I have not yet done, but there could be a "package" that you can create in what ever the tool you are having your XML in. Soapui can import the packages.Please share, in case you are able to do so.
2.You can Save the response using the below:Create a groovy script with the below code.
def myOutFile = "D:/outfiles/response.xml"
def response = context.expand( '${Scriptname#Response}' )
def f = new File(myOutFile)
f.write(response, "UTF-8")
Note:script name is your script name.
Gurpreet
Related Content
- 7 years ago
- 6 years ago
- 3 years ago
- 7 years ago
Recent Discussions
- 15 years ago