Methods Summary |
---|
public java.lang.Object | invoke(java.lang.Object inParams)Invokes the wsdl:operation defined by this
Operation and returns the result.
return null;
|
public static javax.microedition.xml.rpc.Operation | newInstance(javax.xml.namespace.QName name, Element input, Element output)Creates an Operation corresponding to the
operation that is being performed.
return new com.sun.j2mews.xml.rpc.OperationImpl(name, input, output);
|
public static javax.microedition.xml.rpc.Operation | newInstance(javax.xml.namespace.QName name, Element input, Element output, FaultDetailHandler faultDetailHandler)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.
return new com.sun.j2mews.xml.rpc.OperationImpl(name,
input,
output,
faultDetailHandler);
|
public void | setProperty(java.lang.String name, java.lang.String value)Sets the property name to the value,
value .
|