* This test supplies the part content in text form, but gets the response part name incorrect,
* so should get a null response.
*/
public void testNamedPartTextWithIncorrectResponsePartName() {
ConfigTree config=new ConfigTree("test");
config.setAttribute(BPELInvoke.REQUEST_PART_NAME, REQ_TEST_PART);
config.setAttribute(BPELInvoke.RESPONSE_PART_NAME, RESP_TEST_PART+"XXX");
config.setAttribute(BPELInvoke.OPERATION, TEST_OP);
config.setAttribute(BPELInvoke.SERVICE, TEST_SERVICE);
// Request message
String reqTextMessageText="Hello World Request";
String reqTextMessage="<"+TEST_MESSAGE_ELEM+">"+reqTextMessageText+"</"+TEST_MESSAGE_ELEM+">";