Hey, tried having two operationtypes share the same operationid, but have different methods being called, by configuring my ds.xml like this:
Fetch worked, but when i updated, the servermethod for the fetch operationtype was called again.
EDIT: currently running 4.1-p20140608
Is this not possible? Seems redundant to have the "operationtype" in that case.
Code:
<operationBinding operationType="fetch" operationId="myAccount"> <serverMethod>fetchMyAccount</serverMethod> </operationBinding> <operationBinding operationType="update" operationId="myAccount"> <serverMethod>updateMyAccount</serverMethod> </operationBinding>
EDIT: currently running 4.1-p20140608
Is this not possible? Seems redundant to have the "operationtype" in that case.
Comment