Web Service supports ProDataSets ???

d_p2

New Member
Dear All,

When I use UpdateDataSet.xpxg to generate the web services, it throws the following exception:

** Processing: d:\progress\OEwrk\UpdateDataSet\UpdateDS.r ...
-- Parsing r-code ...
MAIN UpdateDataSet\UpdateDS.p
INPUT pIgnDBChg LOGICAL
INPUT pMrgFld LOGICAL
>>ERROR parsing r-code
The parameter/return type DATASET is not supported from a web services client. It is currently only supported from a .NET or Java open client. (11108)
>>ERROR: This procedure must be removed from the AppObject in order to generate a proxy: UpdateDataSet\UpdateDS.p

Is that means ProDataSet is not supported in Web Services? Or I need to configure sth first?

Thanks a lot!

best regards,
dp
 
It looks like that
Parameter types DATASET and dynamic DATASET-HANDLE are not supported by the web services client. If a procedure or internal procedure contains such a parameter, it cannot be called from a web services client. The .p should be modified, removed from the AppObject, or a proxy should only be created for a .NET or Java client.
10.0a skips that check but 10.0b doesn't.
 
Back
Top