Tagged Questions
The endorsed tag has no wiki summary.
7
votes
1answer
2k views
Difference between classpath and endorsed directory
Does anyone know what the difference is between adding an appropriate JAR-file (eg. Apache XALAN) to a JRE's endorsed directory and adding it to the application's classpath?
Is it possible to take a ...
6
votes
3answers
7k views
LinkageError JAXB 2.0 -> 2.1 (Tomcat)
I'm getting this error when trying to access my webservice running inside tomcat.
Caused by: java.lang.LinkageError: JAXB 2.0 API is being loaded from the bootstr
ap classloader, but this RI (from ...
2
votes
1answer
30 views
Web Services with JAX WS-SUN library in WAS 7.0
CONTEXT OF THE PROBLEM:
I consume a Web service methods exposed by an institution outside the mine, the web service was generated by JAX WS-SUN.
Implement other web service for domestic consumption ...
2
votes
1answer
202 views
Building a project gave me java.lang.LinkageError: JAXB 2.1 API is being loaded from the bootstrap classloader
While building project I am getting the following error:
java.lang.LinkageError: JAXB 2.1 API is being loaded from the bootstrap classloader, but this RI (from jar:file:/C:/Documents and ...
2
votes
1answer
598 views
Java WebStart and endorsed directories
How do I specify in java webstart .jnlp file, that some of my jars are overriding the JRE builtin implementations? Just like the endorsed lib property on a regular application.
0
votes
1answer
102 views
deploying cxf web app
got this error while deploying my cxf web app.I could not find the file that cannot read while deploying. I tried on remote debugging but it's not workng also.Does anyone know how to find the file ...
0
votes
0answers
121 views
Trying to set java.endorsed.dirs in iplanet to no effect. Any ideas?
I have this in my iplanet 6 server.xml
<JVMOPTIONS>-Djava.endorsed.dirs=/WWW/olc/htdocs/WEB-INF/lib/endorsed</JVMOPTIONS>
works great.
Now I'm trying to set this up on an iplanet 7 ...
0
votes
2answers
135 views
How can two programs depending on different Xalan implementation coexist in the same VM / System Classloader?
I asked this question in several flavors, and I think I'm not asking the right question. I'm suspecting now that Xalan, since it's implementing a Java endorsed standard, can only have one ...
0
votes
1answer
176 views
How to programmatically override / change endorsed standards in Java?
In this document: http://download.oracle.com/javase/6/docs/technotes/guides/standards/ it is describing only a single non programmatic way to override endorsed standards in Java (e.g. to provide a ...
0
votes
1answer
4k views
what is the exact way to use Endorsed directory in jdk1.6
I want to upgrade my jaxws to 2.2 (jdk1.6 comes bundled with jaxws 2.1). My jdk is (I did not install public jre):
java version "1.6.0_20"
Java(TM) SE Runtime Environment (build 1.6.0_20-b02)
Java ...
0
votes
1answer
133 views
Is it good idea to Sun's implementation of JAXP(jaxp-ri-1.4.2.jar) to AIX?
We use saaj-impl-1.3.2.jar from Sun.
It requires jaxp-ri-1.4.2.jar from Sun.
Is it good idea to put these Sun's libraries in web application that will work under JBoss on AIX?
0
votes
1answer
729 views
Setting “endorsed” dir in an embedded tomcat server
I am creating a web application using Eclipse (3.4), and m2eclipse. I am using the deploy goal but often prefer to use the run goal for the use of the embedded tomcat in the maven tomcat plugin. I ...