chintan shah

Greenhorn
+ Follow
since Oct 05, 2008
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by chintan shah

hi, i've been using the glpk jni 4.8 for solving my linear programming problems.
the main interface used to solve LP is the GLPKSolver interface.

when the gc tries to reclaim the memory from the GLPKSolver object....an exception occurs saying
" ufree: ptr ..... memory allocation error"

this prevents me from solving large number of problems continuously.
the occurance time of the error is uneven as it occurs when the gc runs.

i am using windows xp, java 1.6, glpk_jni 4.8.
please help... ops:
16 years ago
can a daemon thread outlive the main thread that created and turned it to daemon?
Also,
It is said that garbage collector is a daemon thread used by JVM.
can anyone tell where and when it is spawned?
16 years ago
is there any way to access a variable local to a method in the jsf page....if yes then please explain how.
16 years ago
JSF
can a collection from a backing bean be displayed on a jsf page without writing the getters n setters for the collection in the bean???

and can a jsf display a local variable in a method of a backing bean???
16 years ago
JSF

here either the radio button group works fine or the rest of the command links and buttons work fine....
not both....
if the radio button group is cut then the rest of the command links triggers the action handlers but if the radiobutton is present then none of the action is triggered.....
if the menulist rendering is made static then the rest of the code works fine....but if it is dynamic then the command buttons and links in rest of the code does not work....

typically illogical problem....please help...
[ October 14, 2008: Message edited by: chintan shah ]
16 years ago
JSF
when you get the result data into your ResultSet, the cursor is placed before the first row...hence you need to use the next method on the resultset object to place the cursor on the correct position and then try extracting data from it
cheers!!
how do i implement paging with the dataTable tag, when the list to be displayed holds very large data set.
can someone show me the class extending the ListDataModel class which contains this logic.
16 years ago
JSF