RESOLVED: Cannot delete rest service

Trying to press the delete button and it just highlight the fields bellow.

@kpetrow Already have a bug [LDEV-2816] - Lucee and it was solved in lucee latest build 6.0.0.76-SNAPSHOT onwards.

1 Like

I found a work around.

enter the identical fields into the form data and then press delete

@kpetrow otherwise, You can delete the rest mappings by the administrator method removeRestMapping.

<cfscript>

   adm = new Administrator('server', "password");

   adm.removeRestMapping(

       type: 'server',

       password:"password",

       virtual:"virtual"

       );

</cfscript>