1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
package org.jboss.test.remoting.callback.push.unidirectional.http;
import org.jboss.test.remoting.callback.push.unidirectional.CallbackPollTestServer;
/**
* @author <a href="mailto:tom.elrod@jboss.com">Tom Elrod</a>
*/
public class HTTPCallbackPollTestServer extends CallbackPollTestServer
{
public String getTransport()
{
return "http";
}
public static void main(String[] args)
{
HTTPCallbackPollTestServer server = new HTTPCallbackPollTestServer();
try
{
server.setUp();
Thread.sleep(600000);
}
catch (Exception e)
{
e.printStackTrace();
}
}
}
|