In my oracle apex application, I have written the code to delete application session after logging out from application. I delete the session from table wwv_flow_sessions$ as
delete from APEX_050000.wwv_flow_sessions$ where id=v('APP_SESSION');
where 'APP_SESSION' holds the logged session id. After the session is deleted, a new session creates with username 'nobody' in table wwv_flow_sessions$. When I login to the application next time, this session is assigned to newly logged user.My question is why does a session creates when I log out from the application