hey monks,

i still cannot seem to get an outlook calendar to read over IIS. basically i have IIS installed on my computer and anon access off, with Integrated Windows Authentication on. this setup works if my user is logged into my computer. I can view the calendar fine.

When I try to view the calendar from another computer on the domain, i get an error here:
$ol = Win32::OLE->new('Outlook.Application', sub { $_[0]->Quit })or di +e "error: $!\n";
I have outlook reading from a PST file that is in a folder "C:\tmp". is there a way in the new method to specify a PST file, like: "\\mycomputer\tmp\outlook.pst" ? i know you can do:
$ol = Win32::OLE->new(['computername','Outlook.Application'], sub { $_ +[0]->Quit })or die "error: $!\n";
but that hasnt worked either. i have read alot about DCOM and MAPI, but nothing seems to be making sense with this project. i am not quite sure how to let others read the file. i think that it should be able to work. i have another post relating to this here and the OLE documentation is here.

please let me know if you need more information. i am just really confused on this, any help would be great. thanks.

In reply to outlook calendar through IIS by primus

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.