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 2010/05/25 20:26:03 UTC

svn commit: r948154 - in /cxf/branches/2.2.x-fixes: ./ rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/ServiceImpl.java

Author: dkulp
Date: Tue May 25 18:26:03 2010
New Revision: 948154

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

........
  r946968 | ema | 2010-05-21 06:40:14 -0400 (Fri, 21 May 2010) | 1 line
  
  [CXF-2819]:Added the lines wrongly deleted in previous commit
........

Modified:
    cxf/branches/2.2.x-fixes/   (props changed)
    cxf/branches/2.2.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/ServiceImpl.java

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

Modified: cxf/branches/2.2.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/ServiceImpl.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/ServiceImpl.java?rev=948154&r1=948153&r2=948154&view=diff
==============================================================================
--- cxf/branches/2.2.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/ServiceImpl.java (original)
+++ cxf/branches/2.2.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/ServiceImpl.java Tue May 25 18:26:03 2010
@@ -178,6 +178,8 @@ public class ServiceImpl extends Service
                         bindingID = SOAPBinding.SOAP11HTTP_BINDING;
                     } else if (e instanceof SOAP12Binding) {
                         bindingID = SOAPBinding.SOAP12HTTP_BINDING;
+                    } else if (e instanceof javax.wsdl.extensions.soap.SOAPBinding) {
+                        bindingID = SOAPBinding.SOAP11HTTP_BINDING;
                     }
                 }
                 extensions = CastUtils.cast(port.getExtensibilityElements());