kumar Nagesh

Greenhorn
+ Follow
since Jan 02, 2007
kumar likes ...
Tomcat Server
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by kumar Nagesh

When I'm trying to upload one .ear file and .jar file on to weblogic server I'm getting following error.

<Oct 26, 2011 10:35:02 AM CDT> <Warning> <Deployer> <BEA-149189> <Attempt to operate 'deploy' on null BasicDeploymentMBean for deployment DataReplication-one.ear. Operation can not be performed until server is restarted.>
<Oct 26, 2011 10:35:37 AM CDT> <Warning> <Deployer> <BEA-149189> <Attempt to operate 'deploy' on null BasicDeploymentMBean for deployment DataReplication-one.ear. Operation can not be performed until server is restarted.>


Deployement is not successful.

Please advise me how can I get rid of this error. Thanks in advance.
please provide any free plugins to eclipse 3.5.1 to draw class and sequence diagrams.
please help me it is very urgent.
Hi Friends,
we are doing reverse engineering 6 years old application.
I have code setup in eclipse 3.5.1 I have to draw class diagrams, sequence diagrams by reverse engineering
Is there any plugin or tool for the eclipse, please help me
thanks in advance

- kumar
Hi,

I didn't find at http://www.sun.com/training/catalog/courses/CX-310-230.xml
which one to take better CX-310-230 or CX-310-220
please guide me... thanks in advance..



pease reply anybody ... I am waiting for reply.....thanks in advance
15 years ago
interface Seputura {
public class Inner {
Inner(){
System.out.println("Inner created");
}
}
}

public class InterfaceSeputura {

public static void main(String[] args) {

new Seputura.Inner();
}
}
15 years ago
StringBuffer sb1 = new StringBuffer("Hello");
StringBuffer sb2 = new StringBuffer("Hello");
if(sb1.equals(sb2)){
System.out.println("String Buffer False");
}
if (sb1 == sb2) {
System.out.println("False");
}
15 years ago
generally this question will be asked in the interviews to test our skills on various technologies.
15 years ago
How to give rating on java,jsp and servlets on a scale 10.
1 is lowest and
10 is highest
15 years ago
i have called two static synchronized methods of a class at a time will it work one by one or simultaneously
15 years ago
I will create an arraylist object and i will pass to a method,
this method should return that arraylist object which is synchronized.