MS Word thesaurus and Web Application

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I had made a .NET Application that use microsoft Word thesaurus using msword
file when i made windows application it works well but when i try web
application it make exception that i have no suffcient previllage to access
the COM Component
any help!!!!
 
hammad said:
I had made a .NET Application that use microsoft Word thesaurus using msword
file when i made windows application it works well but when i try web
application it make exception that i have no suffcient previllage to access
the COM Component
any help!!!!

You need to grant the account that the ASPNet worker process runs under
(usually IUSR_[MachineName]) execute permissions for the directory where
your component runs.

Having said that, I think its a bad idea to run any office applications
via automation under ASP.
 
ok .
if i want to use this solution how can i grant permissions for ASPNET
account to that directory
and,
if that is bad and i want to use the word thesaurus what's the optimum
solution.



Rob Schieber said:
hammad said:
I had made a .NET Application that use microsoft Word thesaurus using msword
file when i made windows application it works well but when i try web
application it make exception that i have no suffcient previllage to access
the COM Component
any help!!!!

You need to grant the account that the ASPNet worker process runs under
(usually IUSR_[MachineName]) execute permissions for the directory where
your component runs.

Having said that, I think its a bad idea to run any office applications
via automation under ASP.
 
Back
Top