473,795 Members | 2,854 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

access is denied ???

Dear ASP.NET Programmers,

I am trying to save a new created Word document, but getting the following
the error. I granted the necessary rights to the ASPNET user, but I'm still
getting this error.
Thanks in advance,

Buran

Dim objWordApp As New Microsoft.Offic e.Interop.Word. Application()
Dim newDoc As New Microsoft.Offic e.Interop.Word. Document()

newDoc = objWordApp.Docu ments.Add()
newDoc.SaveAs(" burak1.doc")

Access is denied.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Unauthor izedAccessExcep tion: Access is denied.

ASP.NET is not authorized to access the requested resource. Consider
granting access rights to the resource to the ASP.NET request identity.
ASP.NET has a base process identity (typically {MACHINE}\ASPNE T on IIS 5 or
Network Service on IIS 6) that is used if the application is not
impersonating. If the application is impersonating via <identity
impersonate="tr ue"/>, the identity will be the anonymous user (typically
IUSR_MACHINENAM E) or the authenticated request user.

To grant ASP.NET write access to a file, right-click the file in Explorer,
choose "Properties " and select the Security tab. Click "Add" to add the
appropriate user or group. Highlight the ASP.NET account, and check the
boxes for the desired access.
Nov 17 '05 #1
3 2549
Thank you, but could you help me further?

Buran
"Sean" <Sh******@hotma il.com> wrote in message
news:eV******** *****@tk2msftng p13.phx.gbl...
your error is not on saving the doc but accessing ther resource object to
msword... probibly is being denied access to the location of the object...
try creating a referece to it 1st so that on compile time your program saves a copy of the referenced interop object in it's own Bin directory.
"buran" <bu***@buran.co m> wrote in message
news:uy******** ******@TK2MSFTN GP09.phx.gbl...
Dear ASP.NET Programmers,

I am trying to save a new created Word document, but getting the following the error. I granted the necessary rights to the ASPNET user, but I'm

still
getting this error.
Thanks in advance,

Buran

Dim objWordApp As New Microsoft.Offic e.Interop.Word. Application()
Dim newDoc As New Microsoft.Offic e.Interop.Word. Document()

newDoc = objWordApp.Docu ments.Add()
newDoc.SaveAs(" burak1.doc")

Access is denied.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Unauthor izedAccessExcep tion: Access is denied.

ASP.NET is not authorized to access the requested resource. Consider
granting access rights to the resource to the ASP.NET request identity.
ASP.NET has a base process identity (typically {MACHINE}\ASPNE T on IIS 5

or
Network Service on IIS 6) that is used if the application is not
impersonating. If the application is impersonating via <identity
impersonate="tr ue"/>, the identity will be the anonymous user (typically
IUSR_MACHINENAM E) or the authenticated request user.

To grant ASP.NET write access to a file, right-click the file in Explorer, choose "Properties " and select the Security tab. Click "Add" to add the
appropriate user or group. Highlight the ASP.NET account, and check the
boxes for the desired access.


Nov 17 '05 #2
How can I accomplish this?

try creating a referece to it 1st so that on compile time your program
saves
a copy of the referenced interop object in it's own Bin directory.
Thank you

"Sean" <Sh******@hotma il.com> wrote in message
news:eJ******** ******@TK2MSFTN GP10.phx.gbl...
Sure...

How?

"buran" <bu***@buran.co m> wrote in message
news:OC******** ******@TK2MSFTN GP09.phx.gbl...
Thank you, but could you help me further?

Buran
"Sean" <Sh******@hotma il.com> wrote in message
news:eV******** *****@tk2msftng p13.phx.gbl...
your error is not on saving the doc but accessing ther resource object to msword... probibly is being denied access to the location of the object...

try creating a referece to it 1st so that on compile time your program

saves
a copy of the referenced interop object in it's own Bin directory.
"buran" <bu***@buran.co m> wrote in message
news:uy******** ******@TK2MSFTN GP09.phx.gbl...
> Dear ASP.NET Programmers,
>
> I am trying to save a new created Word document, but getting the

following
> the error. I granted the necessary rights to the ASPNET user, but
I'm still
> getting this error.
> Thanks in advance,
>
> Buran
>
> Dim objWordApp As New Microsoft.Offic e.Interop.Word. Application() > Dim newDoc As New Microsoft.Offic e.Interop.Word. Document()
>
> newDoc = objWordApp.Docu ments.Add()
> newDoc.SaveAs(" burak1.doc")
>
> Access is denied.
> Description: An unhandled exception occurred during the execution of

the > current web request. Please review the stack trace for more information > about the error and where it originated in the code.
>
> Exception Details: System.Unauthor izedAccessExcep tion: Access is denied. >
> ASP.NET is not authorized to access the requested resource. Consider
> granting access rights to the resource to the ASP.NET request identity. > ASP.NET has a base process identity (typically {MACHINE}\ASPNE T on
IIS 5 or
> Network Service on IIS 6) that is used if the application is not
> impersonating. If the application is impersonating via <identity
> impersonate="tr ue"/>, the identity will be the anonymous user (typically > IUSR_MACHINENAM E) or the authenticated request user.
>
> To grant ASP.NET write access to a file, right-click the file in

Explorer,
> choose "Properties " and select the Security tab. Click "Add" to add the > appropriate user or group. Highlight the ASP.NET account, and check the > boxes for the desired access.
>
>



Nov 17 '05 #3
How can I accomplish this?

try creating a referece to it 1st so that on compile time your program
saves
a copy of the referenced interop object in it's own Bin directory.
Thank you

"Sean" <Sh******@hotma il.com> wrote in message
news:eJ******** ******@TK2MSFTN GP10.phx.gbl...
Sure...

How?

"buran" <bu***@buran.co m> wrote in message
news:OC******** ******@TK2MSFTN GP09.phx.gbl...
Thank you, but could you help me further?

Buran
"Sean" <Sh******@hotma il.com> wrote in message
news:eV******** *****@tk2msftng p13.phx.gbl...
your error is not on saving the doc but accessing ther resource object to msword... probibly is being denied access to the location of the object...

try creating a referece to it 1st so that on compile time your program

saves
a copy of the referenced interop object in it's own Bin directory.
"buran" <bu***@buran.co m> wrote in message
news:uy******** ******@TK2MSFTN GP09.phx.gbl...
> Dear ASP.NET Programmers,
>
> I am trying to save a new created Word document, but getting the

following
> the error. I granted the necessary rights to the ASPNET user, but
I'm still
> getting this error.
> Thanks in advance,
>
> Buran
>
> Dim objWordApp As New Microsoft.Offic e.Interop.Word. Application() > Dim newDoc As New Microsoft.Offic e.Interop.Word. Document()
>
> newDoc = objWordApp.Docu ments.Add()
> newDoc.SaveAs(" burak1.doc")
>
> Access is denied.
> Description: An unhandled exception occurred during the execution of

the > current web request. Please review the stack trace for more information > about the error and where it originated in the code.
>
> Exception Details: System.Unauthor izedAccessExcep tion: Access is denied. >
> ASP.NET is not authorized to access the requested resource. Consider
> granting access rights to the resource to the ASP.NET request identity. > ASP.NET has a base process identity (typically {MACHINE}\ASPNE T on
IIS 5 or
> Network Service on IIS 6) that is used if the application is not
> impersonating. If the application is impersonating via <identity
> impersonate="tr ue"/>, the identity will be the anonymous user (typically > IUSR_MACHINENAM E) or the authenticated request user.
>
> To grant ASP.NET write access to a file, right-click the file in

Explorer,
> choose "Properties " and select the Security tab. Click "Add" to add the > appropriate user or group. Highlight the ASP.NET account, and check the > boxes for the desired access.
>
>



Nov 17 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
3059
by: calfdog | last post by:
Hello, Does anyone know a workaround for calling fireEvent. With the latest from Microsoft OS XP2 and Hot fixes to IE it now gives an "access denied" error in Python when called. Here is what I am trying to do: Set the "campus" listbox value and theb call fire event, such as in the code below. I get an "access denied" error.
0
2947
by: Steve | last post by:
Hi, Yesterday I signed up for another dedicated linux server with the hosting company I use and I am having problems getting MySQL 4.1.3 working on it. I've tried just about everything I can think of to login via the MySQL client but get a variation of the following error every time: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
9
6332
by: | last post by:
Hi All, I have allready tried to ask a similar question , but got no answer until now. In the meantime, I found, that I cannot understand some thread-settings for the Main() function . If I use the attribute for the Main() function, I get "access denied error", if I use a ManagementEventWatcher to connect to the local machine to receive events. Is there anybody out there, how possibly can explain why this happens?? If I remove this...
0
3539
by: ASP.Confused | last post by:
The old message looked a little stale, so I am re-posting it here. Anybody have any ideas of what I could do?!? The previous responses to this question are below. If you want to look at the original question, the subject line is: ADODB.NET and "Access Denied" I have an ASP.NET page writtein in VB that uses ADODB. I just had to
16
7389
by: Brad | last post by:
After compiling my asp.net project I'm receiving a "BC31011 - Access is denied" error when attempting to run or debug. The only thing that seems to resolve problem is IISReset. After a reset my project runs fine for several compiles then the error starts up again...and another iisreset. I seem to recall a similar issue a long time back which required turning off indexing, which I have had off since (I just re-checked to confirm it is...
12
3100
by: Ron Weldy | last post by:
I have a test server runinng 2003/IIS 6 with a mixture of asp and asp.net files. On my workstation I have a share set up to the folder where the web files reside. I am just doing quick and dirty asp editing (like I used to be able to do with 2K/IIS5) where I use VS.NET, open an asp file, make changes, save and refresh my browser. Problem is that I get an Access is Denied error when I try to save the file and then the file gets wiped on...
3
8009
by: Shailesh Humbad | last post by:
I figured out what was causing the "Access is Denied" error when calling functions from referenced DLLs in my service. I've tried to be very detailed, so bear with me. It turns out that libraries I made myself were not having this problem, but it only happened with a zip library I downloaded and copied into my program's directory. When using classes from this library, my service threw an "Access Is Denied" FileLoadException, which...
3
7966
by: David Thielen | last post by:
Hi; I created a virtual directory in IIS 6.0 and my asp.net app runs fine. But when it tries to write a file I get: Access to the path is denied. - C:\Inetpub\wwwroot\RunReportASP\images C:\Inetpub\wwwroot\RunReportASP is the directory of my virtual directory for my app. In it's properties I did check "Write" as a permission. What else do I need to do?
8
6053
by: Jeremy Ames | last post by:
I am trying to move an application from my system to a new test system. I really should have tried an easier program first, but I didn't really have a chance. My application was originally written in ASP.NET 1.1, but was migrated to 2.0 during development. The reason this is an issue is because the application is using the Microsoft.Web.UI.WebControls.dll for the tree view and tab strip controls that didn't exist prior to 2.0. Well, that is...
0
3966
by: Andy | last post by:
Thanks Peter, I thought I'd give an update on this problem. My application had 2 assemblies that contained classed for the Data access and business logic layer. It was on one of them that I was getting the Access denied error. After checking different settings and googling I wasnt able to pinpoint the problem and as a temporary fix I decided to merge the two assemblies into one, my logic being no offending assembly no access denied...
0
9673
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9522
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10448
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10217
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10003
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6784
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5440
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
3730
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2922
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.