| XMLType | javax.xml.rpc.encoding |
| JAX-RPC 1.0; JWSDP 1.0, J2EE 1.4 |
public class XMLType {
// Public Constructors
public XMLType( );
// Public Constants
public static final javax.xml.namespace.QName SOAP_ARRAY;
public static final javax.xml.namespace.QName SOAP_BASE64;
public static final javax.xml.namespace.QName SOAP_BOOLEAN;
public static final javax.xml.namespace.QName SOAP_BYTE;
public static final javax.xml.namespace.QName SOAP_DOUBLE;
public static final javax.xml.namespace.QName SOAP_FLOAT;
public static final javax.xml.namespace.QName SOAP_INT;
public static final javax.xml.namespace.QName SOAP_LONG;
public static final javax.xml.namespace.QName SOAP_SHORT;
public static final javax.xml.namespace.QName SOAP_STRING;
public static final javax.xml.namespace.QName XSD_BASE64;
public static final javax.xml.namespace.QName XSD_BOOLEAN;
public static final javax.xml.namespace.QName XSD_BYTE;
public static final javax.xml.namespace.QName XSD_DATETIME;
public static final javax.xml.namespace.QName XSD_DECIMAL;
public static final javax.xml.namespace.QName XSD_DOUBLE;
public static final javax.xml.namespace.QName XSD_FLOAT;
public static final javax.xml.namespace.QName XSD_HEXBINARY;
public static final javax.xml.namespace.QName XSD_INT;
public static final javax.xml.namespace.QName XSD_INTEGER;
public static final javax.xml.namespace.QName XSD_LONG;
public static final javax.xml.namespace.QName XSD_QNAME;
public static final javax.xml.namespace.QName XSD_SHORT;
public static final javax.xml.namespace.QName XSD_STRING;
}
The XMLType class defines constants of type javax.xml.namespace.QName that represent various XML Schema and SOAP data types. The values defined by this class are used in the JAX-RPC API where it is necessary to refer to the XML representation of particular data typesfor example, the addParameter( ) method of the javax.xml.rpc.Call interface, which uses these constants as the value of an argument that describes the XML data type of a method call to be made using the JAX-RPC dynamic invocation interface.
|
|
|
|
Package javax.xml.rpc.handler
GenericHandler
Handler
HandlerChain
HandlerInfo
HandlerRegistry
MessageContext
|
|
| Package javax.xml.rpc.handler |
| JAX-RPC 1.0; JWSDP 1.0, J2EE 1.4 |
The
javax.xml.rpc.handler
package contains the classes and interfaces used to create and manage handler chains on both the client and server sides of a JAX-RPC method call. A JAX-RPC message handler is a class that is placed on the message path between the sender of a message and the network on the client side, or between the network and the service implementation on the server side. A handler receives and may process any SOAP message that is sent along the message
A handler chain is associated with a
Service
object on the client side and with a service endpoint on the server side. The handlers that make up a chain are typically set in advance in the configuration files used by the
public interface Handler ; public interface HandlerRegistry extends Serializable; public interface MessageContext ;
public interface HandlerChain extends java.util.List;
public abstract class GenericHandler implements Handler; public class HandlerInfo implements Serializable;
|
|
|
|