The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
60 views

jaxws-api 2.2 not loaded in maven build

I have generated Java code with Apache CXF tool wsdl2java. In the comments of my service it says that I should endorse Jaxws API 2.2 but don't know what it means. In my Maven POM I have this: ...
0
votes
1answer
56 views

Maven Jetty plugin with endorsed external directory

I have a project with more than an hundred external library dependencies, here we use tomcat with this endorsed jar libs configured on a directory in the server (now is under ...
0
votes
0answers
58 views

Java Endorsed Libraries in OpenShift (JBoss AS 7 + MySQL)

I need to add some endorsed libraries to Java for my application. I am using JBoss AS 7 with MySQL and I have my application up and running on openshift. I am yet unable to run a few features that ...
2
votes
2answers
878 views

javac cannot find symbol constructor Service

I am in the process of learning CXF with the help of this Apache CXF Web Service Development book but, alas, one of the book's sample projects won't even compile! The code in question is Chapter 3's ...
1
vote
0answers
1k views

Error: JAXB 2.1 API is being loaded from the bootstrap classloader, but this RI needs 2.2 API

I am trying to deploy a Java web service into a Tomcat 5.5.20 server. I have the web service packaged in a .war file in Tomcat's webapps directory, and I can see that the .war file gets extracted ...
3
votes
1answer
2k 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 ...
4
votes
1answer
1k 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 ...
0
votes
1answer
317 views

deploying cxf web app [closed]

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
2answers
331 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
360 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 ...
2
votes
2answers
11k 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
248 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
941 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 ...
3
votes
1answer
814 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.
7
votes
3answers
12k 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 bootstrap classloader, but this RI (from ...
10
votes
2answers
6k 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 ...