src/share/jaxws_classes/com/sun/xml/internal/ws/server/sei/SEIInvokerTube.java

changeset 0
373ffda63c9a
child 637
9c07ef4934dd
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/server/sei/SEIInvokerTube.java	Wed Apr 27 01:27:09 2016 +0800
     1.3 @@ -0,0 +1,98 @@
     1.4 +/*
     1.5 + * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
     1.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.7 + *
     1.8 + * This code is free software; you can redistribute it and/or modify it
     1.9 + * under the terms of the GNU General Public License version 2 only, as
    1.10 + * published by the Free Software Foundation.  Oracle designates this
    1.11 + * particular file as subject to the "Classpath" exception as provided
    1.12 + * by Oracle in the LICENSE file that accompanied this code.
    1.13 + *
    1.14 + * This code is distributed in the hope that it will be useful, but WITHOUT
    1.15 + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1.16 + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    1.17 + * version 2 for more details (a copy is included in the LICENSE file that
    1.18 + * accompanied this code).
    1.19 + *
    1.20 + * You should have received a copy of the GNU General Public License version
    1.21 + * 2 along with this work; if not, write to the Free Software Foundation,
    1.22 + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1.23 + *
    1.24 + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    1.25 + * or visit www.oracle.com if you need additional information or have any
    1.26 + * questions.
    1.27 + */
    1.28 +
    1.29 +package com.sun.xml.internal.ws.server.sei;
    1.30 +
    1.31 +import com.oracle.webservices.internal.api.databinding.JavaCallInfo;
    1.32 +import com.sun.istack.internal.NotNull;
    1.33 +import com.sun.xml.internal.ws.api.WSBinding;
    1.34 +import com.sun.xml.internal.ws.api.message.Message;
    1.35 +import com.sun.xml.internal.ws.api.message.Packet;
    1.36 +import com.sun.xml.internal.ws.api.pipe.NextAction;
    1.37 +import com.sun.xml.internal.ws.api.server.Invoker;
    1.38 +import com.sun.xml.internal.ws.client.sei.MethodHandler;
    1.39 +import com.sun.xml.internal.ws.model.AbstractSEIModelImpl;
    1.40 +import com.sun.xml.internal.ws.server.InvokerTube;
    1.41 +import com.sun.xml.internal.ws.wsdl.DispatchException;
    1.42 +import java.lang.reflect.InvocationTargetException;
    1.43 +
    1.44 +/**
    1.45 + * This pipe is used to invoke SEI based endpoints.
    1.46 + *
    1.47 + * @author Jitendra Kotamraju
    1.48 + */
    1.49 +public class SEIInvokerTube extends InvokerTube {
    1.50 +
    1.51 +    /**
    1.52 +     * For each method on the port interface we have
    1.53 +     * a {@link MethodHandler} that processes it.
    1.54 +     */
    1.55 +    private final WSBinding binding;
    1.56 +    private final AbstractSEIModelImpl model;
    1.57 +
    1.58 +    public SEIInvokerTube(AbstractSEIModelImpl model,Invoker invoker, WSBinding binding) {
    1.59 +        super(invoker);
    1.60 +        this.binding = binding;
    1.61 +        this.model = model;
    1.62 +    }
    1.63 +
    1.64 +    /**
    1.65 +     * This binds the parameters for SEI endpoints and invokes the endpoint method. The
    1.66 +     * return value, and response Holder arguments are used to create a new {@link Message}
    1.67 +     * that traverses through the Pipeline to transport.
    1.68 +     */
    1.69 +    public @NotNull NextAction processRequest(@NotNull Packet req) {
    1.70 +                JavaCallInfo call = model.getDatabinding().deserializeRequest(req);
    1.71 +                if (call.getException() == null) {
    1.72 +                        try {
    1.73 +                                if (req.getMessage().isOneWay(model.getPort()) && req.transportBackChannel != null) {
    1.74 +                                        req.transportBackChannel.close();
    1.75 +                                }
    1.76 +                                Object ret = getInvoker(req).invoke(req, call.getMethod(), call.getParameters());
    1.77 +                                call.setReturnValue(ret);
    1.78 +                                } catch (InvocationTargetException e) {
    1.79 +                                        call.setException(e);
    1.80 +                                } catch (Exception e) {
    1.81 +                                        call.setException(e);
    1.82 +                                }
    1.83 +                        } else if (call.getException() instanceof DispatchException) {
    1.84 +                            DispatchException e = (DispatchException)call.getException();
    1.85 +                            return doReturnWith(req.createServerResponse(e.fault, model.getPort(), null, binding));
    1.86 +                        }
    1.87 +                        Packet res = (Packet) model.getDatabinding().serializeResponse(call);
    1.88 +                        res = req.relateServerResponse(res, req.endpoint.getPort(), model, req.endpoint.getBinding());
    1.89 +            assert res != null;
    1.90 +            return doReturnWith(res);
    1.91 +    }
    1.92 +
    1.93 +    public @NotNull NextAction processResponse(@NotNull Packet response) {
    1.94 +        return doReturnWith(response);
    1.95 +    }
    1.96 +
    1.97 +    public @NotNull NextAction processException(@NotNull Throwable t) {
    1.98 +        return doThrow(t);
    1.99 +    }
   1.100 +
   1.101 +}

mercurial