| Thread | Last Post | Replies |
|
| [JSF] Blank out bean properties when assign HTML element is "emtpy" | 09 Sep 2006 08:48 GMT | 2 |
I noticed a problem from "old school" JSP times is also present in JSF. Assume I have a Managed Bean in my session names "myBean". Also assume that I have bound the property "prop" of myBean to a <h:inputText> component.
|
| Why can't I create a generic array? | 09 Sep 2006 06:03 GMT | 3 |
If I have a generic like class MyClass<MyType> it's normal that I can't do something like this: MyType type = new MyType()
|
| Difference between Apache Web Server and Tomcat Server | 09 Sep 2006 05:56 GMT | 12 |
Sir I am little bit confused about Apache Web Server and Apache Tomcat Server. Please give me an link so that i can find it out.
|
| Anyone interested in helping me with this code? | 09 Sep 2006 01:41 GMT | 1 |
I am trying to figure out this problem from TopCoder.com. The problem is from a past competition that I am just trying to solve to help increase my knowledge of Java. The problem is as follows: "Just before a chess match between two teams, each team's coach
|
| Syntax check please | 09 Sep 2006 00:23 GMT | 2 |
I'm trying to access a ststic method (processRequest) abd need a bit of help with the syntax, help would be appreciated - thanks. request.setAttribute("evaluationboarditems", SamplesListingHelper.processRequest(request, conn));
|
| Triple DES Perl to Java | 08 Sep 2006 22:26 GMT | 6 |
I am having a base64 encoded data block, which has been triple des encrypted with Perl's Crypt::TripleDES class (http://search.cpan.org/dist/Crypt-TripleDES/lib/Crypt/TripleDES.pm) and am trying to decrypt it with Java.
|
| iterating active java sessions | 08 Sep 2006 21:30 GMT | 4 |
is there a way to iterate active servlet http sessions. or to be notified when a session is about to be invalided/expired etc. it'll be run by an administrative servlet every
|
| Adding Contents of a Vector | 08 Sep 2006 20:03 GMT | 8 |
I'm trying to add together all the contents of the vector. This is what I wrote and the compiler is telling me I can't use the plus. Is there another way? for (int count = 0; count < vectorSize; count++)
|
| Spacings And Carriage Returns | 08 Sep 2006 15:38 GMT | 3 |
I currently have a JTextPane using a html document and i am trying to serialize the html document contained in the JTextPane to the disk but i have run into some problems. One problem lets say for example if i were to press
|
| Interface naming conventions | 08 Sep 2006 15:33 GMT | 17 |
Increasingly I am seeing people prefixing interface names with an 'I', in open source apps and in example code on the web. So instead of this: public interface MyInterface {
|
| Script for telnet server to communicate with J2EE application | 08 Sep 2006 15:08 GMT | 8 |
My Problem: I want to interface my J2EE application with data from telnet server. I have a device that can send data to a telnet server. Now i want my application to fetch that data. My telnet server is on the same machine
|
| Generics and reflection | 08 Sep 2006 14:36 GMT | 9 |
I would like to find, at run-time, the actual return type of a generic method. For a parameterized return type, that's OK, but what about a TypeVariable return type ??
|
| servlet 101 question | 08 Sep 2006 14:09 GMT | 6 |
I am attempting to write an HelloWorld servlet with tomcat and of course I can't get it to work. I am trying to run the first servlet from the CoreServlets book. according to the book I can create a directory, place the servlet class
|
| java trigonometric solver | 08 Sep 2006 13:56 GMT | 13 |
I'm trying to implement in Java a solver for this kind of trigonometric system... k * sin( a1 * f ) = b1 k * sin( a2 * f ) = b2
|
| Problem with Tomcat 4 and 5 on Solaris | 08 Sep 2006 13:39 GMT | 2 |
We have a JSP application that runs fine on both Tomcat 4 and 5 hosted on Win XP but behaves abnormally when Tomcat is run on Solaris. The application features entry point login page used to authenticate user to the application server. If a login is successful the application
|