Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Internet Explorer Login Problem

918011May 24 2012 — edited May 29 2012
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.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jun 26 2012
Added on May 24 2012
15 comments
455 views