You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2007/10/08 19:28:11 UTC

svn commit: r582900 - in /incubator/cxf/branches/2.0.x-fixes: ./ tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/service.vm

Author: dkulp
Date: Mon Oct  8 10:28:10 2007
New Revision: 582900

URL: http://svn.apache.org/viewvc?rev=582900&view=rev
Log:
Merged revisions 579483 via svnmerge from 
https://svn.apache.org/repos/asf/incubator/cxf/trunk

........
  r579483 | mmao | 2007-09-26 02:02:21 -0400 (Wed, 26 Sep 2007) | 5 lines
  
  CXF-1056 
     Add a constructor to generated Service class for setting only WSDL location
     But the fix requires to run the TCK, if it fail the TCK, we should remove the constructor
........

Modified:
    incubator/cxf/branches/2.0.x-fixes/   (props changed)
    incubator/cxf/branches/2.0.x-fixes/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/service.vm

Propchange: incubator/cxf/branches/2.0.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: incubator/cxf/branches/2.0.x-fixes/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/service.vm
URL: http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/service.vm?rev=582900&r1=582899&r2=582900&view=diff
==============================================================================
--- incubator/cxf/branches/2.0.x-fixes/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/service.vm (original)
+++ incubator/cxf/branches/2.0.x-fixes/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/service.vm Mon Oct  8 10:28:10 2007
@@ -59,6 +59,10 @@
         WSDL_LOCATION = url;
     }
 
+    public ${service.Name}(URL wsdlLocation) {
+        super(wsdlLocation, SERVICE);
+    }
+
     public ${service.Name}(URL wsdlLocation, QName serviceName) {
         super(wsdlLocation, serviceName);
     }