You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cxf.apache.org by "Ma, Erqiang (Jim)" <ji...@iona.com> on 2007/01/31 07:48:43 UTC

Question about WSDLServiceBuilder

Hi all, 

WSDLServiceBuilder will fail to build service when given the following wsdl contains two ports which reference the different portType :

	<wsdl:service name="SOAPService">
		<wsdl:port binding="prw:Printer_SOAPBinding"
			name="PrinterSOAPPort">
			<soap:address
				location="http://localhost:9000/PrinterService/PrinterSOAPPort" />
			<wswa:UsingAddressing
				xmlns:wswa="http://www.w3.org/2005/08/addressing/wsdl" />
		</wsdl:port>
		<wsdl:port binding="prw:Job_SOAPBinding" name="JobSOAPPort">
			<soap:address
				location="http://localhost:9000/PrinterService/JobSOAPPort" />
			<wswa:UsingAddressing
				xmlns:wswa="http://www.w3.org/2005/08/addressing/wsdl" />
		</wsdl:port>
	</wsdl:service>

   
WSDLServiceBuilder will complain all endpoints must share the same portType.  I noticed these codes in WSDLServiceBuilder will be used to check if same portType is referenced by multiple port . 

        PortType portType = null;
        for (Port port : cast(serv.getPorts().values(), Port.class)) {
            if (portType == null) {
                portType = port.getBinding().getPortType();
            } else if (port.getBinding().getPortType() != portType) {
                throw new IllegalStateException("All endpoints must share the same portType");
            }
        }

Why does it need to check this?


Thanks

Jim