From: Huston <hu...@us...> - 2002-09-03 14:43:33
|
> - I have a profile that implements 'MessageListener' interface. > When receiveMSG is called, a 'Message' object is passed to > this profile. How do I get the payload of the message in > 'String' format? The simplest solution is to get an InputStream from the InputDataStream and wrap that in a Reader. You could also get the BufferSegments from the InputDataStream and convert the bytes to characters. > - to compile the latest load as a 'release' version, I'm > assuming I have to use 'dist' target for ant? dist will build the .tgz and .zip file that are uploaded to sourceforge. If by 'release' you mean a non-debug version you need to set the debug property in the ant build file appropriately. --Huston |