Author: dkulp
Date: Fri Aug  1 13:42:19 2008
New Revision: 681816

URL: http://svn.apache.org/viewvc?rev=681816&view=rev
Log:
Make sure the field is set properly so a warning isn't issued.

Modified:
    
cxf/trunk/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java

Modified: 
cxf/trunk/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java
URL: 
http://svn.apache.org/viewvc/cxf/trunk/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java?rev=681816&r1=681815&r2=681816&view=diff
==============================================================================
--- 
cxf/trunk/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java
 (original)
+++ 
cxf/trunk/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java
 Fri Aug  1 13:42:19 2008
@@ -304,6 +304,7 @@
     
     protected void buildServiceFromWSDL(String url) {
         LOG.info("Creating Service " + getServiceQName() + " from WSDL: " + 
url);
+        populateFromClass = false;
         WSDLServiceFactory factory = new WSDLServiceFactory(getBus(), url, 
getServiceQName());
         setService(factory.create());
 
@@ -322,6 +323,7 @@
 
     protected void buildServiceFromClass() {
         LOG.info("Creating Service " + getServiceQName() + " from class " + 
getServiceClass().getName());
+        populateFromClass = true;
 
         if (Proxy.isProxyClass(this.getServiceClass())) {
             LOG.log(Level.WARNING, "USING_PROXY_FOR_SERVICE", 
getServiceClass());


Reply via email to