how to run servlet program between two computer through the
internet ?
Answers were Sorted based on User's Feedback
Answer / bujji
server instal one system,then deploy application in the
server. send the request from anther system by using
address like http://domain name:port no/app name
Is This Answer Correct ? | 12 Yes | 4 No |
Answer / iq
If servlets in the same application need with
requestDispatcher() we can run the program.
If Servlets in diffrent applications we should use
sendRedirector()to run the program.
Is This Answer Correct ? | 8 Yes | 9 No |
how can be object class inherited to all class in a program when java does not support multiple inheritance??
What is the difference between yield() and sleep()?
What is the main functionality of Prepared Statement?
What is exception and error? and what is the difference between them?
Does java support Operator Overloading?
byte a=5; byte b=5; byte c=a+b; System.out.println(c); whats the o/p?
Is it possible to write JAVA program without including any of the packages,such as "import java.io.*"; bcoz I instantly wrote a code without "import..." statement and runned the program on command Line & it worked. the code is: class Person { String name; int age; Person(String s,int a) { name = s; age = a; } accept() { System.out.println(name+"Hi!!!!!"); System.out.println(age); } } class Demo { public static void main(Strings args[])throws IOException { String name = args[0]; int age = Integer.parseInt(args[1]); Person p = new Person(name,age); p.accept(); } }
How to connect to a remote database using Applet?
How can we create a thread in java?
What is the difference between a Window and a Frame?
How many types of modifiers are there?
Explain what access modifiers can be used for variables?