@vasumathi_contact Try to hit the capabilities xml URL to see if that is generated correctly on the browser -
http://APP_ID.appspot.com/_wave/capabilities.xml If that gives you some kind of errors, which means that either your robot codes have exception or your binding wasn't set up correctly. So make sure that your servlet binding is set up correctly in web.xml with something like this - <web-app xmlns="http://java.sun.com/xml/ns/javaee" version="2.5"> <servlet> <servlet-name>YOUR_ROBOT_NAME</servlet-name> <servlet-class>YOUR_ROBOT_CLASS</servlet-class> </servlet> <servlet-mapping> <servlet-name>YOUR_ROBOT_NAME</servlet-name> <url-pattern>/_wave/*</url-pattern> </servlet-mapping> </web-app> Austin On Mar 25, 2:03 pm, "[email protected]" <[email protected]> wrote: > I created a simple wave robot exactly following the instructions in > the following link > > http://code.google.com/apis/wave/extensions/robots/java-tutorial.html > > Then I deployed it and tried using it in a wave and it does nothing. I > checked all the logs and everything looks fine. What could be wrong? > Anyone else encountered this issue before? Please help. Thanks. -- You received this message because you are subscribed to the Google Groups "Google Wave API" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-wave-api?hl=en.
