| java.lang.Object javax.microedition.xml.rpc.Operation
All known Subclasses: com.sun.j2mews.xml.rpc.OperationImpl,
Operation | public class Operation (Code) | | The javax.microedition.xml.rpc.Operation
class corresponds to a wsdl:operation defined for a
target service endpoint.
version: 0.1 |
Method Summary | |
public Object | invoke(Object inParams) Invokes the wsdl:operation defined by this
Operation and returns the result.
Parameters: inParams - an Object representing the inputparameter value(s) to this operation a Object representing the outputvalue(s) for this operation. | public static Operation | newInstance(QName name, Element input, Element output) Creates an Operation corresponding to the
operation that is being performed.
Parameters: input - the Element describing the input parameter tothis operation. Parameters: output - the Element describing the return result to thisoperation. | public static Operation | newInstance(QName name, Element input, Element output, FaultDetailHandler faultDetailHandler) Creates an Operation corresponding to the
operation that is being performed. | public void | setProperty(String name, String value) Sets the property name to the value,
value . |
SOAPACTION_URI_PROPERTY | final public static String SOAPACTION_URI_PROPERTY(Code) | | Standard property for SOAPAction. Indicates the SOAPAction
URI if the javax.xml.rpc.soap.http.soapaction.use
property is set to true .
Type: java.lang.String
|
Operation | protected Operation()(Code) | | |
invoke | public Object invoke(Object inParams) throws JAXRPCException(Code) | | Invokes the wsdl:operation defined by this
Operation and returns the result.
Parameters: inParams - an Object representing the inputparameter value(s) to this operation a Object representing the outputvalue(s) for this operation. Can be null if this operation returns no value. throws: JAXRPCException - - if an error occurs while excuting the operation.
See Also: javax.microedition.xml.rpc.Operation |
newInstance | public static Operation newInstance(QName name, Element input, Element output)(Code) | | Creates an Operation corresponding to the
operation that is being performed.
Parameters: input - the Element describing the input parameter tothis operation. Parameters: output - the Element describing the return result to thisoperation. NULL indicates there is no returnvalue. a new Operation with the given inputand output Type characteristics |
newInstance | public static Operation newInstance(QName name, Element input, Element output, FaultDetailHandler faultDetailHandler)(Code) | | Creates an Operation corresponding to the
operation that is being performed. The faultDetailHandler
parameter is passed to the runtime and used to map custom SOAP faults.
Parameters: input - the Element describing the input parameter tothis operation. Parameters: output - the Element describing the return result to thisoperation. NULL indicates there is no returnvalue. Parameters: faultDetailHandler - the FaultDetailHandler to be calledto handle custom faults thrown by this Operation . a new Operation with the given inputand output Type characteristics |
|
|