> I know to access outlook we need :
>
[quoted text clipped - 3 lines]
> as if it is trying to go through an infinite loop.
> This line works perfectly fine with standalone VBScript & VB6.
That's because you can't use Outlook from services (ie IIS):
http://support.microsoft.com/kb/237913/en-us
You've got a particularly awkward problem because of that -- I think
your best bet may be to write your own little server that a:talks to
Outlook, b:runs as a normal windows app, and c:can be queried by your
code running in IIS.
a: solves the PST-without-Exchange problem
b: solves the no-Outlook-in-NT service problem
c: lets you get at it from IIS
Then make your ASP (or whatever) in IIS talk to your 'outlook server',
and that should do the trick. It's not a nice solution, and it'll be a
pain writing the server stuff (raw sockets? DCOM? something else? You
can't use .net webservices, of course, because those run in IIS...) but
it should work in the end.
-- dan
tarantula3 - 11 Feb 2006 07:18 GMT
Thanks Dan,
I am tring to go through your recomendations.
Lets hope for the best.