I need to store some data on Session during a call to Magento API, so I have overwritten Mage_Checkout_Model_Cart_Customer_Api
and added this:
Mage::getSingleton('core/session')->setCustomVar('value');
The above code works fine on my local server but on Live server it is not storing anything on session (even If i just store a fix string )
Any idea ?
Mage::log($session->getData());
and it should push it out to your system.log file – philwinkle Apr 15 at 19:58