Hi,
I'm looking for a solution that would let me scan files on the fly. It would need to integrate nicely with either with IIS(6.0 or 7.0) or ASP.NET. I spent some time trying to find something on the Internet but unfortunately all I've found is a COM based solution that still forces me to save files on disk (http://www.opswat.com/metas...
I'm using shared ASP.NET hosting and I have no remote-desktop access to the web server. I only have the ability to FTP ASP.NET related files to the server.
In this scenario, how would I see how much memory my ASP.NET application is consuming?
...
How do you go about checking that an IIS website is successfully using Kerberos and not falling back on NTLM?
...
The title pretty much sums it up, and I'm sure there's a perfectly valid explanation,
but it seems extremly odd that loading pages(after they're compiled) on my local computer seems to take forever, when the same code is blistering fast when "live".
I'm developing on Vista, IIS7, pretty ok hardware; while the server is a single machine,...
Hi, i have some big xslt crashing iis (StackOverflowException) when loading an XslCompiledTransform while the old (deprecated) XslTransform works fine.
Is there some known issue with big templates? Strangely enough, the same XslCompiledTransform loads successfully in a win32 application.
...
On Apache/PHP sites if I want to put a senstive file within my website folders, I put a .htaccess file in that folder so users can't download the sensitive file.
Is there a similar practice for IIS/ASP.NET sites, i.e. if I have a shared hosting account and don't have access to IIS server. Can I do this in web.config for instance?
e.g. ...
We're trying to decide between having all the devs on a particular team to use an absolute path for their code base or if relative paths are fine.
One reason I can think for an absolute path, meaning everyone has the same path, is because of IIS and functional tests. Our asp.net functional test use Nunit and WatiN to fire up IE and go ...
In asp.net 3.5, I'm rewriting the url
http://www.abc.com/archive/1108/harpersdecember
to the following
http://www.abc.com/article.aspx?docId=78
I'm using this code to do it:
Context.RewritePath("/article.aspx?docId=78");
It works fine locally but when I upload to the remote web server, I get a 404 when trying to re...
When compiling an ASP.NET 2.0 App names MySite for deployment I get a series of assemblies that resemble something like "bin/APP_xyz123.dll", "bin/APP_xyz456.dll" and so on.
Everything works fine but if I make a small code change I have to update the entire site because the "_xyz123" and "_xyz456" part of the assembles names change wit...
Ive programmed an Xbap Application and published it to Windows XP computer without any problem. Now I want to publish the Xbap application to a Computer running Windows Server 2003. I do'nt get any failure when I´m publish the application, but when I try to browse the application I got failure and I cant browse the application.
When i ...
Hello,
I would like to know what would be the impact of modifying web.config file while an ASP.NET application is running.
Here's my exact scenario. I have two hosts running the same application on IIS6. Both hosts have the exact same machine.config files, meaning they share same machine keys.
|
|
[HOST A]...
The option to target another version of the .Net Framework is disabled on a particular test system we are using on a current project.
I have tried the following without success:
Killing all W3WP.EXE processesRestarting the IIS serviceRemote Debugging has been removed from the box.
Just hoping for some pointers.
...
We have a legacy ASP.net powered site running on a IIS server, the site was developed by a central team and is used by multiple customers. Each customer however has their own copy of the site's aspx files plus a web.config file. This is causing problems as changes made by well meaning support engineers to the copies of the source aspx f...
I am having trouble getting my ASP.NET application to start an application. For example when I type:
http://my.domain.com/virtualdir or
http://my.domain.com/virtualdir/default.aspx
My application will start but I cannot get ASP.NET to start when I type http://my.domain.com.
I have tried to set the default document to default.aspx ...
Hello,
I recently bought a new web server 2008 for our company and require a FTP Hosting site that allows customers to upload files and host websites from our server, The site must have the shopping basket / Monthly rates built in.
If I purchased the correct template that is designed for hosting, How do I get it to work with the web ser...
Background
This question is in two parts.
I have a one-way WCF operation hosted in IIS 6. The following is my understanding of how this works:
_1. IIS receives a request.
_2. IIS sends an HTTP 202 response (thanks, I'll process this later).
_3. IIS calls my one-way WCF operation.
Now control passes to my WCF operation w...
I have found many tutorials about using Windows Server 2003 as a development machine, and very little information about Windows Server 2008 for the same purpose.
For a nicer experience, I have followed the steps from Convert your Windows Server 2008 to a Workstation.
I am searching for the requirements and installation order for IIS 7 ...
A common argument against using .NET for high volume, transactional enterprise systems is that IIS does not compare to the likes of Weblogic and websphere for java. Is this true? Unfortunately for .NET web apps IIS is the only option as an application server. Does anyone have any arguments against this? I would like to promote .NET more ...
help me to manage IIS (what i am trying to do is create virtual directory, set properties
of virtual directory) on a remote PC/Server.
and check iis is runnning, and a particular virtual directory exists.
iisvdir.vbs helps to manage iis on local system, how can i use it for managing remote systems.
or is there any other way to do thi...
I'm trying to change a site's home directory using powershell. This is what I have so far, but it isn't saving the changes...
$server = "localhost"
$siteName = "mysite"
$iis = [ADSI]"IIS://$server/W3SVC"
$site = $iis.psbase.children | where { $_.keyType -eq "IIsWebServer"
-AND $_.ServerComment -eq $siteName }
$path = [adsi]($si...