Tagged Questions
2
votes
1answer
383 views
java wsimport rename/different ObjectFactory.java
I'm having problem with wsimport. In one of my wsdl which has to be wsimported I have a complexType with name "objectFactory". Is there any way to tell command wsimport to create while importing ...
1
vote
1answer
429 views
What is the ObjectFactory role during JAXB-Unmarshalling?
I'm using JAXB 2.2.2 to parse a simple XML-REST stream. This is the piece of code:
JAXBContext jc = JAXBContext.newInstance( "com.example.entities" );
Unmarshaller u = jc.createUnmarshaller();
r = ...
1
vote
1answer
31 views
What xml schema context is generated the method signature like “JAXBElemet<Xyz> createXyz(Xyz xyz)” of ObjectFactory by xjc?
I noticed the the simpleType or complexType is defined and the types are used in the declarations of multiple element in a schema file, the simpleType or complexType is generated a method signature as ...
0
votes
2answers
183 views
How to generate several versions of Java classes generated by JAXB?
I recently generate two versions of Java classes generated by JAXB. So I get two packages :
V1_0 and V2_0
I notice that I have only one ObjectFactory generated. The problem is that this ObjectFactory ...