* <message>
*/
public String set(int sendTo, int replyTo, String[] message)
throws SRCPException {
if (session.isOldProtocol()) {
throw new SRCPNotSupportedException();
}
try {
StringBuffer messageBuf = new StringBuffer();
for (int i = 0; i < message.length; i++) {
messageBuf.append(URLEncoder.encode(message[i], "UTF-8"));