Forum Discussion
richmon
13 years agoOccasional Contributor
I've had more success since my last update. I was able to pull the attribute values using the aforemention event by stuffing the modified response content into an XML data source - thus bypassing the need to create the property transfer voodoo.
Unfortunately that event only runs successfully 1/2 the time.
Anyone have a better solution than
Unfortunately that event only runs successfully 1/2 the time.
Anyone have a better solution than
if( submit.response == null )
return
def content = submit.response.responseContent
content = content.replaceAll( "<!\\[CDATA\\[", "" )
content = content.replaceAll( "]]>", "" )
log.info( content )
submit.response.responseContent = content