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/29 17:03:43 UTC

svn commit: r589703 - in /incubator/cxf/branches/2.0.x-fixes: ./ distribution/src/main/release/samples/mtom/src/demo/mtom/client/Client.java

Author: dkulp
Date: Mon Oct 29 09:03:42 2007
New Revision: 589703

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

........
  r589082 | gmazza | 2007-10-27 07:53:54 -0400 (Sat, 27 Oct 2007) | 1 line
  
  Fixed checkstyle errors.
........

Modified:
    incubator/cxf/branches/2.0.x-fixes/   (props changed)
    incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/mtom/src/demo/mtom/client/Client.java

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

Modified: incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/mtom/src/demo/mtom/client/Client.java
URL: http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/mtom/src/demo/mtom/client/Client.java?rev=589703&r1=589702&r2=589703&view=diff
==============================================================================
--- incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/mtom/src/demo/mtom/client/Client.java (original)
+++ incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/mtom/src/demo/mtom/client/Client.java Mon Oct 29 09:03:42 2007
@@ -67,7 +67,7 @@
 
         TestMtomService tms = new TestMtomService(wsdlURL, SERVICE_NAME);
         TestMtomPortType port = (TestMtomPortType) tms.getPort(PORT_NAME, 
-        TestMtomPortType.class);
+            TestMtomPortType.class);
         Binding binding = ((BindingProvider)port).getBinding();
         ((SOAPBinding)binding).setMTOMEnabled(true);
 
@@ -95,8 +95,8 @@
         System.out.println("--Returned string value is " + name.value);
 
         Image image = ImageIO.read(new ByteArrayInputStream(param.value));
-        System.out.println("--Loaded image from byte[] successfully, hashCode=" + 
-            image.hashCode());
+        System.out.println("--Loaded image from byte[] successfully, hashCode=" 
+            + image.hashCode());
         System.out.println("Successfully ran MTOM/byte array demo");
 
         System.out.println("\nStarting MTOM test with DataHandler:");        
@@ -117,8 +117,8 @@
             fileSize++;
         }
 
-        System.out.println("--Received DataHandler back from server, " +
-            "returned size is " + fileSize);
+        System.out.println("--Received DataHandler back from server, " 
+            + "returned size is " + fileSize);
         System.out.println("--Returned string value is " + name.value);
         
         System.out.println("Successfully ran MTOM/DataHandler demo");