You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by ul...@apache.org on 2008/09/23 12:41:13 UTC

svn commit: r698128 - /cxf/trunk/distribution/src/main/release/samples/mtom/build.xml

Author: ulhasbhole
Date: Tue Sep 23 03:41:13 2008
New Revision: 698128

URL: http://svn.apache.org/viewvc?rev=698128&view=rev
Log:
* Fixed mtom sample to avoid null pointer exception in client.

Modified:
    cxf/trunk/distribution/src/main/release/samples/mtom/build.xml

Modified: cxf/trunk/distribution/src/main/release/samples/mtom/build.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/mtom/build.xml?rev=698128&r1=698127&r2=698128&view=diff
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/mtom/build.xml (original)
+++ cxf/trunk/distribution/src/main/release/samples/mtom/build.xml Tue Sep 23 03:41:13 2008
@@ -22,7 +22,7 @@
     <import file="../common_build.xml"/>        
         
     <target name="client" description="run demo client" depends="build">
-        <copy toFile="${build.classes.dir}/demo/mtom/client/me.bmp" file="${basedir}/src/demo/mtom/client/me.bmp"/>
+        <copy toFile="${build.classes.dir}/me.bmp" file="${basedir}/src/demo/mtom/client/me.bmp"/>
         <property name="param" value=""/>
         <cxfrun classname="demo.mtom.client.Client"
             param1="${basedir}/wsdl/mtom_xop.wsdl"