hi all.
I explain the problem I'm having. You can see what happens in the following link [http: \ \ desarrollo.expowin.net]
This application, as you can see, is being called from a subdomain. Presents no problem as Chome browser, Firefox, Opera and Safari but in Internet Explorer passes to block cookies and delete the form wwv_flow.accept sessions.
I am using a validation process itself runs only:
return fn_prueba_login
and fn_prueba_login function is:
CREATE OR REPLACE FUNCTION FN_PRUEBA_LOGIN (p_username varchar2, p_password varchar2) RETURN BOOLEAN IS
BEGIN
IF (UPPER (p_username) = 'USER' AND p_password = '1234') THEN
RETURN TRUE;
ELSE
RETURN FALSE;
END IF;
END;
when I try to log into Internet Explorer, a message saying it is blocking
wwv_flow.accept
.
I use Apex 4.0, a 11g DB with EPG.
Can anyone help me? Does anyone know this error?
Thank you very much.
Adsor.