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 2013/05/31 22:25:00 UTC

svn commit: r1488385 - /cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/main/java/org/apache/cxf/wsdl/service/factory/ReflectionServiceFactoryBean.java

Author: dkulp
Date: Fri May 31 20:25:00 2013
New Revision: 1488385

URL: http://svn.apache.org/r1488385
Log:
Fix simple frontend tests

Modified:
    cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/main/java/org/apache/cxf/wsdl/service/factory/ReflectionServiceFactoryBean.java

Modified: cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/main/java/org/apache/cxf/wsdl/service/factory/ReflectionServiceFactoryBean.java
URL: http://svn.apache.org/viewvc/cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/main/java/org/apache/cxf/wsdl/service/factory/ReflectionServiceFactoryBean.java?rev=1488385&r1=1488384&r2=1488385&view=diff
==============================================================================
--- cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/main/java/org/apache/cxf/wsdl/service/factory/ReflectionServiceFactoryBean.java (original)
+++ cxf/branches/dkulp-nowsdl4j/rt/wsdl/src/main/java/org/apache/cxf/wsdl/service/factory/ReflectionServiceFactoryBean.java Fri May 31 20:25:00 2013
@@ -228,11 +228,11 @@ public class ReflectionServiceFactoryBea
                 cls = ((Class<?>)obj).asSubclass(DataBinding.class);
             }
             try {
-                return cls.getConstructor(ReflectionServiceFactoryBean.class)
-                    .newInstance(this);
+                return cls.getConstructor(Boolean.TYPE, Map.class)
+                    .newInstance(this.isQualifyWrapperSchema(), this.getProperties());
             } catch (NoSuchMethodException nsme) {
                 //ignore, use the no-arg constructor
-            }
+            }            
             return cls.newInstance();
         } catch (Exception e) {
             throw new ServiceConstructionException(e);