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
|
package org.jboss.test.remoting.callback.push.unidirectional.http;
import org.jboss.test.remoting.callback.push.unidirectional.CallbackPushTestServer;
/**
* @author <a href="mailto:tom.elrod@jboss.com">Tom Elrod</a>
*/
public class HTTPCallbackPushTestServer extends CallbackPushTestServer
{
public String getTransport()
{
return "http";
}
public static void main(String[] args)
{
HTTPCallbackPushTestServer server = new HTTPCallbackPushTestServer();
try
{
server.setUp();
Thread.sleep(600000);
}
catch (Exception e)
{
e.printStackTrace();
}
}
}
|