Axiom tweaks

This commit is contained in:
Arjen Poutsma
2010-09-10 12:25:22 +00:00
parent 8f0f0185ac
commit 3a132cc6c9

View File

@@ -332,6 +332,13 @@ public class AxiomSoapMessageFactory implements SoapMessageFactory<AxiomSoapMess
else if (soapFactory instanceof SOAP12Factory) {
builder.append("SOAP 1.2");
}
builder.append(',');
if (payloadCaching) {
builder.append("PayloadCaching enabled");
}
else {
builder.append("PayloadCaching disabled");
}
builder.append(']');
return builder.toString();
}