What are you naming the session? $_SESSION['CAKEPHP'] also will return empty when placed inside a CakePHP app as well. The best way to make sure you can read it is to know what you want to read and then name it correctly in the CakePHP app you are writing.
$this->Session->write('Name.item1', 'value1');
$this->Session->write('Name.item2', 'value2');
$this->Session->write('Name.item3', 'value3');
...
Then you can access this via:
$_SESSION['Name']
and it will return
array (
'item1' => 'value1',
'item2' => 'value2',
'item3' => 'value3',
)
In cake you can access it like:
$this->Session->read('Name.item1')
and it will return
value1
So simply calling $_SESSION['CAKEPHP'] will not work, unless you are writing to CAKEPHP.