I was trying to do some stuffs with the tQueryCar : http://learningthreejs.com/blog/2012/05/21/sport-car-in-webgl/
I created a new app engine project and do the required stuffs and this webGL car was running fine on localhost. But when I uploaded it to app engine I'm getting some error in the firebug console. Everything is rendered except the car. This is the app engine url : http://tquerycar.appspot.com
I couldn't figure what actually is happening. Everything is working fine on localhost.
Edit :
Ok. I have figured what's wrong is happening. My tQueryCar HTML code is making GET request to this address : http://tquerycar.appspot.com/plugins/car//examples/obj/veyron/parts/veyron_body_bin.js
. But in my web.xml I've mapped the url /
to my CarServlet
class which in turn always output my index.html
file. So I just want to ask now how to map URL in Java Servlet as stuffs work in a normal apache server. That's why site works fine on apache server running on localhost.
P.S. I personally don't know much about java servlet.