Author: dkulp
Date: Mon Aug 31 15:46:51 2009
New Revision: 809631

URL: http://svn.apache.org/viewvc?rev=809631&view=rev
Log:
[CXF-2409] ClientOutFaultObserver in ClientImpl not initialized
Patch from Bernd Wiswedel applied

Modified:
    cxf/trunk/rt/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java

Modified: 
cxf/trunk/rt/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java
URL: 
http://svn.apache.org/viewvc/cxf/trunk/rt/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java?rev=809631&r1=809630&r2=809631&view=diff
==============================================================================
--- cxf/trunk/rt/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java 
(original)
+++ cxf/trunk/rt/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java Mon 
Aug 31 15:46:51 2009
@@ -142,6 +142,7 @@
     public ClientImpl(Bus bus, URL wsdlUrl, QName service,
                       QName port, EndpointImplFactory endpointImplFactory) {
         this.bus = bus;
+        outFaultObserver = new ClientOutFaultObserver(bus);
 
         WSDLServiceFactory sf = (service == null)
             ? (new WSDLServiceFactory(bus, wsdlUrl)) : (new 
WSDLServiceFactory(bus, wsdlUrl, service));


Reply via email to