With netbeans you could do the same as below, but there is a much easier solution. Netbeans comes bundled with tomcat, including built-in operations for debugging tomcat apps, performing incremental deployment etc. With the mevenide plug-in, maven projects like axis2 can be used similarly to native netbeans projects (which use ant). Just: 1. install netbeans 2. import your app as a netbeans project (automatic if it has a build script in ant or maven, or conforms to a netbeans standard project in which case the ant script is generated automatically) 3. select "debug project" from your project context menu
That's it. A slight ad from a happy netbeans user, Chuck robert lazarski wrote on 07/06/2006 07:16 AM: > In eclipse with axis2 its the same as anywhere, run --> debug --> > remote application . > > You need to setup tomcat, jboss etc to support that. On tomcat: > > catalina.sh jpda start > > Jboss you need to somehow configure JAVA_OPTS , via run.conf , run.sh > or run.bat, env var etc: > > JAVA_OPTS="$JAVA_OPTS -Xdebug > -Xrunjdwp:transport=dt_socket,address=10000,server=y,suspend=n" > > On linux I put that in run.conf . > > That allows debug on port 10000. > > HTH, > Robert > http://www.braziloutsource.com/ > > On 7/6/06, Jean-Michel PATER <[EMAIL PROTECTED]> wrote: >> Hi, >> >> Yes it's a remote debugging that I want to do. >> >> Ajith Ranabahu wrote: >> > Hi, >> > What kind of debugging are we talking about here ? I can suggest a few >> > methods but not sure whether they will suit your need. >> > >> > 1. Use tcpmon to see what goes in the wire. This actually happens to >> > be much more useful than you think :) >> > >> > 2. Do a remote dubugging of the VM. You can use either IDEA or Eclipse >> > to start a remote debugging session and that can even be used to debug >> > services running in Tomcat or other servers. >> > >> > HTH >> > >> > Ajith >> > >> > On 7/6/06, Jean-Michel PATER <[EMAIL PROTECTED]> wrote: >> >> Hi all, >> >> >> >> I'm looking for a way other than using log4j to debug a web service. >> >> Is there an eclipse plugin for this ? >> >> >> >> Thanks >> >> >> >> --------------------------------------------------------------------- >> >> To unsubscribe, e-mail: [EMAIL PROTECTED] >> >> For additional commands, e-mail: [EMAIL PROTECTED] >> >> >> >> >> > >> > >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [EMAIL PROTECTED] >> For additional commands, e-mail: [EMAIL PROTECTED] >> >> > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
