Debug using SimpleHTTPServer

2007-05-10 Thread Pablo Bendersky
Hi, I'm trying to setup a development environment with Axis2 where it's easy for me to debug my services, but at the same time easy to deploy them on a production server. After looking around, I thought a good idea was to use Tomcat to deploy and the embedded SimpleHTTPServer to debug. So, I

Re: Debug using SimpleHTTPServer

2007-05-10 Thread Dennis Sosnoski
Hi Pablo, I generally stay with Tomcat for testing, hooking in for remote debugging from my IDE. To do this, you first have to start Tomcat with the debug transport enabled (using catalina.sh jpda start on Linux/Unix/Mac). You can then connect to the running server code from your IDE. Using

Re: Debug using SimpleHTTPServer

2007-05-10 Thread Pablo Bendersky
Dennis, Thanks, I'll try debugging directly in Tomcat. On 5/10/07, Dennis Sosnoski [EMAIL PROTECTED] wrote: Hi Pablo, I generally stay with Tomcat for testing, hooking in for remote debugging from my IDE. To do this, you first have to start Tomcat with the debug transport enabled (using