| Thread | Last Post | Replies |
|
| Multithreaded Throughput Degradation in Java/Oracle Application | 31 Jul 2003 06:06 GMT | 5 |
I have a multithreaded Java application which a part of a standard three tier architecture. There are some users in the database and each user can request his account details (such as the items they've bought). Each user request is executing on a separate thread borrows a
|
| How to Call two servlets | 28 Jul 2003 19:58 GMT | 5 |
My most of programming experience is in Microsoft tools. mainly ASP. And in ASP we can "Include" one ASP file in an another ASP file. Can we do some thing similar with Servlets also.. Say i want to Display two Lines on my Web page.
|
| Hyperthreading in Java | 27 Jul 2003 17:39 GMT | 2 |
I have a java application which is supposed to run as a server. It is on a dedicated machine with MP capabilities, but currently running 1 Xeon processor with hyperthreading. The hyperthreading is causing the process to receive no more than 50% of the
|
| Threads question | 25 Jul 2003 08:56 GMT | 1 |
I've been trying to understand how wait() and notify() work but even Sun's own explanation (here, http://java.sun.com/products/jdk/1.2/docs/guide/misc/threadPrimitiveDeprecation.html ) isn't clear and doesn't give a working example.
|
| String ' | 24 Jul 2003 22:06 GMT | 2 |
I have a string s = "1 '2 \'3 4 '5"; How can I retrieve the string from single quote to another single quote and kept the escape letter "\"? i want the String retrieved = "'2 \'3 4 '";
|
| My trouble with interfaces...and their contracts | 20 Jul 2003 08:52 GMT | 2 |
I generally prefer to use interfaces rather than abstract classes, for several reasons including the ability to implement multiple interfaces and, to me, "cleaner" polymorphism. But, as I write this, I am working on something that has troubled me before,
|
| java.io.BufferedWriter and java.io.PrintStream - a seeming parameter/argument mismatch in method invocation | 19 Jul 2003 19:46 GMT | 1 |
Hi, I was just examining the SDK API and noticed this method in PrintStream: private void write(char buf[]) { try { synchronized (this) {
|
| JSP/Bean/Custom Tag Design Question | 17 Jul 2003 12:12 GMT | 1 |
I'm working on my first JSP application and I've run into a design problem that I can't seem to find a good solution to. I need to access a dynamic list of files and display some information about each of them in a table in a JSP page.
|
| do self references cause memory leaks in Java? | 17 Jul 2003 00:13 GMT | 9 |
Hi, I am doing some work with Java and C++ and am curious as to whether self references in Java cause memory leaks. For example: class Test{
|
| Need help with posting to CGI from javascript | 14 Jul 2003 12:39 GMT | 2 |
Here is a function that is declared in my html page. It is part of a series of javascript that allows the user to draw a rectangle on a graphic. This is called when the box is done, so I would like to send the screen coords which I know already to a cgi script at this point below. ...
|
| Applet reading from http server ? | 14 Jul 2003 10:40 GMT | 6 |
I am writing a very small Applet that reads some files via http from different servers and reports some result. I am using the usual code: ..
|
| How do I call cgi from javascript | 09 Jul 2003 12:47 GMT | 1 |
I have an html page that uses java to zoom in and out of an image. I just want to be able to call a cgi script from the form in the html. The java allows the user to drag a box to any size on the jpg. As soon as the user completes the box, how do I call the cgi script to send the ...
|
| How do *you* deal with finding properties files? | 09 Jul 2003 08:48 GMT | 1 |
As a followup to my previous posts, what method do YOU use for finding properties files? I'm not talking about things that are doing to be displayed, necessarily. More along the lines of this... let's say you've got 5 properties files:
|
| OO programs in Java... or not? | 08 Jul 2003 20:32 GMT | 2 |
All, Just out of curiosity, when a programmer is writing a Java program, say, a Customer Maintenance program (reads from customer file, changes data, writes back to customer file, etc) does it have to be written as an Object Oriented
|
| JVM is hanging my system under Win2kSP4 | 08 Jul 2003 19:02 GMT | 3 |
I've tracked this problem down to the Java SDK/VM itself, i think, but i'm kind of stuck as to how to proceed from here. Basically, it goes like this: Due to growing complications with my previous install of Windows, i had to reformat and rebuild the system - the usual 6-month
|