How to deploy web appliction in web logic ?



How to deploy web appliction in web logic ?..

Answer / nagababu

Create a war file using command
jar cvf webapplicationname.war *;
Login to weblogic Console.
Goto WebApplicationModules and then goto Deploy New
Webapplication module. Upload ur file option and Browse ur
War file and Upload. select ur war file and choose
Targetmodule and deploy.

Is This Answer Correct ?    4 Yes 3 No

Post New Answer

More OOPS Interview Questions

There are 2 empty jars of 5 and 3 liters capacity. And a river is flowing besides. I want to measure 4 liters of wanter using these 2 jars. How do you do this?

2 Answers  


What is memory leak and memory corruption?

1 Answers   TCS,


You have one base class virtual function how will call that function from derived class?

4 Answers  


if i have same function with same number of argument but defined in different files. Now i am adding these two files in a third file and calling this function . which will get called and wht decide the precedence?

1 Answers  


what is main difference between object oriented object base

2 Answers   Wipro,






Polymorphism with an example?

8 Answers   Accenture, emc2,


Write a program to accept a number and to print numbers in pyramid format? for eg:for a no. 5 1 212 32123 4321234 543212345

7 Answers  


Can a destructor be called directly?

0 Answers  


how many types of notations are in java

1 Answers   National University of Modern Languages (NUML),


What is polymorphism and example?

0 Answers  


Get me an image implementation program.

0 Answers  


#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; wow *b; a.x = 22; b = &a; a.x = 23; cout << b->x; return 0; }

1 Answers  


Categories