My client upgraded the gateway from GW 9.1 to GW 10 CR02. When the user is trying to connect to Gateway via Policy Manager is having issues. The PM seems to be connected and you can also see the list of assertions on the top left; however, every features under View, File, Tools etc. within PM are greyed out.
Release : 10.0
Component : API GATEWAY
The underline problem is ..
java.lang.IllegalArgumentException: No enum constant com.l7tech.objectmodel.EntityType.WORK_QUEUE
at java.lang.Enum.valueOf(Enum.java:238)
at com.l7tech.objectmodel.EntityType.valueOf(Unknown Source)
... 129 more
The underline problem is ..
java.lang.IllegalArgumentException: No enum constant com.l7tech.objectmodel.EntityType.WORK_QUEUE
at java.lang.Enum.valueOf(Enum.java:238)
at com.l7tech.objectmodel.EntityType.valueOf(Unknown Source)
... 129 more
The following resolved the customer's problem.
Search for and remove the references to work_queue in the security_zone table:
mysql> SELECT * FROM ssg.security_zone WHERE entity_type LIKE "%WORK_QUEUE%";
mysql> DELETE FROM ssg.security_zone WHERE entity_type LIKE "%WORK_QUEUE%";