private void processResponseWss(IncomingWss incomingResponseWss) throws IOException {
if (incomingResponseWss != null) {
Document dom = XmlUtils.parseXml(responseContent);
try {
responseWssResult = incomingResponseWss
.processIncoming(dom, new DefaultPropertyExpansionContext(project));
if (responseWssResult != null && responseWssResult.size() > 0) {
StringWriter writer = new StringWriter();
XmlUtils.serialize(dom, writer);
responseContent = writer.toString();
}