assertTrue("The response was null", response != null);
assertTrue("The response was not succesful: " + response,
response.indexOf("SUCCESS") >= 0);
// Repeat to verify behavior
response = proxy.testInjection("sample");
assertTrue("The response was null", response != null);
assertTrue("The response was not succesful: " + response,
response.indexOf("SUCCESS") >= 0);
char[] chars = new char[] {0x15}; // 0x15 is not a valid xml character..and should be filtered
String insert = new String(chars);