0

I configured a java/flex web app using granite ds. the gravity servlet is configured well in web.xml .

when the gravity request hits the server I have this error (log message in tomcat) :

500 returned for /Migration/gravityamf/amf with message org.apache.catalina.CometProcessor

and the cause was :

java.lang.ClassNotFoundException: org.apache.catalina.CometProcessor

does this error means some path i can dig into it.

ketan
  • 19,129
  • 42
  • 60
  • 98
Sami Jmii
  • 460
  • 7
  • 17

1 Answers1

1

That application has been written for Tomcat 6 and won't run on Tomcat 7 without being modified to use the new package for the Comet classes.

Mark Thomas
  • 16,339
  • 1
  • 39
  • 60
  • that's right . Tomcat 7 has native support for asynchronous requests and the new protocol is enabled by default. – Sami Jmii Aug 29 '14 at 08:26