0

Yeah quite a specific question. I'm making a bot for Google Wave and I'm a bit confused.

I have some Java class files of a separate package I want to implement. I put them in the lib directory but they're not found by Wave when its uploaded.

Eclipse compiles them fine, as it has the directory, but I guess it doesn't upload it to appspot.

Philip
  • 5
  • 1
  • 3

1 Answers1

2

Is Wave contacting the server at all? If so, the problem isn't Wave-specific, it's AppEngine-specific - so you don't need to worry much about the Wave documentation, just AppEngine.

How have you packaged the class files? Are they just "loose" or have you bundled them into a jar file?

What error are you getting, exactly?

Have you tried following the Wave tutorial to build the Parroty application? Did that work? If so, that's a good starting point for adding your own classes.

Jon Skeet
  • 1,421,763
  • 867
  • 9,128
  • 9,194