Questions tagged [jdk1.4]

For issues relating to setting up or using the Java Development Kit (JDK), version 1.4.

JDK or Java Development Kit is a set of tools that Oracle, formerly Sun Microsystems, provides for developing Java applications.

Note: this was End of Life'd in October 2008.

73 questions
1
vote
2 answers

Alternatives for jcifs which is compatible with jdk 1.4

Are there any alternatives for jcifs which is compatible with jdk 1.4. Alternatives for jcifs like waffle, jespa requires jdk 1.5 Our requirement is to authenticate from a Windows 7 (which sends only ntlm v2 responses) .net client using Windows 2008…
Sajo Mathew
  • 363
  • 1
  • 5
  • 9
1
vote
3 answers

Tomcat 5.5 Monitoring with JDK 1.4 on Windows

According to this documentation http://tomcat.apache.org/tomcat-5.5-doc/monitoring.html#Enabling_JMX_Remote it should be possible to remotely Monitor a Tomcat 5.5 Server running on a JDK 1.4 but after searching all over the web and trying multiple…
AGrunewald
  • 1,735
  • 3
  • 16
  • 25
1
vote
1 answer

Year getting set 1970 when parse using SimpleDateFormat jdk1.4

SimpleDateFormat formatObject = new SimpleDateFormat("yyyy-MM-dd"); String attrValue="2015-09-24"; Date date = ((SimpleDateFormat) formatObject).parse(attrValue); java.sql.Date parsedValue = new java.sql.Date(date.getTime()); randomly…
1
vote
1 answer

how to make compatibility between two parties working on different jdk versions

My project is build in 1.4.2 JDK. Now it is going to interact with a third party jar, build in JDK 1.6 I am getting compatibility problem while using client classes. Is it possible to resolve it without upgrading my JDK to 1.6 or rebuilding third…
Anuj
  • 197
  • 2
  • 11
1
vote
1 answer

Java ME: transform basic JDK 1.5 "enum" object into Java ME CLDC-1.1/IMP-NG (JDK 1.4)

I'm translating a Java (JDK 1.5) "enum" into Java ME (JDK 1.4). Many people have suggested retroweaver to parse JDK 1.5 libraries to JDK 1.4 but I've got a lot of problems using it and I really want to get full control of my project due the HW…
1
vote
4 answers

The method valueOf(String) in the type Integer is not applicable for the arguments (int)

I am getting an error The method valueOf(String) in the type Integer is not applicable for the arguments (int) for the below line when I compile the code in jdk1.4(j2sdk1.4.1_05). If I compile the same code in jdk1.6.0_14, the code works fine.…
SuRa
  • 503
  • 2
  • 12
  • 24
1
vote
1 answer

Accessing Linux Environment Variable from Java Program

I have Java Program which access the Linux Variable(example $VARD, i have exported the variable as well), I am accessing the variable value using Runtime.getRuntime("echo $VARD") function. Issue is it prints variable name instead of its value. Note:…
Java KK
  • 21
  • 1
  • 6
1
vote
1 answer

eclipse for sun one server for debugging and running application

Is there a way to add sun one application server 7 to eclipse IDE. Its for maintaining an enterprise application project. The jdk is also 1.4 used for the application.
zapping
  • 4,118
  • 6
  • 38
  • 56
1
vote
1 answer

Can OS authentication be done for connecting to Oracle database from a java application built on JDK 1.4?

I have a java application which connects to Oracle database, but I want the application to use OS authentication instead of providing the credentials of the database user through the program. I was able to implement it in a JAVA application which…
Manas
  • 1,313
  • 3
  • 12
  • 16
1
vote
3 answers

JavaMail and Java 1.4 - Logger not found

I'm trying to use JavaMail API 1.4.6 in my project which uses Java 1.4 (required). I'm getting error: [stderr] java.lang.NoClassDefFoundError: java.util.logging.Logger [stderr] at com.sun.mail.util.MailLogger.(MailLogger.java:104) …
Matt
  • 129
  • 2
  • 13
1
vote
0 answers

Is it possible to use apple push notification service using jdk 1.4

Is it possible to use apple push notification service using jdk 1.4? I can't use japns and java apns because atleast 1 of them is built using 1.5.
Kevin Antonio
  • 578
  • 3
  • 13
1
vote
0 answers

Solrj for JDK 1.4

Is there a version of Solrj built for the JDK 1.4? I installed the latest release of Solr on a separate Tomcat instance, but I have to send requests via an application developed (and deployed) with JDK 1.4 The archive at…
franz.fonta
  • 423
  • 4
  • 12
1
vote
1 answer

Heap Dump On Java 1.4.1

is there anyway that I can take a heap dump using java 1.4.1 on Solaris 9? I'm using a very old application server and java version and would like to take a heap dump. I'm gonna use it on production so hprof may not be an option. Is there any tools…
grassbl8d
  • 2,089
  • 4
  • 24
  • 34
0
votes
2 answers

How do you access posted form data in a servlet?

If I have a servlet running JVM1.4.2, and it is receiving a POST request with form data fields. I use req.getParameterNames() to get, what I would expect, all the query string and form data. However, all I ever get are the querystring parameters.…
angryITguy
  • 9,332
  • 8
  • 54
  • 82
0
votes
1 answer

How to use Esapi 1.4.4 package in web application

I am currently working on a project that uses JDK 1.4. So its just turned out to be that we have to use ESAPI 1.4.4 which is the only version compatible with JDK 1.4 . I downloaded it from the following path…
ani
  • 446
  • 1
  • 9
  • 31