wsdl2java fails to generate working client code if web service and portType
have the same name
----------------------------------------------------------------------------------------------
Key: CXF-3290
URL: https://issues.apache.org/jira/browse/CXF-3290
Project: CXF
Issue Type: Bug
Components: Tooling
Affects Versions: 2.3.2
Reporter: Reimer Prochnow
Priority: Minor
A Naming Problem similar to #CXF-1979:
if your wsdls define:
<wsdl:service name="CallManagement" ...
<wsdl:portType name="CallManagement">
wsdl2java generates
public class CallManagement extends Service {
but this class imports a Class CallManagement from the namespace defined in
the portType.
this leads to a compiler error (Line is the import statement)
"CallManagement is already defined in this compilation unit"
so the problem is:
package bar;
import foo.Bar;
public class Bar {
can be avoided only with full qualified references to foo.Bar without the
import.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.