| Thread | Last Post | Replies |
|
| moving resources from server.xml into the webapp | 13 Oct 2005 15:37 GMT | 7 |
I have a web-app running under tomcat 5.0.28. In that application i m using 2 resources - oracle jdbc connection pool and mail session. Both are defined in the server's server.xml: <Context path="/JCC" docBase="JCC">
|
| JSP to Servlet: Dynamically Binding Form Data to a Bean?? | 13 Oct 2005 12:34 GMT | 2 |
Pardon me if this seems trivial, but I'm new to JSP/Servlets and I haven't found the answer to problem on the net. I have an input form that is quite large. I want to dynamically bind my form data to a bean, then pass this bean to a servlet. I've found one
|
| Jetty - adding context after starting server | 13 Oct 2005 11:19 GMT | 2 |
hello ng, i have a problem with adding contexts to jetty after the server has been already been started. my code looks like:
|
| Excel documents handling | 13 Oct 2005 11:14 GMT | 5 |
I need to read, modify and save large and compilcated Excel documents using Java. I tried to use POI and JExcelApi but both of them are handling my documents wrong (along with throwing exceptions / warnings) and SoftArtisans OfficeWriter which works very good but is too expensive ...
|
| Random in java | 13 Oct 2005 08:02 GMT | 9 |
I have a question conserning generation of random numbers in java. I'm developing a little cardgame. In order to do so i have created a class Deck which contains of 52 Card objects (which I alsp have created). These "Cards" are stored in an Card array. I want to be able to
|
| Java Arguments for main | 13 Oct 2005 07:56 GMT | 5 |
If I have a main class called test which has the main method. This class receives input from the user via the argument list. as in: java test argument1 argument2 argument3 argument4 Now the issue is that arguments2, arguments3 and argument4 are optional
|
| getActualMaximum of Calendar.WEEK_OF_MONTH confusion | 13 Oct 2005 07:10 GMT | 6 |
For a custom dialog that will allow users to select a date I wrote a JTable that displays the days of one complete month. The JTable gets an instance of GregorianCalendar as parameter. The table has seven columns, first header is "Sun",last header is "Sat". To correctly
|
| A Java applet that acts as an FTP client | 13 Oct 2005 06:46 GMT | 3 |
Hello, A friend wants to create a browser-based FTP client -- with directory listing, download, and upload capabilities. One of the conditions is that very large files (between 20 and 40 MB) will need to be uploaded. Does anyone know of any code that I can build into an
|
| Scaling | 13 Oct 2005 05:45 GMT | 6 |
I have a JTextPane with some styled text in it and i am trying to scale them. What i mean is that assuming that the text inside the JTextPane on startup is a 100% in size. After i click some JButton all the
|
| how to disable a JButton while an op completes? | 13 Oct 2005 05:39 GMT | 8 |
After the user presses the jbutton I want to disable the JButton until an operation completes, at which time I want to re-enable the button. Simply ignoring events would be OK. There is a long operation to complete and I don't want the program
|
| Adding components to JApplet | 13 Oct 2005 05:33 GMT | 5 |
Hi, I have a problem that i can't find mentioned in the archives here. I have a JApplet that gets switched around between states and when the states change I want to show different controls. I can getContentPane().remove() the controls i don't want and then repaint()
|
| open url WITH PARAMETERS in default browser | 13 Oct 2005 03:41 GMT | 6 |
I am trying to automatically open a url from the default browser from a java application. I can open a url in the browser no problem. I have looked at the commonly sited articles here: http://dmoz.org/Bookmarks/D/deadsea/Java_Help/Web_Browser/
|
| JAI - Splitting Multi-page TIFs | 12 Oct 2005 23:30 GMT | 2 |
I've got what I think is a simple task, splitting a multi-page TIF into separate files by page. I've found a few examples online, but only one, here: http://forum.java.sun.com/thread.jspa?threadID=646007&tstart=135
|
| how:sorted list with getIndexOf(Object obj) | 12 Oct 2005 22:00 GMT | 8 |
This should be very trivial and is in C++ Ahhh pointers. but here i am in java. All i want to do is: Dynamically add to an array/list, objects (implemented with
|
| Help with Network Program | 12 Oct 2005 21:03 GMT | 3 |
I've got this great idea for a program but don't really know how to get going on it. I am essentially working on a "Chat" Program. I've created a simple basic command line chat program where one computer acts as a "Server" and a client connects to it over the network. The
|