A
Anil Kumar
Guest
Hi, By looking at the generated catalog and the wadl files, seems the Business Entity file has all methods with invoke as the operation as below: @openapi.openedge.export( type = "REST" , useReturnValue= "false" , writeDataSetBeforeImage= "false" ). @progress.service.resourceMapping( type = "REST" , operation= "invoke" , URI= "/ReadCustomer" , alias = "" , mediaType= "application/json" ). METHOD PUBLIC VOID ReadCustomer( END METHOD . /*------------------------------------------------------------------------------ Purpose: Create one or more new records Notes: ------------------------------------------------------------------------------*/ @openapi.openedge.export( type = "REST" , useReturnValue= "false" , writeDataSetBeforeImage= "false" ). @progress.service.resourceMapping( type = "REST" , operation= "invoke" , URI= "/CreateCustomer" , alias = "" , mediaType= "application/json" ). METHOD PUBLIC VOID CreateCustomer( INPUT-OUTPUT DATASET dsCustomer): END METHOD . /*------------------------------------------------------------------------------ Purpose: Update one or more records Notes: ------------------------------------------------------------------------------*/ @openapi.openedge.export( type = "REST" , useReturnValue= "false" , writeDataSetBeforeImage= "false" ). @progress.service.resourceMapping( type = "REST" , operation= "invoke" , URI= "/UpdateCustomer" , alias = "" , mediaType= "application/json" ). METHOD PUBLIC VOID UpdateCustomer( INPUT-OUTPUT DATASET dsCustomer): END METHOD . /*------------------------------------------------------------------------------ Purpose: Delete a record Notes:
Continue reading...
Continue reading...