| Thread | Last Post | Replies |
|
| Passing exceptions between threads | 05 Apr 2005 23:41 GMT | 3 |
I've been trying to setup a thread class that runs for a specific amount of time, then interrupts the original thread using an exception. So, here is an example: SomeRandomClass.class
|
| FOP and XSLT <xsl:import> issue | 05 Apr 2005 22:57 GMT | 1 |
I am trying to build a PDF page from an XML and an XSL:FO document from inside a servlet. My XSL:FO is using <xsl:import> to reference additional stylesheets for style as well as other support templates. These support stylesheets are in the same directory as the master
|
| Struts web app - how to maintain list of connected users? | 05 Apr 2005 22:42 GMT | 1 |
In a Struts based JSP web app how do you keep a list of connected users?
|
| Help with exec | 05 Apr 2005 21:15 GMT | 2 |
I'm trying to do compile + execute a java program from within another java program... COnsider the following code: ..... Process p1 = Runtime.getRuntime().exec("javac stub.java");
|
| How to write a class for immutable object? | 05 Apr 2005 19:52 GMT | 22 |
How to declare, define and implement a class that represents an immutable object? In other words, for what traces in their source codes and APIs could we discern Java API String, Long et al are classes for
|
| JTree problem (0/1) | 05 Apr 2005 18:48 GMT | 3 |
For a project I'm working on I'm building a GUI that uses a JTree. This tree represents groups of hardware. Each node represents such a piece of hardware. The name that is presented by the node is either the ip-address or the name of the system and possilby a different color when ...
|
| clear rows of JTable | 05 Apr 2005 17:32 GMT | 2 |
I have a JFrame with a JTable where some lines with two columsn are displayed. I want to write a function where all rows of the table are cleared. My JTable has a DataTableModel model. So I thought I have to remove the rows of the model to delete the rows from the JTable with
|
| Read file from jar when applet loaded by Tomcat | 05 Apr 2005 17:26 GMT | 2 |
I'm trying to get an applet to load a file from its jar-file. I can do this by the usual Class.getResource(filename) provided I use an absolute URL for the codebase in the APPLET tag. However, what I want to do is serve the HTML from Apache and the jars from Tomcat (the applet read ...
|
| Inactive Oracle Sessions due to JSP | 05 Apr 2005 17:16 GMT | 2 |
I have a web application made up of JSPs and Servlets. The JSPs connect to a database via JDBC connections in order to execute queries and return results. I have noticed that there are a number of "inactive sessions" appearing in the Oracle database which have been created by
|
| JNI Stack Problem | 05 Apr 2005 16:05 GMT | 2 |
Hi, I have a problem with the JNI in that I am trying to run some C code using a Java GUI. The problem is is that I create some v large arrays in my c code that the JVM apparenty cant deal with. - arrays of say 50,000 elements. I have tried to increase the stack size using the
|
| How to add index to ForEachTag (c:forEach as Java)? | 05 Apr 2005 16:02 GMT | 1 |
I'm wishing to write JSP pages that have varying background colors for each line in the list. A simplistic way of doing this is: <c:forEach items="${myorders}" var="orders" varStatus="loop"> <tr height="20"
|
| Retrieving LDAP entries from Active Directory | 05 Apr 2005 15:31 GMT | 12 |
I am using JNDI to retrieve records from Active Directory. For some of the users the following snippet throws a NullPointerException: int userAccountControl = Integer.parseInt((String)att.get("userAccountControl").get());
|
| JSTL or Struts taglibs? | 05 Apr 2005 14:08 GMT | 2 |
Does it make a difference which you use? Pros/cons?
|
| Problem with html:select inside of c:foreach | 05 Apr 2005 13:48 GMT | 1 |
I have code like this: <c:forEach items="${myOrders}" var="orders" varStatus="loop"> <tr> <td>
|
| generated jsp source weblogic | 05 Apr 2005 13:39 GMT | 7 |
Is there a way to keep or view the source that is generated when the jsp is compiled? I am getting an error, as I sometimes do, and feel I could much more quickly identify the problem if I could actually view the source.
|