[java ee programming] Lab 4011( Netbeans IDE),breakpoint,HTTP Monitoring

2009-10-29 Thread Bindu Lakhanpal
Hi all, I am using IE8 and Netbeans 6.7.1 In Lab 4011( Netbeans IDE),I am having problem in Exercise 3: Debugging, JUnit testing, and HTTP monitoring. 1) I could create breakpoint(with pink shadow).But when I ran the program,it did not stop at break point and i got the

[java ee programming] Clear cache

2009-10-29 Thread rasesh mori
Hi friends, I want to clear browser cache through java code. Please help. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Java EE (J2EE) Programming with Passion! group. To post to this group, send email to

[java ee programming] about LAB 4006

2009-10-29 Thread fernando pardo
Hello guys: I have a problem because i dont know how to begin the lab 4006 about the following that say: Create (and initialize) a Person object and save it as an attribute called person in the ServletContext scope object during application initialization. Must i replace the object customer

[java ee programming] Re: 4006- homework

2009-10-29 Thread rey barcelon
Hi Sujata, How did you define your Person class? I suggest you write Person.java as -- public class Person { public Name name; public Person() { } public void setName(Name n){ name = n; } public Name getName(){ return