formNames[currentForm] );
if ( currentForm == FORM_SOAPENVELOPE )
return( (SOAPEnvelope) currentMessage );
if (currentForm == FORM_BODYINSTREAM) {
InputStreamBody bodyEl =
new InputStreamBody((InputStream)currentMessage);
SOAPEnvelope env = new SOAPEnvelope();
env.addBodyElement(bodyEl);
setCurrentMessage(env, FORM_SOAPENVELOPE);
return env;
}