we have a grizzly+comet based application called SPOP hosted on glassfish
that establishes a channel with another web application developed in
JSF.when a agent logs into this JSF app a chat chanel gets setup between JSF
and SPOP.
we are undertaking a grizzly+glassfish upgrade from grizzly-1.0.24 to
grizzly-1.9.46 and glassfish 2.1 to glassfish 3.1.2.
we have solved most of the issues but the below issue.
whenever we are trying to submit a request to this application which should
inturn push a request to JSF app we are getting error trying to get the
comet context.
The same code works in the old setup.
Following is the code snippet
CometEngine engine = CometEngine.getEngine();
System.out.println("$$$$$$$$$$$ agent lookup");
if (AgentSingleton.getInstance().findAgent(agentName,true)){
System.out.println("$$$$$$$$$$$ agent found :"+agentName);
// here we could see the agentname coming up
CometContext context = engine.getCometContext("/chat/"+agentName);
//Here the context is not getting resolved.
Any help would be really appreciated.
--
View this message in context: http://grizzly.1045725.n5.nabble.com/Help-with-grizzly-upgrade-to-1-9-46-tp5709783.html
Sent from the Grizzly - Users mailing list archive at Nabble.com.