VPD ERR-1181 with HTML DB 1.6
I have an HTML DB application that has been using VPD very successfully with HTML DB 1.5. I exported the application and imported into a new installation of HTML DB 1.6.
I immediately ran into the login page issue with VPD. I added the recommended logic to bypass setting the VPD context on the login page.
However, the first page of my application recieves the "Error ERR-1181 Unable to set VPD security context on page show" error.
Here is the code from the VPD PL/SQL call to set security context:
BEGIN
IF :APP_PAGE_ID <> '101' THEN
MARKETING.SET_CONTEXT_PACKAGE.SET_CONTEXT
( :APP_USER
, :APP_PAGE_ID );
END IF;
END;
I even tried hard-coding the variable values to see if that was the problem. Unfortunately the same error occurred.
Anyone have any suggestions?
Thanks!