src/share/jaxws_classes/com/sun/xml/internal/ws/handler/SOAPHandlerProcessor.java

changeset 286
f50545b5e2f1
child 368
0989ad8c0860
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/SOAPHandlerProcessor.java	Tue Mar 06 16:09:35 2012 -0800
     1.3 @@ -0,0 +1,101 @@
     1.4 +/*
     1.5 + * Copyright (c) 1997, 2010, 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 +/*
    1.30 + * SOAPHandlerProcessor.java
    1.31 + *
    1.32 + * Created on February 8, 2006, 5:43 PM
    1.33 + *
    1.34 + *
    1.35 + */
    1.36 +
    1.37 +package com.sun.xml.internal.ws.handler;
    1.38 +
    1.39 +import com.sun.xml.internal.ws.api.WSBinding;
    1.40 +import com.sun.xml.internal.ws.api.SOAPVersion;
    1.41 +import com.sun.xml.internal.ws.api.message.Message;
    1.42 +import com.sun.xml.internal.ws.api.message.Messages;
    1.43 +import com.sun.xml.internal.ws.encoding.soap.SOAP12Constants;
    1.44 +import com.sun.xml.internal.ws.encoding.soap.SOAPConstants;
    1.45 +import java.util.List;
    1.46 +import java.util.logging.Level;
    1.47 +import javax.xml.namespace.QName;
    1.48 +import javax.xml.ws.ProtocolException;
    1.49 +import javax.xml.ws.handler.Handler;
    1.50 +
    1.51 +/**
    1.52 + *
    1.53 + * @author WS Development Team
    1.54 + */
    1.55 +final class SOAPHandlerProcessor<C extends MessageUpdatableContext> extends HandlerProcessor<C> {
    1.56 +
    1.57 +    /**
    1.58 +     * Creates a new instance of SOAPHandlerProcessor
    1.59 +     */
    1.60 +    public SOAPHandlerProcessor(boolean isClient, HandlerTube owner, WSBinding binding, List<? extends Handler> chain) {
    1.61 +        super(owner, binding, chain);
    1.62 +        this.isClient = isClient;
    1.63 +    }
    1.64 +
    1.65 +    /**
    1.66 +     * Replace the message in the given message context with a
    1.67 +     * fault message. If the context already contains a fault
    1.68 +     * message, then return without changing it.
    1.69 +     *
    1.70 +     * <p>This method should only be called during a request,
    1.71 +     * because during a response an exception from a handler
    1.72 +     * is dispatched rather than replacing the message with
    1.73 +     * a fault. So this method can use the MESSAGE_OUTBOUND_PROPERTY
    1.74 +     * to determine whether it is being called on the client
    1.75 +     * or the server side. If this changes in the spec, then
    1.76 +     * something else will need to be passed to the method
    1.77 +     * to determine whether the fault code is client or server.
    1.78 +     */
    1.79 +    final void insertFaultMessage(C context,
    1.80 +        ProtocolException exception) {
    1.81 +        try {
    1.82 +            if(!context.getPacketMessage().isFault()) {
    1.83 +                Message faultMessage = Messages.create(binding.getSOAPVersion(),
    1.84 +                        exception,determineFaultCode(binding.getSOAPVersion()));
    1.85 +                context.setPacketMessage(faultMessage);
    1.86 +            }
    1.87 +        } catch (Exception e) {
    1.88 +            // severe since this is from runtime and not handler
    1.89 +            logger.log(Level.SEVERE,
    1.90 +                "exception while creating fault message in handler chain", e);
    1.91 +            throw new RuntimeException(e);
    1.92 +        }
    1.93 +    }
    1.94 +
    1.95 +    /**
    1.96 +     * <p>Figure out if the fault code local part is client,
    1.97 +     * server, sender, receiver, etc. This is called by
    1.98 +     * insertFaultMessage.
    1.99 +     */
   1.100 +    private QName determineFaultCode(SOAPVersion soapVersion) {
   1.101 +        return isClient ? soapVersion.faultCodeClient : soapVersion.faultCodeServer;
   1.102 +    }
   1.103 +
   1.104 +}

mercurial