I want to read a standalone PST file on Exchange server machine. As Microsoft suggested we can't install the Outlook client on exchange server.I have installed the Exchange client and CDO 1.2 library on server. But still I am not able to open the PST file using redemption library. Here is the sample Perl code. It returns the error "Can't call method "LogonPstStore" on an undefined value".
$session = Win32::OLE->CreateObject("Redemption.RDOSession");
$session->LogonPstStore("C:\test\ssn1.pst");
The same code works well if I have the outlook installed on the machine. Any help will be appreciated.