... Apparently, just announced but not yet "shipping." I'm preparing for the continuation of my Geronimo talk. What are you guys interested in? So far I have: ...
I already found a way on killing the thread. I followed the replies from the other people in the thread. I used a boolean variable and chaged the run method....
Interesting... Ruby seems to be worth trying out. http://www.ebcvg.com/press.php?id=1761 "I was working an a project with Justin Gehtland with a small startup ...
Hello, hello! I'm attending my local JUG's meeting tomorrow. The topic is Service Oriented Architecture with J2EE Web Services. The presentor is Anil...
Hi guys. I would like to ask for your suggestions on how to avoid having OutOfMemoryException either on the server application or a client application when...
You can also try UP ITTC. It is part of UP Diliman but mostly catering to professionals who want to shift into IT. Their school is located at the back of the...
For the enlightenment of everyone, I think it should be: //Since Runnable is an interface class MyRunnable implements Runnable{ public void run(){ //your code...
i see, okay i'l try your approach. harold alcala <harold.alcala@...> wrote:Although that is possible below approach is what i recommend. class MyRunnable...
I think you should implement Runnable since it's an interface. ... -- The only true wisdom is in knowing you know nothing - Socrates Remember, Google is your...
Hi, I am not a java developer and has been a silent member of this group and only has the intention of scouting talents in the java community. However this...
Depends on what web framework you're using, with WebWork2 you can set the file size limit in the webwork.properties file ... -- http://jaredtech.blogspot.com...
Stream it. For example: while( i >=0){ byte b[] = new byte[256]; i = inputStream.read(b); outputStream.write(b); } Dont read the whole thing into memory and...
Has anybody used Trac (http://www.edgewall.com/trac/ )? It's an issue tracker that integrates closely with Subversion. I did a quick google but didn't find...
the while(true) and for(;;) loops both do an infinite loop and both are understood by java programmers. But the question is, which of those two infinite loops...
My company is in need of a java developer. He or she has experience on: 1) Web progamming using java servlets, java server pages 2) HTML programming 3)...
Hi, all! I'm developing some Java / OOAD trainings and am looking for sample project requirements for exercises and machine problems. I have the following...
Actually the client is sending and receiving SOAPMessages with attachments that can go as high as abt 10Mb. As it is the code can only send around 1Mb of...
here is a snippet of the code. Thanks for all your comments. byte[] messageBytes; int messageBytes; public synchronized void saveChanges() throws SOAPException...
I'm not that really good in C++ but I appreciate the help. I think the catching of exceptions can already distinguish if a thread has terminated succesfully or...
Hi, all! Just read an email from Sun that these vouchers are only good up to the end of November. If you'll purchase, be ready to take the exam right away. ...
I think you wont be able to do it in that way, cause there are limitations in memory, you can read the file chunk by chunklets say 64KB and then write it out...
Follow up im not saying that u have to chunk it to 64 KB but depends on your compiler if your saying it can only occupy a 1 mb try to check the the heapsize...