| Thread | Last Post | Replies |
|
| Cast, generics and clone problem | 19 Mar 2005 16:52 GMT | 15 |
I am trying to deep-copy a complex data type. To that end I implemented clone() for all the types involved and I am having problems with generics. It's much harder to explain than to show, thus let me show a silly example which demonstrates it:
|
| How do you set up Apache and J2EE | 19 Mar 2005 14:32 GMT | 1 |
I need to alter a servlet in J2EE I need to know if eveything is setup correctly. Can anyone follow me through this. Please help.
|
| Basic Servlet Engine Question | 19 Mar 2005 12:35 GMT | 5 |
I have been using jserv with Apache 1.3 quite successfully. Now I am switching to Tomcat and find that this is a moster, a total overkill for what I need. Can you suggest anything smaller?
|
| response.sendRedirect() and other disasters | 19 Mar 2005 02:40 GMT | 4 |
Here is my problem. Let's say I am designing some kind of online store. If the user attempts to review their account per the 'myAccount.jsp' page and they have not logged in, they should be redirected to the 'login.jsp' page instead. There are a few additional
|
| Need help w. NullPointerException. | 19 Mar 2005 01:29 GMT | 2 |
i find myself in need of some help/assistance for a servlet that compiles okay, but when I try to execute it in my browser I always get a "java.lang.NullPointerException" server error!!! The servlet, incidentally, is one that is supposed to render a image. I have no idea of what ...
|
| Loading Native DLLs in JSP/servlets | 19 Mar 2005 00:28 GMT | 1 |
OK, I've got an object that needs to load a native DLL. So, I put the System.loadLibrary(...) call in the constructor for that object. This object is called from three different JSPs that instantiate the object. When I run the JSP for the first time, I get the following error
|
| Embedded Database for Java Desktop | 18 Mar 2005 23:22 GMT | 14 |
What is the best embedded database (low cost or free) that I can use for a Java Accounting Desktop Application? Regards, james
|
| Are there any advantages to using static methods? | 18 Mar 2005 23:00 GMT | 10 |
Folks, I have JBuilder 2005 and the code audit functionality continually warns me that instance methods can be made static when they do not reference a instance variable.
|
| Java reporting wrong IP address in SuSE 9.2 | 18 Mar 2005 22:33 GMT | 2 |
I have a strange problem. When I try to determine my machine's IP address from Java (ver 1.4.2_06), I get the wrong result. It reports 192.168.0.88 when the address is actually 192.168.0.60. I am running SuSE 9.2.
|
| pooled connection myth | 18 Mar 2005 22:26 GMT | 42 |
I want to send an email to people in my unit containing something similar to the following and I would appreciate comments first: When putting frameworks together they are made with the idea of being extensible. Because of that, big nebulous words, concepts, and abstractions
|
| Regular Expressions | 18 Mar 2005 21:43 GMT | 3 |
I want to remove the first occurance of an xml tag from a string e.g. from "<x><y>...</y><y>...</y><x>" to "<x><y>...</y><x>" the problem I have is remove first with "<y[ >].*</y>" goes for the right most match and gives "<x><x>" how can I make it take the left most match.
|
| jar executable | 18 Mar 2005 19:35 GMT | 1 |
I created a jar which is executable.Is it possible to set the path to java runtime in the jar without setting path by useing a batch file. In other words, I know the system has JRE and I know the location, but JRe is not set in Windows path. I would like to set this path before the
|
| [STRUTS] ActionForm reset | 18 Mar 2005 18:14 GMT | 5 |
I have a problem about the resest method of an ActionForm object. Basicaly at the end of an execute method i would like to reset the value passed to the current page. So i write somethig like that:
|
| JDK flaw: missing CanContainCopies interface? | 18 Mar 2005 17:00 GMT | 3 |
When you use a collection, and the only think you need to assume is that the Collection can handle copies: public void add(Collection c) { c.add(new Integer(1)); c.add(new Integer(1));
|
| SkipPageException -- where? | 18 Mar 2005 16:12 GMT | 4 |
So I was trying to look at the *_jsp.java sources created by Tomcat 5.0 (so I can step through them for debugging), and I couldn't compile those because they had SkipPageException, which was not in my compile-time classpath.
|