jai jai

Greenhorn
+ Follow
since Mar 03, 2005
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 jai jai

Hi,
I am facing a strange out of memory exception in my stand alone java application.

When i test the memory leakage with jprofiler i could find a object named marketupdateagent$2 is not garbage collected.

But when i try to see the heapwalker for that object i am getting a message like no objects of marketupdateagent$2 could be found in the heap snap shot.
But this object is gradually increasing and occupies huge memory.

Why it is not showing the allocations,references in the heapwalker?

If it is weekly refernced object means it will be garbage collected right???


Then i couldnt able to trace the problem. Can you guys help me to get out of the problem? It is very urgent for me.


Thank you,
Jai
17 years ago
Hi guys,
this is jai.My problem is Jboss is not loading the web pages after starting.My ear file is deployed and jboss is restarted without any problem.

after that when i open my login page and trying to login it is not moving from the login page to next page.if i see the jboss console no exceptions thrown and i have given some SOP's to test how it is loading in the login page.

If i test like that it is printing the SOP's very slow and even i am not able to login.what might be the problem.


i am using jboss3.2.3 version and windows 2000 professional with 512MB RAM


Please help me guys.

waiting for ur reply.

bye,
jai
18 years ago
HAI guys,
I have a DTS(Data Transformation Services) package.By using Java code can i run the DTS package.If it is possible give me some details about that.


thanks,
regards,
jai
18 years ago
class An extends Thread
{
private int i;
public void run()
{
i = 1;
}
public static void main(String[] args)
{
An a = new An();
a.start();
System.out.print(a.i);
}
}



Hai when i invoke this program it is giving output as 0.But my expectation is 1.Why it is giving like this.

pls genius help me to understand the concept behind this program.

thanks,
jaijai
hi ,
i have a doubt on java constructor.
the question is i have a class named example,
for this class which one will be the constructor
example() or void example().pls help me to clear this doubt.if both are constructors means is there any difference between them?


thx
jai
19 years ago