* @ejb:interface-method view-type="remote"
**/
public byte[] startSingleTimer(long pPeriod, Serializable info)
{
log.info("TimerSLSBean.startSingleTimer(), try to get a Timer Service from the Session Context");
TimerService ts = context.getTimerService();
long exp = System.currentTimeMillis() + pPeriod;
Timer timer = ts.createTimer(new Date(exp), info);
log.info("TimerSLSBean.startSingleTimer(), create a timer: "+timer);
byte[] handle = getHandle(timer);
return handle;
}