[
https://issues.apache.org/jira/browse/CXF-3382?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13003869#comment-13003869
]
Jara Cesnek commented on CXF-3382:
----------------------------------
I cant tell if simple test-case for cxf-bundle-2.3.2.jar will fail.
I say that between cxf-bundle-2.2.6 a cxf-bundle-2.3.2.jar happens uncompatible
broke change.
Is it by design ? Maybe I overlook some statement in changelog?
Moreover "xmlns:tns="http://util.java"" is not in 2.2.6 WSDL.
We use Aegis
{code}
JaxWsServerFactoryBean serverFactoryBean = new JaxWsServerFactoryBean();
serverFactoryBean.setServiceClass(AopUtils.getTargetClass(implementor));
serverFactoryBean.setServiceBean(implementor);
AegisDatabinding aegisDatabinding = new AegisDatabinding();
serverFactoryBean.setDataBinding(aegisDatabinding);
serverFactoryBean.setAddress(url);
serverFactoryBean.create();
{code}
> Mess in WSDL (targetNamespace="http://util.java")
> -------------------------------------------------
>
> Key: CXF-3382
> URL: https://issues.apache.org/jira/browse/CXF-3382
> Project: CXF
> Issue Type: Bug
> Components: Aegis Databinding
> Affects Versions: 2.3.2
> Reporter: Jara Cesnek
> Priority: Blocker
>
> I realy dont expect "http://util.java" in wsdl :
> {code}
> - <xsd:schema attributeFormDefault="qualified" elementFormDefault="qualified"
> targetNamespace="http://util.java"
> xmlns:ns0="http://dto.tra.modules.daisy.marbes.cz"
> xmlns:tns="http://util.java" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
> <xsd:import namespace="http://dto.tra.modules.daisy.marbes.cz" />
> - <xsd:complexType name="stringsToStore">
> - <xsd:sequence>
> <xsd:element maxOccurs="unbounded" minOccurs="0" name="DtoString"
> nillable="true" type="ns0:DtoString" />
> </xsd:sequence>
> </xsd:complexType>
> </xsd:schema>
> {code}
> Used collection type in interface is "java.util.List<>".
> Quick fix is use array instead.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira