javax.xml.rpc.Call interface provides support
for the dynamic invocation of a service endpoint. The
javax.xml.rpc.Service interface acts as a factory
for the creation of Call instances.
Once a Call instance is created, various setter
and getter methods may be used to configure this Call
instance.
1.0 - | Field Summary | ||
|---|---|---|
| public static final String | USERNAME_PROPERTY | Standard property: User name for authentication
Type: |
| public static final String | PASSWORD_PROPERTY | Standard property: Password for authentication
Type: |
| public static final String | OPERATION_STYLE_PROPERTY | Standard property for operation style. This property is
set to "rpc" if the operation style is rpc; "document"
if the operation style is document.
Type: |
| public static final String | SOAPACTION_USE_PROPERTY | Standard property for SOAPAction. This boolean property
indicates whether or not SOAPAction is to be used. The
default value of this property is false indicating that
the SOAPAction is not used.
Type: |
| public static final String | SOAPACTION_URI_PROPERTY | Standard property for SOAPAction. Indicates the SOAPAction
URI if the javax.xml.rpc.soap.http.soapaction.use
property is set to true.
Type: |
| public static final String | ENCODINGSTYLE_URI_PROPERTY | Standard property for encoding Style: Encoding style specified
as a namespace URI. The default value is the SOAP 1.1 encoding
http://schemas.xmlsoap.org/soap/encoding/
Type: |
| public static final String | SESSION_MAINTAIN_PROPERTY | Standard property: This boolean property is used by a service
client to indicate whether or not it wants to participate in
a session with a service endpoint. If this property is set to
true, the service client indicates that it wants the session
to be maintained. If set to false, the session is not maintained.
The default value for this property is false.
Type: |
| Method from javax.xml.rpc.Call Detail: |
|---|
addParameter and setReturnType
methods before calling the invoke method. In
this case, the Call implementation class determines the
parameter types by using reflection on parameters, using
the WSDL description and configured type mapping registry. |
|
|
Map of {name, value} for the output parameters of
the last invoked operation. The parameter names in the
returned Map are of type java.lang.String. |
List values for the output parameters
of the last invoked operation. |
|
|
|
Call object. |
|
|
|
|
JAXRPCException during the processing of the one-way
remote call. |
addParameter and
setReturnType methods
are to be invoked to specify the parameter and return type
specification for a specific operation. |
Call instance.
Note that this method removes only the parameters and not
the return type. The setReturnType(null) is
used to remove the return type. |
|
Call instance. |
|
Call.setProperty method. |
setReturnType(null) removes the return
type for this Call object. |
|
Call instance. |