JavaTM API for XML-based RPC
|
![]() |
This release is based on the Java API for XML-based RPC 1.0 Specifications.
If you're new to JAX-RPC, the
Getting Started With JAX-RPC
chapter of the tutorial is a good place to start.
It briefly describes the technology
in a section called "What Is JAX-RPC?" and then shows
you how to build and run a simple web service.
To access the tutorial, you must download and install
the documentation bundle. After installation, you
can find the
Getting Started chapter of the tutorial in the
the docs/tutorial/doc/JAXRPC.html
file.
xsd:anyType
get
, takes no arguments,
and returns the
same type as the constructor. For example:
public class MyException extends Exception {
private MyType type;
public MyException(MyType type) {
this.type = type;
}
public MyType getType() {
return type;
}
}
Copyright © 2002 Sun Microsystems, Inc. All rights reserved.