Raj Srimandal

Greenhorn
+ Follow
since Mar 13, 2008
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 Raj Srimandal

I have a webservice returning me a response which pretty much looks like this


I have an Xpath Util which uses Xpath to traverese and read this piece of code


But answer 1 and answer 2 retrieved are same..

Any help is appreciated !
Currently we are running Weblogic Server 10.3.
The Max startup time set is 10min.Is there any way we can edit the weblogic server startup time?
12 years ago
When ever iam trying to create a new web service using apache axis runtime in jdk 1.6 and Window 7..I get the following error
IWAB0489E Error when deploying Web service to Axis runtime
axis-admin failed with http://xml.apache.org/axis/}HTTP (502)Bad Gateway
Also iam in a corporate network...which i think might be the possible cause..


Although the same settings work for Windows Xp..when reproduced similarly..
13 years ago
Thanks Jes you did echo my thoughts and also an excellent explanation..
13 years ago
Why jvm doesnt give any compile time check and points errors when i have private or public constructor in a abstract class..anyways i cant say new on a abstract class??

public abstract class AbstractClass{
private AbstractClass(){

}
}

13 years ago
What if there was a exception in finally block itself?

13 years ago
Is there any way we can stimulate a out of memory error in a program by using unreachable thread references?
13 years ago
What is the purpose of finally block (i know Mandatory statements are written in finally block)..


But outside of the catch block statements are also executed.i write mandatory statements out side the catch block.



So why do we need this finally block?
13 years ago
Thanks Chris and Fred..

How is the JVM is letting me do this

Child c =(Child) new Parent();
13 years ago
I have a concrete Parent class(ParentClass) and Child Class(ChildClass) which inherits from ParentClass.I cannot say

ChildClass childClass=new ParentClass() ..i.e this is a compile time check
Does anyone know WHY?

13 years ago