325N/A/*
325N/A * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
325N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
325N/A *
325N/A * This code is free software; you can redistribute it and/or modify it
325N/A * under the terms of the GNU General Public License version 2 only, as
325N/A * published by the Free Software Foundation. Oracle designates this
325N/A * particular file as subject to the "Classpath" exception as provided
325N/A * by Oracle in the LICENSE file that accompanied this code.
325N/A *
325N/A * This code is distributed in the hope that it will be useful, but WITHOUT
325N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
325N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
325N/A * version 2 for more details (a copy is included in the LICENSE file that
325N/A * accompanied this code).
325N/A *
325N/A * You should have received a copy of the GNU General Public License version
325N/A * 2 along with this work; if not, write to the Free Software Foundation,
325N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
325N/A *
325N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
325N/A * or visit www.oracle.com if you need additional information or have any
325N/A * questions.
325N/A */
325N/A
325N/A/**
325N/A *
325N/A * <P>This document describes the architecture of JAX-WS 2.0 runtime. JAX-WS is
325N/A * the aggregating component of what is called the integrated Stack
325N/A * (I-Stack). The I-Stack consists of JAX-WS, JAX-B, StAX, SAAJ and Fast
325N/A * Infoset. JAX-B is the databinding component of the stack. StAX is the
325N/A * Streaming XML parser used by the stack. SAAJ is used for its
325N/A * attachment support with SOAP messages and to allow handler developers
325N/A * to gain access to the SOAP message via a standard interface. Fast
325N/A * Infoset is a binary encoding of XML that can improve performance.</P>
325N/A * <P>The remainder of this document will describe the JAX-WS runtime
325N/A * architecture from the client and server perspectives.</P>
325N/A *
325N/A * <p>
325N/A * <dl>
325N/A * <dt>{@link com.sun.xml.internal.ws.server Server}
325N/A * <dd>
325N/A * The server side portion of the JAX-WS runtime.
325N/A *
325N/A * <dt>{@link com.sun.xml.internal.ws.client Client}
325N/A * <dd>
325N/A * The client side portion of the JAX-WS runtime.
325N/A *
325N/A * </dl>
325N/A *
325N/A * @ArchitectureDocument
325N/A **/
325N/Apackage com.sun.xml.internal.ws;
325N/A
325N/A//import javax.xml.ws.Binding;