| Thread | Last Post | Replies |
|
| jdbc problem | 16 May 2006 18:54 GMT | 3 |
I have the following code that just hangs I left it for 5 Minutes and nothing had happen any ideas? I left out the full url, usename and password of the connect for security but its correct.
|
| ejb2.0 Entity beans clob | 16 May 2006 17:22 GMT | 1 |
At this moment I'm having a problem updating the database using an entity bean. the column to update is a clob. when i do an update using a small amount of data it goes perfect..
|
| ejb3 struts | 16 May 2006 17:09 GMT | 1 |
How can i call an EJB3 session bean from the action class of a struts webapp? I have the ejb3 deployed and the struts webapp. I don't know how to call the ejb3 from the action class.
|
| Does java.nio.FileChannel automatically buffer writes? | 16 May 2006 16:27 GMT | 2 |
Hi, I am using java.nio.FileChannel to write out very large files. Each call to channel.write() only writes a few bytes at a time. Will my program run faster if I build up a large ByteBuffer before calling channel.write() or do FileChannels automatically buffer for you?
|
| Can anyone recommend a good IDE | 16 May 2006 16:20 GMT | 5 |
Is there an IDE for java development that compares well to VS2005? Since I'm current using VS2005, I was hoping to find something familiar in the look and layout. Thanks
|
| To store a huge table during start-up of a J2EE application | 16 May 2006 16:08 GMT | 6 |
Rather than making a db query all the time, I am considering the design of stroing a huge table( with 12 columns and may be about 500 rows) in some data structure , during start-up of my servlet. Memory is not a constraint, thats why we hare going for such an implementation. ...
|
| What are the right tools for the job? | 16 May 2006 16:00 GMT | 10 |
Yes, it's a tired old question, but I have to ask. <g> I'm likely to be starting out on a long-term development shortly. By long-term, I mean about 12 months to get a base product and then a further 12 months to build to enterprise level functionality. And then
|
| Log4j LevelMatchFilter problems | 16 May 2006 15:38 GMT | 1 |
I have a log4j.xml that contains three appenders. One uses a LevelRangeFilter and two use LevelMatchFilters. The LevelRangeFilter works correctly but the LevelMatchFilters are logging all levels. Can anybody point me in the right direction? My file is listed below.
|
| Date error checking | 16 May 2006 14:34 GMT | 1 |
java.sql.Date sqldate = java.sql.Date.valueOf( year+"-"+month+"-"+day ); How can I check if a date is vaild because using this day=38 month=15 is still vaild.
|
| Dump complete java VM state as core dump (not via OS) possible? | 16 May 2006 11:26 GMT | 11 |
I've a problem debugging an application. Background: Sometimes my application comes to a very unlikely state, which at the moment results in an error message. The stack trace alone has no great value, since this state is cause by the interaction of
|
| A regular expression that only matches nothing? | 16 May 2006 11:21 GMT | 3 |
Can such a thing be done? To explain myself a bit better I need a regular expression that will only match an empty string ("") - if there is any text in the string I don't want it to match. Won't go into why, it would take too much
|
| Forward a request to another domain | 16 May 2006 09:58 GMT | 2 |
In a filter (javax.servlet.Filter) I try to forward a request to servlet on a different domain name. getContext take only a relative path. This is my code :
|
| RMI - at my wits end | 16 May 2006 09:52 GMT | 3 |
I'm new to RMI and I am having real trouble in invoking remote methods. I have a server program running on my student server which has Java SDK 1.5.0. I seem to have been down every avenue I can think of yet I still can't sort it.
|
| ejb - remote or local interface ? | 16 May 2006 09:52 GMT | 4 |
What is the overhead of calling an ejb via its remote interface (instead of the local interface) knowing that the client and the ejb are within the same application server ? Isn't it close to zero ? Would you then say it is a good advice to systematicly call the ejb via
|
| enum and switch case | 16 May 2006 07:54 GMT | 7 |
Hello group, Is there a way to simulate the C enum type without Java 1.5 such that i can use it in a switch case? Thanks for your reply
|