• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Need Advice Please

 
Ranch Hand
Posts: 357
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi
for servlet classes and interface ie.

javax.servlet.Servlet interface
javax.servlet.GenericServlet class
javax.servlet.http.HttpServlet class

javax.servlet.ServletRequest interface
javax.servlet.http.HttpServletRequest interface
javax.servlet.ServletResponse interface
javax.servlet.http.HttpServletRsponse interface


IS REUIRE TO REMEBER ALL THE METHOD WITHITS SIGNATURE ???.

THANX
SANJAY
 
Greenhorn
Posts: 16
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Dear Sanjay,
No its not necessary to remember all method signatures.you just read all the methods and you must be able to recognize that such and such methods with signature exists.
Pooja
 
Sanjay pts
Ranch Hand
Posts: 357
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
So it mean we require to remember all METHODS ???.Please calrify
thanx
sanjay
 
Ranch Hand
Posts: 102
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The more you know, the better your score will be (probably).

I have a quite good knowledge of the Servlet API and I hope that this will help me to get a good score.

If you know all the methods of the HttpSession interface, you will not have any doubts if they use in the exam the method session.setDestroyTime(). Is this a method that doesn't exist or is it a method that you don't know?

In my opinion, it is not a question of learning all of them by heart but use them and build a good class diagram with (almost) all of them and with the more relevant ones in the first places.

Cheers,
Jose
[ April 05, 2005: Message edited by: Jose Esteban ]
 
Ranch Hand
Posts: 63
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Like Jose says it wouldn't do you any harm to learn them but I wouldn't go doing any all nighters staring at pages in the hopes they go into your head. Write, write, write!!! It's just like any language, the more you practice the more it just becomes second nature and the less likely you will be caught out on the exam.

And when you develop you won't need to keep running to the API all the time.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic