I am getting Operational Error : when i try get my contacts .<br><br>My code :<br>import win32com.client<br>oOutlook = win32com.client.gencache.EnsureDispatch(&quot;Outlook.Application&quot;)<br>onMAPI = oOutlook.GetNamespace
(&quot;MAPI&quot;)<br>ofContacts = onMAPI.GetDefaultFolder(10) # 10=outlook contacts folder<br>redemption = oOutlook.CreateObject(&#39;Redemption.SafeContactItem&#39;)<br>for i in range(len(ofContacts.Items)):<br>&nbsp;&nbsp;&nbsp; redemption.Item
 = ofContacts.Items.Item(i+1)<br>&nbsp;&nbsp;&nbsp; print redemption.Subject<br><br>can any one tell me , what i am doing error or please tell me to solve this problem.<br><br><br>My Error:<br><br>&nbsp; File &quot;m1.py&quot;, line 5, in &lt;module&gt;
<br>&nbsp;&nbsp;&nbsp; redemption = oOutlook.CreateObject(&#39;Redemption.SafeContactItem&#39;)<br>&nbsp; File &quot;C:\Python25\lib\site-packages\win32com\gen_py\00062FFF-0000-0000-C000-00<br>0000000046x0x9x3\_Application.py&quot;, line 82, in CreateObject
<br>&nbsp;&nbsp;&nbsp; ret = self._oleobj_.InvokeTypes(277, LCID, 1, (9, 0), ((8, 1),),ObjectName<br>pywintypes.com_error: (-2147352567, &#39;Exception occurred.&#39;, (4096, &#39;Microsoft Off<br>ice Outlook&#39;, &#39;The operation failed.&#39;, None, 0, -2147221005), None)
<br><br><br>Antony<br>