| Thread | Last Post | Replies |
|
| Include an HTML output into JSP | 20 Dec 2006 16:42 GMT | 1 |
I have one Perl script what return a character string. I can access it with this URL: https://localhost:4444/perl/ps01.pl The result might look like this: ABCD1234. OK
|
| parallel gc versus serial gc | 20 Dec 2006 16:24 GMT | 3 |
We use oracle application server and have some pausing problems inside the java vm. The problem shows itself as pausings of executions , when clients start to get late responses ( here lat e means < 4 sec. ) , i see more than 10 garbage collector operations . The client ...
|
| Socket disconnect on client end | 20 Dec 2006 16:13 GMT | 6 |
Can anyone tell me how I can tell if a socket has been disconnected on the client end? I've got a class that creates a SocketServer to listen on a port and when an connection is initiated it hands the socket off to a thread. I want to be able to tell when a socket gets ...
|
| literal string expansion | 20 Dec 2006 15:16 GMT | 2 |
I have 150 checkboxes named jCB001...jCB150. How would I loop through them in a for/next loop performing actions on them. If I held their names in an array, how would I make use of that String in the array to reference the checkbox object? Is there a way
|
| composition and inner classes | 20 Dec 2006 13:58 GMT | 3 |
As per the definition i found, With composition, the part object may belong to only one whole; further, the parts are usually expected to live and die with the whole. How to handle this in java, I saw few C++ codes where they handle
|
| Problems with Continuum and Subversion over https | 20 Dec 2006 11:35 GMT | 6 |
We are working on setting up a development environment based on Maven 2, Subversion via https on Apache, and using the Continuum tool for continuous integration. We managed to get Continuum up and running, and managed to add our Maven 2
|
| Getting XML Header in XMLBeans | 20 Dec 2006 10:40 GMT | 2 |
I'm using XMLBeans for generating xml files. But it doesn't seem to be printing the XML Header line at the top - <?xml version="1.0" encoding="UTF-8"?>. Can someone tell me how to get XMLBeans to add this to the XML?
|
| How do i read a .properties file with tomcat 5.5/jstl 1.1.2? | 20 Dec 2006 01:53 GMT | 2 |
I have Tomcat 5.5.20 and jakarta-taglibs-standard-1.1.2 I try to use the form: "<fmt:message key="tittel"/>" in a JSP page, but it shows up as: "???tittel???" I've copied the jstl .jar files to my WEB-INF/lib directory, and fmt.tld &
|
| Including jsps/html files from remote host into our JSP | 19 Dec 2006 23:58 GMT | 4 |
I have a question related to JSPs. We have few JSP files and HTML files in our webapp. The JSP files have jsp:include directives to include different HTML files. Now we plan to shift all HTML files to a different location - machine having apache installed (might be on same
|
| Mp3 Splitting Library | 19 Dec 2006 23:41 GMT | 4 |
I just wish for a simple library for splitting MP3 files. I don't want to decode or encode wavs, etc. Something like MP3Splt but in a Java Library would be ideal. I have scoured the web for this, but I can't seem to find anything. Am I missing something? Is there an existing
|
| Reading array of unknown size from file to array | 19 Dec 2006 23:14 GMT | 2 |
My program needs to read contents of a file into an array , for example my file contains : 4 3 4 2 3 1 5
|
| Timer in Java | 19 Dec 2006 22:06 GMT | 2 |
I am running the following code, but it never terminates: import java.util.Date; import java.util.Timer; import java.util.TimerTask;
|
| Computatonal geometry | 19 Dec 2006 21:22 GMT | 2 |
I'm looking for an computational geometry library in JAVA. I espacially need polygon operations.Something like CGAL library in C++. thx
|
| URLClassLoader | 19 Dec 2006 21:01 GMT | 1 |
I need to understand ClassLoader s for something, so I am starting with URLClassLoader to get started. I've fallen down before the first hurdle unfortunately. It might be a problem with the URL. I've not touched these before.
|
| How to use wait() and notifyAll() in simple container object | 19 Dec 2006 20:32 GMT | 12 |
I have a simple container object that has a get and set method for a variable it contains. Multiple threads will potentially be accessing the container object to get and set the variable. Can anyone tell me what's wrong with the code I have below? It's not working for me...
|