SOAPRequester requester = new TestApacheSOAPRequester();
requester.doSoapRequest(expectedEnvelope, "http://target.com");
}
private SOAPEnvelope buildDifficultEnvelope() {
SOAPEnvelope env = new BaseSOAP11Envelope();
env.setEncoding(expectedEncoding);
env.getBody().addTextNode(null, "ÀÁÂÃÄÅÆÇÈÉýÿĂĄ", "ɑɔʥʣʨʪɯ");
env.getBody().addTextNode(null, "ѨѫѯРсшНЌЄЏ", "ڝڠڥکۛ٢شظڧ۞۸");
return env;
}