-
Bug
-
Resolution: Won't Fix
-
P4
-
None
-
1.2.0, 1.2.1, 1.2.2
-
generic, x86
-
generic, windows_95, windows_nt
Name: skT88420 Date: 07/12/99
D:\temp\Ebs2_0\Server>java -version
java version "1.2.2"
Classic VM (build JDK-1.2.2-W, native threads, symcjit)
When installing Prosyst's EBServerV2.0 (EJB Server www.prosyst.com)
with java RunSetup
I get the following message:
D:\temp\Ebs2_0\Server>java RunSetup
Loading data
.A nonfatal internal JIT (3.10.107(x)) error 'Relocation error: NULL relocation
target' has occurred in :
'RunSetup.A (Ljava/lang/String;)[B': Interpreting method.
Please report this error in detail to http://java.sun.com/cgi-bin/bugreport.cg
i
..................................................................
D:\temp\Ebs2_0\Server>
(Review ID: 85461)
======================================================================
Name: krT82822 Date: 10/07/99
ran the following command
"c:\program files\javasoft\jre\1.2\bin\java" -cp pcbuilder PCBApp
this is for the application PopChart builder by Corda Technologies www.corda.com
error message
A nonfatal internal JIT(3.10.107(x)) error 'Relocation error: NULL relocation target' has ocurred in:
'com/corda/pcbuilder/gc. (Ljava/awt/Component;)Z': Interpreting method.
The message asked that I report this error here.
output of java -version
java version "1.2.2"
Classic VM (build JDK-1.2.2-W, native threads, symcjit)
output of java -fullversion
java.exe full version "JDK-1.2.2-W"
I am sorry I can not give any other details, but I am not very
skilled with java and what it takes to set it up on Windows 95.
I was just trying to run some software found on the net.
Marty McKeon
Shared Data Networks, Inc.
704 588 2233 x4228
###@###.###
(Review ID: 96241)
======================================================================
Name: skT88420 Date: 10/15/99
I started SilkPilot of Segue
and the JIT printed out the following:
A nonfatal internal JIT (3.10.107(x)) error 'Relocation error: NULL relocation target'
has occurred in :
'a/e.d ()V': Interpreting method.
Please report this error in detail to http://java.sun.com/cgi-bin/bugreport.cgi
(Review ID: 96606)
======================================================================
Name: krT82822 Date: 10/18/99
while starting Silk pilot for testing Java based application we faced this problem & no java client was generated.
A nonfatal internal JIT (3.10.107(x)) error 'Relocation error: Null reocation target' has occurd in: 'a/e.d ()V' : Interpreting method.
(Review ID: 96653)
======================================================================
Name: skT88420 Date: 10/21/99
i made a program...using jdk1.2.
After protecting-decompiling class files i knew that it occurs above error message.
But for running program....no problem was found..
So i tried using HotSpot with running program.....then no error message printed..
i used 4thpass SourceGuard Enterprise 3.0 (Evaluation) for protecting my class files.
(Review ID: 96818)
======================================================================
Name: krT82822 Date: 12/15/99
java version "1.2.2"
Classic VM (build JDK-1.2.2-001, native threads, symcjit)
A nonfatal internal JIT (3.10.107(x)) error 'Relocation error: NULL relocation t
arget' has occurred in :
'a/e.d ()V': Interpreting method.
Please report this error in detail to http://java.sun.com/cgi-bin/bugreport.cg
i
"This error was generated when I used Segue's product:"SilkPilot"
(Review ID: 99039)
======================================================================
Name: skT88420 Date: 01/03/2000
java version "1.2.1"
Classic VM (build JDK-1.2.1-A, native thread)
A Non fatal internal JIT(3.00.078(x)) error 'Relocation error : Null relocation
target' has occured in : ' a/e.d () V' : Interpreting method
(Review ID: 99518)
======================================================================
Name: krT82822 Date: 02/05/2000
java version "1.2.2"
Classic VM (build JDK-1.2.2-W, native threads, symcjit)
Execute the ShowItem program:
D:\quick\projects\cxml>java -Dorg.xml.sax.parser=com.ibm.xml.parsers.SAXParser S
howItem itemOut.xml
Output:
schema generated
in setQText: 1233244
document parsed
qty: 2
rdd: null
rID: null
iID: 1233244
A nonfatal internal JIT (3.10.107(x)) error 'Relocation error: NULL relocation t
arget' has occurred in :
'com/jxml/quick/engine/QCMSeqFactory$QCMSeq.walk (Ljava/lang/Object;Lcom/jxml/
quick/tf/QTargetFactory;Lcom/jxml/quick/access/QIterator;Lcom/jxml/quick/QContex
t;ZZ)Z': Interpreting method.
Please report this error in detail to http://java.sun.com/cgi-bin/bugreport.cg
i
in getQText
<ItemOut quantity="2">1233244</ItemOut>
D:\quick\projects\cxml>
Source code:import java.io.*;
import java.util.*;
import com.jxml.quick.*;
// Import classes for the SAX Parser
import org.xml.sax.*;
import org.xml.sax.helpers.ParserFactory;
public class ShowItem
{
public static void
main(String[] args)
{
try
{
Parser parser=ParserFactory.makeParser();
QDoc itemSchema=Quick.parseSchema(parser,
false,
"file:itemOut.qjml");
System.out.println("schema generated");
QContext itemContext=Quick.createContext(itemSchema);
QDoc doc=Quick.parse(parser,
itemContext,
args[0]);
System.out.println("document parsed");
ItemOut item = (ItemOut)Quick.getRoot(doc);
System.out.println("qty: " + item._Quantity);
System.out.println("rdd: " + item._RequestedDeliveryDate);
System.out.println("rID: " + item._RequisitionID);
System.out.println("iID: " + item._ItemID);
QDoc itemDoc1=Quick.createDoc(item);
System.out.println(Quick.express(itemDoc1,itemContext));
}
catch (SAXParseException pe)
{
System.out.println(pe.toString());
int line=pe.getLineNumber();
if (line!=-1)
System.out.println("line="+line);
}
catch (Exception e)
{
//System.out.println(e.toString());
e.printStackTrace();
System.exit(0);
}
}
}
Ancilliary files:
itemOut.qjml:
<qjml root="ItemOut">
<element name="ItemOut" content="BIMODAL">
<targetClass>ItemOut</targetClass>
<attribute name="quantity" field="_Quantity" status="REQUIRED"/>
<attribute name="requestedDeliveryDate" field="_RequestedDeliveryDate"/>
</element>
</qjml>
itemOut.xml:
<ItemOut quantity="2">1233244</ItemOut>
Requires the Quick toolkit from www.jxml.com to run.
(Review ID: 100853)
======================================================================
Name: skT88420 Date: 02/17/2000
java version "1.2.2"
Classic VM (build JDK-1.2.2-001, native threads, symcjit)
A nonfatal internal JIT (3.10.107(x)) error 'Relocation error: relocation target
not resolved' has occurred in :
'com/hp/nimius/e3/dispatch/l.startElement (Ljava/lang/String;Lorg/xml/sax/Attr
ibuteList;)V': Interpreting method.
Please report this error in detail to http://java.sun.com/cgi-bin/bugreport.cg
i
(Review ID: 101358)
======================================================================