Search:

Type: Posts; User: sjava.438; Keyword(s):

Search: Search took 0.00 seconds.

  1. Answers
    4
    Views
    5,767

    JSP Re: 2 Action Servlets in Struts Application

    In Struts application, all client requests are received by ActionServlet which is provided by framework. for centralization, only one ActionServlet provided by framework. for our requirment so many...
  2. Answers
    12
    Views
    18,982

    Re: Differences Between Method and Function

    Hi,
    method should declares and defines within the class only. so it has access controlling mechanism. used in oops.
    function declares and defines anywhere in the code. it has not access...
  3. Web Servers Re: what is the difference between application server, web server and portal server?

    Hi
    web server is used to serve web based applications.(i.e servlets and jsps)
    application server is used to serve web based applications and enterprise based applications(i.e sevlets, jsps and...
  4. Answers
    1
    Views
    2,714

    Re: I am missing footer part in design process

    Hi,
    in jsp,
    <bean:message key="name"/>
    in struts-config.xml file,
    <message-resources parameter="ApplicationResources.properties"/>
    in ApplicationResources.properties,
    name=message what do u...
  5. Answers
    6
    Views
    9,506

    Re: MVC Architecture in STRUTS

    HI,
    for any web application client and server require.this is called 2 tier architecture.
    In this, client is responsible to develop presentation logic and business logic.
    and server is...
  6. Re: How can validate the form fields with action path

    Hi,
    instead of using form bean name at name attribute use action path.
    like
    <form-validation>
    <form-set>
    <form name="action path">
    <field property="username"
    depends="required">
    ...
  7. Answers
    5
    Views
    5,052

    Re: Can you tell me What is Data hidding

    Hi,
    to reduce the complexity we use data hiding. we use external data to do the task by ignoring the internal data which is hidden.

    i give ex: take a car have so many parts we ignore all the...
  8. Answers
    5
    Views
    5,034

    Re: method overloaing?

    Hi,
    By using method overloading we can reduce the complexity.
    take a example i want to add two numbers of type int , float , char. at this time no need to write different methods. will overload...
  9. Answers
    3
    Views
    12,242

    Re: achieve Encapsulation in Java

    Hi
    take a class and define members (i.e variables and methods). class encapsulate members by controlling the access of the members. this controlling is handled by access specifiers.
  10. Answers
    4
    Views
    3,797

    Re: servlet - struts

    Hi,
    controller part is developed by servlet components. whenever client make a request,
    front controller used to identify the request and give to the specific request processor which is used to...
  11. Answers
    2
    Views
    11,049

    Re: Form Bean vs Action Form

    Hi,

    Form bean is bean class it defines set, get, reset, and validate methods used to handle the form which is sent by the client. controller take responsible to handle the form by using form bean...
  12. JSP Re: When I submit the JSP page it is not going to servlet

    Hi,

    1. check jsp page action path name like login.do.which is same as class path.
    2. check web.xml for mapping of ActionServlet with *.do. and servlet-class tag with...
  13. Answers
    4
    Views
    7,677

    Re: Memory allocation

    Hi,
    In c, memory allocated by calling methods such as malloc(), calloc(), and realloc().. deallocation is occured by free().
    In c++, memory allocated by new Operator. deallocation is occured by...
  14. Re: Difference between interface and abstract class? are they both same

    Hi,
    Abstract class may declare concrete methods also. One class extends only one abstract class.
    interface should declare only abstract methods. One class implement one or more interfaces....
Results 1 to 14 of 15
About us
Applying for a job can be a stressful and frustrating experience, especially for someone who has never done it before. Considering that you are competing for the position with a at least a dozen other applicants, it is imperative that you thoroughly prepare for the job interview, in order to stand a good chance of getting hired. That's where GeekInterview can help.
Interact