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 2008/05/16 16:16:32 UTC

svn commit: r657074 - in /cxf/branches/2.0.x-fixes: ./ rt/transports/http-jetty/src/main/java/org/apache/cxf/transport/http_jetty/JettyHTTPServerEngineFactory.java

Author: dkulp
Date: Fri May 16 07:16:31 2008
New Revision: 657074

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

........
  r656729 | dkulp | 2008-05-15 12:46:33 -0400 (Thu, 15 May 2008) | 2 lines
  
  Spit out a slightly more informative error message
........

Modified:
    cxf/branches/2.0.x-fixes/   (props changed)
    cxf/branches/2.0.x-fixes/rt/transports/http-jetty/src/main/java/org/apache/cxf/transport/http_jetty/JettyHTTPServerEngineFactory.java

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

Modified: cxf/branches/2.0.x-fixes/rt/transports/http-jetty/src/main/java/org/apache/cxf/transport/http_jetty/JettyHTTPServerEngineFactory.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.0.x-fixes/rt/transports/http-jetty/src/main/java/org/apache/cxf/transport/http_jetty/JettyHTTPServerEngineFactory.java?rev=657074&r1=657073&r2=657074&view=diff
==============================================================================
--- cxf/branches/2.0.x-fixes/rt/transports/http-jetty/src/main/java/org/apache/cxf/transport/http_jetty/JettyHTTPServerEngineFactory.java (original)
+++ cxf/branches/2.0.x-fixes/rt/transports/http-jetty/src/main/java/org/apache/cxf/transport/http_jetty/JettyHTTPServerEngineFactory.java Fri May 16 07:16:31 2008
@@ -198,7 +198,7 @@
         } 
         // checking the protocol    
         if (!protocol.equals(ref.getProtocol())) {
-            throw new IOException("Protocol mismatch: "
+            throw new IOException("Protocol mismatch for port " + port + ": "
                         + "engine's protocol is " + ref.getProtocol()
                         + ", the url protocol is " + protocol);
         }