| Thread | Last Post | Replies |
|
| get jsp connection from applet | 08 Mar 2005 18:28 GMT | 3 |
My jsp page embeds a java Applet in it with the following lines: <jsp:plugin type=applet code="mypackage.myApplet"
|
| http session and applet | 08 Mar 2005 18:13 GMT | 1 |
I am writing a web app with Servlet and Jsp. The app requires user login. The user information is saved to a session bean. I then check all request to server for the login information. Request without right login information in the session will be denied. All those are pretty
|
| Max length for URLs in Tomcat | 08 Mar 2005 17:10 GMT | 2 |
Would anyone happen to know the maximum length of a URL in Tomcat 5.0.28? Is there a limit? I didn't see anything in the Tomcat documentation regarding this issue. Thanks in advance,
|
| http | 08 Mar 2005 13:25 GMT | 1 |
this code can save html source in a directory of my pc but can't save images! If i introduce image path this class save it but I can't see it as jpeg or gif! How can I do it, all in a 1 step! thank you very much
|
| Genercis advice | 08 Mar 2005 12:42 GMT | 8 |
i've just read some docs about generics in Java, and i would like to do a complete Canvas class. Here is my attempt: import java.util.LinkedList; import java.util.List;
|
| Any Netbeans users out there? | 08 Mar 2005 12:37 GMT | 3 |
I was wondering if anyone here might know how the get Netbeans to pick up J2EE packages so that it stops putting those annoying red squiggly lines under every line I write that uses a J2EE class? It keeps trying to "helpfully" delete all my imports from javax.servlet.* packages.
|
| Partial Refresh of Page using Servlets-JSP | 08 Mar 2005 11:44 GMT | 2 |
Is there any way to partially refresh a web page on each request? I have a search page that needs to refresh the number of results with each change in the form elements. Since there are so many possibilities, the page needs to run a query server side for each
|
| Using protected with composed class in an implented interface? | 08 Mar 2005 11:38 GMT | 2 |
I was having a friendly discussion with another developer, who did something like: public interface MyInterface {
|
| Tracking/logging changes made to property file | 08 Mar 2005 11:08 GMT | 4 |
We have written swing based application to edit property files(plain text) of our application. We want to keep track of changes made to this property file. For e.g. if someone changes some property value from the file, then old
|
| hangman | 08 Mar 2005 09:28 GMT | 2 |
Hey guys, I'm new to j2me and I would like to develop a hangman game for a mobile phone, are there any tutorials available online to tech me specifically how to do this.
|
| Writing servers in java | 08 Mar 2005 08:47 GMT | 7 |
couple days ago I posted a question on this subject, but think I wasn't specific enough. So, once again: I'm trying to develop an application in Java that will act like a server
|
| Swap double problem | 08 Mar 2005 08:43 GMT | 3 |
I am attempting to swap big endian bytes to little endian format. Here is a snippet of code which doesn't seem to work: byte b[]; public double getDouble (int offset) {
|
| Simple ClassLoader | 08 Mar 2005 07:36 GMT | 1 |
Say that I have a string of bytes (byte[]) defining a class, how do I create a simple ClassLoader to define the class? Regards, Jesper
|
| Memory allocation | 08 Mar 2005 07:36 GMT | 2 |
Hai, I'll explain my problem clearly. Using buildMatrix.java I build one matrix( a two dimension array), say X
|
| conditional use of classes | 08 Mar 2005 07:15 GMT | 15 |
Hi, I was wondering if there is a simple way to conditionally use classes which may or may not be there. Specifically, I want to write code that uses BufferedImage if I'm on JDK 1.2, something else if I'm on JDK 1.1. Reflection is one way to do it, but it's messy. Is there
|