if (m_channel.getQueue() != null
&& isBound(m_channel, context))
{
// Read from the input stream and pass the actual
// data to the application
Input input = (Input)body;
if (m_channel.getEncoding() != null)
{
body = input.getString();
}
else
{
body = input.getBinary();
}
}
if (m_channel.getQueue() != null)
{