how to run servlet program between two computer through the
internet ?

Answers were Sorted based on User's Feedback



how to run servlet program between two computer through the internet ?..

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

how to run servlet program between two computer through the internet ?..

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

Post New Answer

More Core Java Interview Questions

how can be object class inherited to all class in a program when java does not support multiple inheritance??

4 Answers  


What is the difference between yield() and sleep()?

0 Answers  


What is the main functionality of Prepared Statement?

4 Answers  


What is exception and error? and what is the difference between them?

2 Answers  


Does java support Operator Overloading?

0 Answers   Flextronics,


byte a=5; byte b=5; byte c=a+b; System.out.println(c); whats the o/p?

7 Answers   NIIT, Wipro,


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(); } }

3 Answers  


How to connect to a remote database using Applet?

0 Answers  


How can we create a thread in java?

0 Answers  


What is the difference between a Window and a Frame?

6 Answers   Infosys, ProKarma,


How many types of modifiers are there?

1 Answers   Infosys,


Explain what access modifiers can be used for variables?

0 Answers  


Categories