-3

Possible Duplicate:
How do you connect an eclipse to a WebSphere Application server hosted on remote server?

I want to debug remote java web application in my local. I have the source code setup in eclipse.

I have started the server in debug mode.I have kept breakpoints in one of the filter and accessed the remote URL like "http://192.167.123.543:9080/WebApp/test.do".

But the eclipse is not stopping at the break point. I am confused here with debug feature..

How does the breakpoints will come to local machine from remote URL? any help

Community
  • 1
  • 1
surya
  • 65
  • 2
  • 7
  • Not exactly here I have question on "WebApplication" which is running on the server.Java application may be easy. I am not sure how it works for WAR file. – surya Feb 07 '12 at 04:07
  • That is exactly what the referenced question is regarding. WAS runs web applications (WARs) and other Java EE applications, not plain Java applications. You should be able to follow the same steps described in my answer there. – shelley Feb 07 '12 at 14:46

1 Answers1

2

You have to setup a debug configuration in eclipse that points at the debug port on the server

Dylan Bijnagte
  • 1,326
  • 9
  • 17