* configured part name before invoking the process, and similarly remove the part
* name from the response and return as text.
*/
public void testNamedPartText() {
ConfigTree config=new ConfigTree("test");
config.setAttribute(BPELInvoke.REQUEST_PART_NAME, REQ_TEST_PART);
config.setAttribute(BPELInvoke.RESPONSE_PART_NAME, RESP_TEST_PART);
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+">";