Required version for RedBox?
I am trying to adapt the Red5/RedBox application (http://docs2x.smartfoxserver.com/GettingStarted/redbox) to work with FMS.
The entirety of the Red5 application is:
package com.smartfoxserver.redbox;
import org.red5.server.adapter.ApplicationAdapter;
import org.red5.server.api.IConnection;
public class Application extends ApplicationAdapter
{
public boolean appStart()
{
//log.info("[RedBox] Application started");
return true;
}
public void appStop()
{
//log.info("[RedBox] Application stopped");
}
public boolean appConnect(IConnection conn, Object[] params)
{
//log.info("[RedBox] Client connected, id " + conn.getClient().getId());
return true;
}
public void appDisconnect(IConnection conn, Object[] params)
{
//log.info("[RedBox] Client disconnected, id " + conn.getClient().getId());
}
}
... so my question is- 1) How would this be adapted to FMS, and 2) Can this be done with Streaming version or is Interactive version required?
