DATASET-HANDLE (dynamic ProDataSet) parameters
- Last Updated: March 30, 2020
- 1 minute read
- OpenEdge
- Version 12.2
- Documentation
In Java, the client interface for a DATASET-HANDLE parameter is based on
the following:
- For every Web service object containing a method that passes a
DATASET-HANDLEparameter, the WSDL contains a<DatasetHandleParam>element defined as a<complexType>definition. Therefore, aDatasetHandleParamclass is created for every client object which contains a method that passes aDATSET-HANDLEparameter. - For input
DATASET-HANDLEparameters, the client must create aDatasetHandleParamobject, consisting of aMessageElementarray containing the XML Schema and data for theDATASET-HANDLE. For outputDATASET-HANDLEparameters, the client must parse the XML Schema and data in theMessageElementarray.
The following code snippet reads an OUTPUT DATASET-HANDLE from a Web
service, outDynDS:
|