Repository: cxf Updated Branches: refs/heads/master 53270bde1 -> cd058a977
[CXF-5783] Fix client code generation Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/1a8809a0 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/1a8809a0 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/1a8809a0 Branch: refs/heads/master Commit: 1a8809a01df93eef947d69d740b921652b687c15 Parents: f24a5be Author: Daniel Kulp <[email protected]> Authored: Thu Jun 26 11:09:47 2014 -0400 Committer: Daniel Kulp <[email protected]> Committed: Thu Jun 26 11:55:04 2014 -0400 ---------------------------------------------------------------------- .../org/apache/cxf/tools/wsdlto/frontend/jaxws/template/client.vm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/1a8809a0/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/client.vm ---------------------------------------------------------------------- diff --git a/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/client.vm b/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/client.vm index 1666ce0..f6dc7b4 100644 --- a/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/client.vm +++ b/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/client.vm @@ -77,7 +77,7 @@ public final class ${clientClassName} { } $service.Name ss = new ${service.Name}(wsdlURL, SERVICE_NAME); - $intf.Name port = ss.get${port.Name}(); + $intf.Name port = ss.${port.MethodName}(); #foreach ($method in $intf.Methods) {
