JPDA and J2EE server

Hi,

The document says:

The Java Platform Debugger Architecture (JPDA) consists of three interfaces designed for use by debuggers in development environments for desktop systems.

So, it is for desktop systems only. Why it can not be used in J2EE environment?

Any information would be appreciated. Thanks in advance.

[345 byte] By [AndreLia] at [2007-10-3 1:53:50]
# 1

> Hi,

>

> The document says:

>

> The Java Platform Debugger Architecture (JPDA)

> consists of three interfaces designed for use by

> debuggers in development environments for desktop

> systems.

>

> So, it is for desktop systems only. Why it can not be

> used in J2EE environment?

>

> Any information would be appreciated. Thanks in

> advance.

manavdeepchadhaa at 2007-7-14 18:52:19 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 2

> > Hi,

> >

> > The document says:

> >

> > The Java Platform Debugger Architecture (JPDA)

> > consists of three interfaces designed for use by

> > debuggers in development environments for desktop

> > systems.

> >

> > So, it is for desktop systems only. Why it can not

> be

> > used in J2EE environment?

> >

> > Any information would be appreciated. Thanks in

> > advance.

manavdeepchadhaa at 2007-7-14 18:52:19 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 3

> > Hi,

> >

> > The document says:

> >

> > The Java Platform Debugger Architecture (JPDA)

> > consists of three interfaces designed for use by

> > debuggers in development environments for desktop

> > systems.

> >

> > So, it is for desktop systems only. Why it can not

> be

> > used in J2EE environment?

> >

> > Any information would be appreciated. Thanks in

> > advance.

manavdeepchadhaa at 2007-7-14 18:52:19 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 4
Let's repeat that question one more time shall we?
warnerjaa at 2007-7-14 18:52:19 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 5

In a servlet i use the below code:

response.setHeader("Arun","Prasath");

RequestDispatcher rd=request.getRequestDispatcher("index.jsp");

rd.forward(request,response);

the above header i set in the servlet,then i use RequestDispatcher

to forward it to a jsp.There i give the following code to retrieve the header value.

ie,In index.jsp i give the below code:

String ss=(String)request.getHeader("Arun");

out.println(ss);

The result is null when i print the String ss,instead of prasath.

If u find the answer or where is the problem reply me,please

arun_dhilljoya at 2007-7-14 18:52:19 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...