Hi

If I declare my app as an JEE application:

<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd";>
...
</web-app>

then generated WSDL is missing a wsdl:types section. If I switch to the J2EE 1.4:

<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd";>
...
</web-app>

everything is ok. This problem happens on Glassfish v2ur2. Tomcat 6.x handles both cases. What can be reason of missing wsdl:types section?


CXF 2.1.1 (JAX-WS + Aegis binding), JDK 1.6.0_06-b02

Reply via email to