views:

784

answers:

1

dev_appserver works normal when run it. But if i try o debug, i found an error caused by

     __file__

that is changed on jpydaemon.py. Has anyone successfully debugged apps on NetBeans?

+1  A: 

Nope but I'm interested in setting this up. You have to attach the netbeans debugger to the port somehow. This may help you: here's an example I was reading about for java: http://blogs.sun.com/leonfan/entry/netbeans_development_series_for_google

Quoted what I found pertinent to your question dynback "How to debug application for Google App Engine

Since we already map 'test' action to 'debug', we should right click on project and choose 'test' to do debug'. When system is running and listenning on Java remote debug port 5005, attach debugger under menu 'Debug':"

Mark Essel