Hi,
Where you say 'is this the entire response?' are you talking about the PDF response?
BTW - I think you have provided something similar to the script for option 1) from my earlier post, although I think your script is assuming that the response contains a Base64 encoded copy of the PDF, which it doesn't in @Premier2k s original post - it is instead binary, as the Content-Type is shown as application/pdf. Still nice enough script, have some kudos :-)
A Base64 encoded PDF might well be easier to deal with, I have done someting similar quite recently to get base64 from a webservice response and then stream it to a browser for display (not in SoapUI though). When dealing with application/pdf, I think it should be possible to stream the binary PDF data to a file in a similar way (perhaps using the iText library).. or somehow popup a browser (which has a pdf plugin) and redirect the PDF data there..
Cheers,
Rupert