0

In my glass fish server 4.0 deploying of normal war files done well. But while deploying Grizzly commet application war file deploying is failed.

Is their any another way to make glass fish to deploy the Grizzly enabled applications.

And error I got is click here

user2976215
  • 51
  • 1
  • 8

1 Answers1

1

Glassfish 4 embeds Grizzly 2 (2.3.1 to be more specific), where Comet classes have been repackaged. In Grizzly 2 Comet related classes are located inorg.glassfish.grizzly.comet.*package instead ofcom.sun.grizzly.comet.*(for Grizzly 1.9.x).

According to your report, it looks like you have to change the package for CometHandler, please useorg.glassfish.grizzly.comet.CometHandler.

alexey
  • 1,959
  • 10
  • 9
  • This is one of those little gotchas I really would have loved had been easier to find. You saved my day... whatever remains of it. – A.Grandt Feb 17 '16 at 11:50