Search the web
Sign In
New User? Sign Up
pinoyjug
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 11943 - 11972 of 19874   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
11943
... From: Paul Meim <paul@...> Date: Nov 1, 2005 11:06 PM Subject: [dlsu_ccs_alumni] JOB OPPORTUNITIES in Hewlett-Packard Asia To:...
patlv23
Offline Send Email
Nov 2, 2005
10:02 am
11944
... System.exit(n) kills ALL threads running. Try it. :D...
Renato Patong
top_nato
Offline Send Email
Nov 2, 2005
10:02 am
11945
... 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: ...
Miguel A Paraz
mparaz
Online Now Send Email
Nov 3, 2005
1:06 am
11946
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....
carlo liwanag
carloliwanag
Offline Send Email
Nov 3, 2005
1:08 am
11947
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 ...
Jojo Paderes
jojopaderes
Offline Send Email
Nov 3, 2005
1:08 am
11948
Although that is possible below approach is what i recommend. class MyRunnable extends Runnable { Thread thread; public void run() { thread =...
harold alcala
haalcala
Online Now Send Email
Nov 3, 2005
5:34 am
11949
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...
Jeff Gutierrez
jeffgoot
Offline Send Email
Nov 3, 2005
6:27 am
11950
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...
just_irick
Online Now Send Email
Nov 3, 2005
3:14 pm
11951
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...
Albert Sun
makemydomain
Offline Send Email
Nov 3, 2005
3:15 pm
11952
For the enlightenment of everyone, I think it should be: //Since Runnable is an interface class MyRunnable implements Runnable{ public void run(){ //your code...
Jared Odulio
audrey_flo
Offline Send Email
Nov 3, 2005
3:17 pm
11953
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...
carlo liwanag
carloliwanag
Offline Send Email
Nov 3, 2005
3:18 pm
11954
... Ironic, as it seems to be the Geronimo/Codehaus community who is active in SOA. James Strachan & friends. ... Great news!...
Miguel A Paraz
mparaz
Online Now Send Email
Nov 3, 2005
3:18 pm
11955
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...
Melvin Dave Vivas
bugsy_700
Online Now Send Email
Nov 3, 2005
3:20 pm
11956
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...
voicecoders.com - HRD
jmcontrolph
Offline Send Email
Nov 4, 2005
2:05 am
11957
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...
Jared Odulio
audrey_flo
Offline Send Email
Nov 4, 2005
2:06 am
11958
Can u give us the code on the servlet which causes the outofmemoryexception...
fdaria@...
fdaria
Offline Send Email
Nov 4, 2005
2:07 am
11959
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...
Marky
ph_markymark
Online Now Send Email
Nov 4, 2005
7:18 am
11960
someone might copy/paste the code below so here is the correct one byte buffer[] = new byte[1024]; final int EOF = -1; for( ;; ) { int readLength =...
Warren Mira
warrenmira
Offline Send Email
Nov 4, 2005
8:19 am
11961
Yeah right! Sorry about that! We're talking about approach anyway....
harold alcala
haalcala
Online Now Send Email
Nov 4, 2005
2:06 pm
11962
Are you uploading the file or are you letting your clients download the file? John Paul Alcala Software Engineer Sequel Solutions, Inc. _____ From:...
John Paul M. Alcala
ore_wa_drago...
Offline Send Email
Nov 5, 2005
9:05 am
11963
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...
Calen Martin D. Legas...
calenmartin
Offline Send Email
Nov 7, 2005
5:13 am
11964
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...
Prinsipe Ybrajim ng S...
top_nato
Offline Send Email
Nov 7, 2005
5:14 am
11965
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)...
jonathan_vallar
Offline Send Email
Nov 7, 2005
5:15 am
11966
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...
Calen Martin D. Legaspi
calenmartin
Offline Send Email
Nov 7, 2005
5:15 am
11967
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...
ian tabangay
just_irick
Online Now Send Email
Nov 7, 2005
5:15 am
11968
here is a snippet of the code. Thanks for all your comments. byte[] messageBytes; int messageBytes; public synchronized void saveChanges() throws SOAPException...
ian tabangay
just_irick
Online Now Send Email
Nov 7, 2005
5:15 am
11969
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...
carlo liwanag
carloliwanag
Offline Send Email
Nov 7, 2005
5:16 am
11970
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. ...
Calen Martin D. Legaspi
calenmartin
Offline Send Email
Nov 7, 2005
5:55 am
11971
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...
Jeffrey J. Jarin
jeff_jarin
Offline Send Email
Nov 7, 2005
6:16 am
11972
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...
Jeffrey J. Jarin
jeff_jarin
Offline Send Email
Nov 7, 2005
6:43 am
Messages 11943 - 11972 of 19874   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help