Package com.sun.xml.internal.ws.wsdl

Examples of com.sun.xml.internal.ws.wsdl.OperationDispatcher


    @Property(MessageContext.WSDL_OPERATION)
    public final @Nullable QName getWSDLOperation(){
        if(wsdlOperation != null)
            return wsdlOperation;

        OperationDispatcher opDispatcher = null;
        if(endpoint != null) {
            opDispatcher = ((WSEndpointImpl)endpoint).getOperationDispatcher();
        } else if (proxy != null) {
            opDispatcher = ((Stub)proxy).getOperationDispatcher();
        }
        //OpDispatcher is null when there is no WSDLModel
        if(opDispatcher != null) {
            try {
                wsdlOperation = opDispatcher.getWSDLOperationQName(this);
            } catch (DispatchException e) {
                //Ignore, this might be a protocol message which may not have a wsdl operation
                //LOGGER.info("Cannot resolve wsdl operation that this Packet is targeted for.");
            }
        }
View Full Code Here


     * Nullable when there is no associated WSDL Model
     * @return
     */
    public @Nullable OperationDispatcher getOperationDispatcher() {
        if(operationDispatcher == null && wsdlPort != null)
            operationDispatcher = new OperationDispatcher(wsdlPort,binding,null);
        return operationDispatcher;
    }
View Full Code Here

     * @return
     */
    public @Nullable
    OperationDispatcher getOperationDispatcher() {
        if(operationDispatcher == null && wsdlPort != null)
            operationDispatcher = new OperationDispatcher(wsdlPort,binding,seiModel);
        return operationDispatcher;
    }
View Full Code Here

        TubelineAssembler assembler = TubelineAssemblerFactory.create(
                Thread.currentThread().getContextClassLoader(), binding.getBindingId(), container);
        assert assembler!=null;

        this.operationDispatcher = (port == null) ? null : new OperationDispatcher(port, binding, seiModel);

        context = new ServerPipeAssemblerContext(seiModel, port, this, terminalTube, isSynchronous);
        this.masterTubeline = assembler.createServer(context);

        Codec c = context.getCodec();
View Full Code Here

TOP

Related Classes of com.sun.xml.internal.ws.wsdl.OperationDispatcher

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.