I'm trying to change my URLs from a standard string to include a port number for my socket. I have apache serving pages on :80 and would like to run my java app on :81. How can I specify a port number for Atmosphere/Portal to listen for sockets on?
new App(new Options().url(":" + ApplicationContextProvider.getProperty("port") + "/socket/admin").packageOf("com.production.socket").packageOf("com.github.flowersinthesand.portal.atmosphere"), new AtmosphereModule(framework), new SpringModule(beanFactory))
.bean(AdminSocketHandler.class);