| Thread | Last Post | Replies |
|
| Get current URL from IE | 10 Nov 2005 04:11 GMT | 1 |
I'm trying to get URL from IE which is currently opened. Is there any way to get it? I want my application to store that address and use it later for something useful. Is it possible with Java or any other language?
|
| trouble resolving a class with JSP | 10 Nov 2005 01:36 GMT | 11 |
this may seem like a stupid question, but i cant figure it out... i have a simple JSP, in which I want to call a static method in another class, but tomcat says it can't find the other class. The class I want to call is no within a package, it is in the same directory as the jsp
|
| gui system | 10 Nov 2005 00:54 GMT | 3 |
I programmed my own custom gui system as an excercise, but I have some troubles with threads accessing it simultaneous. I've posted this in the java.programmer group because its not AWT or Swing specific issue.
|
| looking for automated testing library like HttpUnit | 09 Nov 2005 21:53 GMT | 2 |
I'm looking for some automated testing library like HttpUnit for testing my jsp web-application. But this application does not work under Mozilla, that's why the one of the components of HttpUnit libraries ("rhino") is not
|
| Authentication via LDAP Using Servlet Filter | 09 Nov 2005 20:26 GMT | 2 |
I've spent quite a few days now browsing the net and reading the servlet specification, but I don't seem get any wiser. I've set up my SUN APP Server to authenticate via LDAP using predefined roles. E.g using this entry in sun-web.xml
|
| Encrypting/Decrypting Password from a Config File | 09 Nov 2005 18:58 GMT | 35 |
I am looking for a way to encrypt a password in a configuration file that is being read by a Java program. Currently, I read-in the password from the text file, but that leaves the password sitting right out in the open if someone were to look at the config file.
|
| Problematic Situation | 09 Nov 2005 17:06 GMT | 5 |
Is there an problematic situation that java can solve or make it easier.... if so what is the code for it? Posted from http://www.Devplug.com
|
| Do java support 'String' methods properly ? | 09 Nov 2005 16:00 GMT | 33 |
I think that if the methods of 'String' are not efficient, these exert a very bad influence on the performance of an application. Java do not support any String methods with ignoreCase
|
| The farmers puzzle for the chicken, fox and corn..!! | 09 Nov 2005 15:44 GMT | 8 |
Dear all.. I am trying to find a way to graphically represent the following puzzle... I will really appreciate it, if I can be provided with a JAVA code for the following:
|
| Application log file parser | 09 Nov 2005 15:41 GMT | 6 |
Are there tools to parse application log files (typically stdout & stderr, but also Log4J output) in a smart way ? Basically, I'd like to parse them and compute stats like when, how many times and how often exceptions of a class have been raised.
|
| Animation jargon | 09 Nov 2005 14:24 GMT | 12 |
I'm working with animations and I'm trying to think of a good name for a variable that a user can specify when creating a viewer for an animation. Ideally, the meaning of the name will be self-explanatory and will conform with common usage among people who use animations.
|
| Serialize and event model | 09 Nov 2005 12:49 GMT | 3 |
I have a bunch of model classes that I use on client and server. When a model object gets serialized all the observers of that model that are my clients view need to be removed. But I have internal model observers also - not sure that was wise? Now at the present state of the ...
|
| stupid generics | 09 Nov 2005 12:28 GMT | 38 |
When I first heard about generics I was excited. A great idea finally available in Java. But the way they are implemented really makes no sense. Because of type erasure generics do nothing that 1.4 code didn't already do by using Object as "generic" class for all (sub)classes.
|
| HELP! storing java class in oracle blob problem --> classFormatError!!! | 09 Nov 2005 12:14 GMT | 3 |
I have following problem: We store java classes in oracle (version 10g) blob fields, in order to load them later with a special classloader using ojdbc14 drivers. I use the following way to obtain a class:
|
| create PNG images in palette mode in Java | 09 Nov 2005 08:13 GMT | 6 |
Java does not allow us to use more than 16 entries in the color map of the Index Color Model for palette mode PNG encoding. This disrupts the quality of images drastically. Is there a way to improve the image quality?
|