[
https://issues.apache.org/jira/browse/CXF-6134?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16347550#comment-16347550
]
ASF GitHub Bot commented on CXF-6134:
-------------------------------------
deki closed pull request #372: [CXF-6134] Apache CXF generating constructor
with duplicate argument names causing compilation error
URL: https://github.com/apache/cxf/pull/372
This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:
As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):
diff --git
a/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/fault.vm
b/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/fault.vm
index 9f4cea85b0c..d61944f4aca 100644
---
a/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/fault.vm
+++
b/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/fault.vm
@@ -75,7 +75,7 @@ public class $expClass.Name extends $exceptionSuperclass {
#if ($markGenerated == "true")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date =
"$currentdate")
#end
- public ${expClass.Name}(String message, Throwable cause) {
+ public ${expClass.Name}(String message, java.lang.Throwable cause) {
super(message, cause);
}
@@ -90,7 +90,7 @@ public class $expClass.Name extends $exceptionSuperclass {
#if ($markGenerated == "true")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date =
"$currentdate")
#end
- public ${expClass.Name}(String message, $field.ClassName $paraName,
Throwable cause) {
+ public ${expClass.Name}(String message, $field.ClassName $paraName,
java.lang.Throwable cause) {
super(message, cause);
this.$paraName = $paraName;
}
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
> Apache CXF generating constructor with duplicate argument names causing
> compilation error
> -----------------------------------------------------------------------------------------
>
> Key: CXF-6134
> URL: https://issues.apache.org/jira/browse/CXF-6134
> Project: CXF
> Issue Type: Bug
> Components: Tooling
> Affects Versions: 2.7.11, 3.0.2
> Reporter: Marcel Overdijk
> Priority: Major
> Fix For: 3.2.2
>
> Attachments: fault.vm, portalWebStartable.wsdl
>
>
> I'm using the cxf-codegen-plugin plugin to generate a web service client.
> For many wsdl's this goes fine but I have one causing problems.
> It is a wsdl containing fault messages defined like:
> {code}
> <message name="CustomerNotFoundException">
> <part name="message" type="xs:string" />
> </message>
> {code}
> The generated Java file looks like:
> {code}
> @WebFault(name = "message", targetNamespace =
> "http://www.w3.org/2001/XMLSchema")
> public class CustomerNotFoundException extends Exception {
> private java.lang.String message;
> public CustomerNotFoundException() {
> super();
> }
> public CustomerNotFoundException(String message) {
> super(message);
> }
> public CustomerNotFoundException(String message, Throwable cause) {
> super(message, cause);
> }
> public CustomerNotFoundException(String message, java.lang.String
> message) {
> super(message);
> this.message = message;
> }
> public CustomerNotFoundException(String message, java.lang.String
> message, Throwable cause) {
> super(message, cause);
> this.message = message;
> }
> ..
> }
> {code}
> Which fails compilation because of the duplicate message argument of the
> CustomerNotFoundException constructor.
> In my pom I've added:
> {code}
> <extraargs>
> <extraarg>-allowElementReferences</extraarg>
> <extraarg>-autoNameResolution</extraarg>
> <extraarg>-verbose</extraarg>
> </extraargs>
> {code}
> But this does not help.
> I even tried custom bindings but it does not seem possible to change argument
> name of a constructor of a generated exception.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)