Author: ema Date: Thu Jul 18 06:12:06 2013 New Revision: 1504371 URL: http://svn.apache.org/r1504371 Log: Merged revisions 1504370 via svnmerge from https://svn.apache.org/repos/asf/cxf/branches/2.6.x-fixes
................ r1504370 | ema | 2013-07-18 14:10:33 +0800 (Thu, 18 Jul 2013) | 16 lines Merged revisions 1504369 via svnmerge from https://svn.apache.org/repos/asf/cxf/branches/2.7.x-fixes ................ r1504369 | ema | 2013-07-18 14:09:05 +0800 (Thu, 18 Jul 2013) | 9 lines Merged revisions 1504368 via svnmerge from https://svn.apache.org/repos/asf/cxf/trunk ........ r1504368 | ema | 2013-07-18 14:07:16 +0800 (Thu, 18 Jul 2013) | 1 line [CXF-4836]:Remove the port check ........ ................ ................ Modified: cxf/branches/2.5.x-fixes/ (props changed) cxf/branches/2.5.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/ServiceImpl.java Propchange: cxf/branches/2.5.x-fixes/ ------------------------------------------------------------------------------ --- svn:mergeinfo (added) +++ svn:mergeinfo Thu Jul 18 06:12:06 2013 @@ -0,0 +1,3 @@ +/cxf/branches/2.6.x-fixes:1504370 +/cxf/branches/2.7.x-fixes:1504369 +/cxf/trunk:1504368 Propchange: cxf/branches/2.5.x-fixes/ ------------------------------------------------------------------------------ Binary property 'svnmerge-integrated' - no diff available. Modified: cxf/branches/2.5.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/ServiceImpl.java URL: http://svn.apache.org/viewvc/cxf/branches/2.5.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/ServiceImpl.java?rev=1504371&r1=1504370&r2=1504371&view=diff ============================================================================== --- cxf/branches/2.5.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/ServiceImpl.java (original) +++ cxf/branches/2.5.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/ServiceImpl.java Thu Jul 18 06:12:06 2013 @@ -328,10 +328,6 @@ public class ServiceImpl extends Service throw new WebServiceException(BUNDLE.getString("PORT_NAME_NULL_EXC")); } - if (!portInfos.containsKey(portName)) { - throw new WebServiceException(new Message("INVALID_PORT", BUNDLE, portName).toString()); - } - try { return createPort(portName, null, serviceEndpointInterface, features); } catch (ServiceConstructionException e) {
