0
votes
2answers
92 views
How to use jaxb 2 in a web application within Oracle Application Server
I have an application that is running Jaxb 2.1.12. I am running JDK 1.5 and OC4J 10.1.3.4.0. When I try to use the portion of my application that is using Jaxb, I get the following error:
Unable to …
2
votes
2answers
153 views
JAXB - generating classes from XSD - converting enums to strings
Using JAXB, we generate our Java beans directly. In the XSD, we have an enumerated type:
<xs:simpleType name="promptBeforeCloseType">
<xs:restriction base="xs:string">
…
0
votes
1answer
128 views
JAXB appending unneeded namespace declarations to tags
I'm implementing a homebrew subprotocol of XMPP, and i'm using combination of StAX and JAXB for parsing/marshalling mesages. And when I marshall a message I end up with loads of unneded namespace …
0
votes
3answers
132 views
JAXB - permGen error on Tomcat server
Hi, I am getting the below error when running my deployed app. Going by the error, it seems JAXB is causing it. Please suggest.
java.lang.OutOfMemoryError: PermGen space
…
1
vote
1answer
41 views
Critique my JAXB object wrapper.
Hello Ladies and Gents,
I have a question on wrapping a jaxb created class and would really like to hear your inputs.
My xsd looks a bit like:
<ComplexService>
<ComplexObject1>
…
1
vote
1answer
199 views
What is the Jaxb equivalent of a CData Block?
I am looking to convert a class that looks like this ...
public class Amenity {
public String id;
public String value;
}
into the following XML using JaxB annotations:
<amenity …
0
votes
1answer
242 views
JAXB only marshals/unmarshals root node
I am new to JAXB. All I want to do is, given an existing xml string marshal it, and return it in an ejb. The problem is the following code only seems to work for the root node, and not the children. I …
1
vote
4answers
504 views
Class Cast Exception when trying to unmarshall xml?
Hi,
Trying to get past a class cast exception here:
FooClass fooClass = (FooClass ) unmarshaller.unmarshal(inputStream);
throws this exception:
java.lang.ClassCastException: …
0
votes
1answer
372 views
Unhandled exception on trying to create JAXBContext (Jaxb 2.0)
Hi,
I am trying to get the code past this line:
JAXBContext jaxbContext = JAXBContext.newInstance("foo.bar.package");
It throws an exception - heres the stack trace - any ideas folks?
SEVERE: …
