Author: dkulp
Date: Wed Jan  2 14:24:47 2008
New Revision: 608262

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

........
  r606834 | mmao | 2007-12-25 22:05:53 -0500 (Tue, 25 Dec 2007) | 3 lines
  
  * Fix the checks 
........

Modified:
    incubator/cxf/branches/2.0.x-fixes/   (props changed)
    
incubator/cxf/branches/2.0.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/binding/http/HTTPBindingImpl.java

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

Modified: 
incubator/cxf/branches/2.0.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/binding/http/HTTPBindingImpl.java
URL: 
http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/binding/http/HTTPBindingImpl.java?rev=608262&r1=608261&r2=608262&view=diff
==============================================================================
--- 
incubator/cxf/branches/2.0.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/binding/http/HTTPBindingImpl.java
 (original)
+++ 
incubator/cxf/branches/2.0.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/binding/http/HTTPBindingImpl.java
 Wed Jan  2 14:24:47 2008
@@ -48,8 +48,8 @@
     private void validate() {
         for (Handler handler : this.getHandlerChain()) {
             if (!(handler instanceof LogicalHandler)) {
-                throw new WebServiceException("Adding an incompatible handler 
in javax.xml.ws.http.HTTPBinding: " 
-                        + handler.getClass());
+                throw new WebServiceException("Adding an incompatible handler 
in HTTPBinding: "
+                                              + handler.getClass());
             }
         }        
     }    


Reply via email to