Tomáš Kraus
Tomáš Kraus
Method com.sun.xml.ws.api.message.Message.isOneWay(WSDLPort) can return a wrong value for certain cases and this is a problem for whoever is using this method. E.g. com.sun.xml.ws.api.message.Packet.relateServerResponse(Packet, WSDLPort, SEIModel, WSBinding) uses this method. Find...
JAX-WS uses the ServiceLoader/ServletAPI3 Mechanism to initialize the SOAP services by starting all services in WSServletContainerInitializer. Before Java7/JAX-2.2.x, i am using CDI in a @PostConstruct-Method of my WebService by retrieving...
This is somewhat complex setup, please take a look at the prepared example (attached) first. I am trying to do a clean compilation of the [GML 3.1.1 schema](http://schemas.opengis.net/gml/3.1.1/) using catalogs...
The given XSD ``` ``` when compiled with XJC v2.2.11 (also tried v2.2.4 and v2.2.8) causes NPE: ``` D:\jaxb-ri\bin\xjc.bat -extension test.xsd parsing a schema... [WARNING] Cannot generate default value for...
Some non-ascii characters are converted into an unicode code points notation(for example µ into \u00b5) when generating JAXB classes with xjb in certain circumstances. xjc -encoding UTF-8 test.xsd ``` **test.xsd**[...]...
Trying to generate the bindings for [http://schemas.opengis.net/wcs/2.0/wcsAll.xsd](http://schemas.opengis.net/wcs/2.0/wcsAll.xsd) E:\schemas\inspire\wcs\wcs-2_0_1\wcs\2.0.1>"E:\quaglan\software\jaxb-ri-2.2.7\ja xb-ri-2.2.7\bin\xjc" wcsAll.xsd -d "E:\quaglan\projects\subversion\sdi\Geoportal \Common\MavenProjects\INSPIREGeoportalBindings\src\main\java" -target 2.1 -b bin dings.xjb -extension -catalog catalog.xml parsing a schema... [ERROR] Base complex type "AdditionalParametersBaseType" is...
From property usPrice xjc generates getUSPrice, but should be getUsPrice; the same for the setter.
In the modify-marshal sample there is in the po.xsd: `` xjc generates an property usPrice with getter and setter getUSPrice and `setUSPrice`. But if you set `@XmlAccessorType(XmlAccessType.PROPERTY) `on class Item,...
I'm aware of issue eclipse-ee4j/jaxb-api#244 and believe this is a distinct issue. I have a schema that I cannot change that uses inheritance and mixed="true" as a way to accept...
This issue was previously reported via https://bugs.openjdk.java.net/browse/JDK-8197490 A DESCRIPTION OF THE REQUEST : This enhancement request is to improve Java code generation for XML Bindings in order to support version...
After workarounds for [jaxb-1065] and [jaxb-1066] I have managed to generated the classes. To my surprize, classes are empty: ``` @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "featureName") public class FeatureName...