10-24-2011 12:50 PM
10-24-2011 05:18 PM
11-03-2011 02:11 PM
@Override
public void onMessage(Message msg)
{
if (msg instanceof TextMessage)
{
ClassLoader originalCL = Thread.currentThread().getContextClassLoader();
try
{
String xml = ((TextMessage) msg).getText();
Thread.currentThread().setContextClassLoader( this.getClass().getClassLoader() );
doActivitiStuff();
}
catch (JMSException e)
{
e.printStackTrace();
}
finally
{
Thread.currentThread().setContextClassLoader( originalCL );
}
}
}
11-04-2011 05:34 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.