-
Posted to
Security
by
Maxer_Ars
on
11-23-2009, 12:57 PM
Oh, I know.
But one has to assume they trust their host provider, but that aside, is there any benefit at all to web.config encryption?
-
Posted to
Security
by
Maxer_Ars
on
11-23-2009, 10:12 AM
We are looking at moving our servers to a hosted server location.
One of our concerns is that anyone with admin access to the servers (which obviously can be gained via physical access) could then open up our web.config and see our database connection passwords, etc...
Would encrypting the connection strings portion of web.config ...
-
Posted to
General
by
Maxer_Ars
on
11-20-2009, 2:20 PM
And that will traverse all the way back up to the site's root?
So I have two different ASP.NET solutions that I deploy.
The main portal which gets root and then another solution which is stored somewhere else but the main portal has a virtual directory inside of it that points to this.
So that other solution can just use ...
-
Posted to
General
by
Maxer_Ars
on
11-20-2009, 1:52 PM
So my site is:
Default Webssite -> MainCompanyPortal -> MySite
I need to reference a file in Default Webssite -> MainCompanyPortal\SomeFile.aspx
How can I reference that from inside ->MySite?
Say I want to make a URL link to it in ASP.NET, but I don't have a full www.mycompany.com/SomeFile.aspx as the ...
-
Posted to
Troubleshooting
by
Maxer_Ars
on
09-01-2009, 8:56 AM
Say we have 8 w3wp.exe processes running, all using around 500 MB of RAM and semi-randomly going from 3% CPU to around 40% CPU usage.
If I wanted to see what exactly those processes were doing, is there a way to do that?
See what pages they are serving, reports they might be rendering, users connected to them, etc...?
-
Posted to
ASP.NET Administration
by
Maxer_Ars
on
08-31-2009, 10:05 AM
I am looking at SCOM 2007 R2 and wondered if anyone had any experiences they could share about using it to monitor IIS and SQL servers?
Good experiences, bad ones?
How easy/hard is it to setup and configure?
Did it do a good job of notifying you when there were IIS server issues or your website wasn't working for ...
-
Posted to
Performance
by
Maxer_Ars
on
08-28-2009, 10:52 AM
I am new to this, so I am just looking for some basic wisdom, suggestions, best practices, etc...
What we are currently after is a tool that will monitor our websites and do so from off site.
Then when a site goes down, it would try the connection a few more times, try from a different 3rd party location (to confirm it isn't just some ...
-
Posted to
Troubleshooting
by
Maxer_Ars
on
08-21-2009, 9:39 AM
Yeah, that's the problem.
We have the exact same code running on the other server and it works 100% fine there.
Basically there is a loop that runs to stream the data file to the end user as part of their download.
Once that finishes we close the file stream, then move on to delete the file.
However, it looks like ...
-
Posted to
Troubleshooting
by
Maxer_Ars
on
08-18-2009, 8:30 AM
IIS is the service that is still holding onto the file.
What I don't understand is WHY it would do that, or how to go about determining why it is doing that.
Realize I wasn't clear about that in the original post, my fault.
-
Posted to
Troubleshooting
by
Maxer_Ars
on
08-17-2009, 11:24 AM
This is an offshoot of this post: http://forums.iis.net/t/1159925.aspx
I was having issues where code created a file, did stuff with it, and then went to delete it.
It was not always able to delete it, getting the error that the file was still in use.
After updating the code to explicitly close the file, it fixed the problem... ...