iis

How to consume a Web Service running on IIS using ANSI C?

Is it possible to consume a SOAP or REST web service running on IIS from ANSI C? If so, how? ...

How to give a no-Administrator user rights to manage IIS?

The organization policy does not allow normal users be assigned to Administrators group of some Windows Server. But some of them need rights to manage the IIS service of these server via RDP. What kind of permission should I give to these users to let them could manage IIS without add them to Administrators group? All these servers are ...

How to log communication of a WebService running on IIS 6.0?

I'm running an ASP.NET WebService on IIS 6.0 that shows a lot of HTTP 500 (probably just exceptions from the WebService) inside the log at %systemroot%\System32\LogFiles\W3SVC1 on a customers site. Is it possible to log the content of those HTTP responses and there requests without modifying the WebService using IIS or a plug-in for I...

is it possible to install IIS 7 on windows XP ?

is it possible to install IIS 7 on windows XP ? ...

Running executable asynchronously from web application (safe solution)

What are the alternatives to System.Diagnostics API for running external EXE or BAT files under IIS hosted web application? I would like to run external EXE program from my ASP.NET-MVC web application. I don't need to wait till the program exits. I just want to start the program. The execution can take some time or it may crash, so I wo...

working with a folder outside the webservice folder

I have a asp.net webservice running in windows server 2003, i want it read/write to other folder that is in other machine, i have granted to this folder full acess to Network Service, IIS_user, IIS_IWAM accounts but the process fail, this is the error: System.UnauthorizedAccessException: Access to the path '\machineIp\ServerDataStore\Pru...

IIS, Impersonation and COM Interop Premission Denied

Hello we are in the throws of integrating a Document Management System with Dynamic CRM 4, have done similar things previously but in this instance we are having to reference a COM dll. We've configured the asp.net page (we are bringing the info in via a i-Frame in CRM), setting Impersonation = True in the Webconfig and ensured that Win...

Can't read query string if default index file name is omitted?

Is there an issue with IIS or ASP Classic where *Request.ServerVariables("QUERY_STRING")* returns blank if no default file name is given in the URL? On my local developer machine, I can do http://localhost/xslt/?opcs/abc which returns "opcs/abc". However, on our ancient web server, it returns nothing. I have to explicitly give it the...

Starting a new process in a asp.net web service

I have the following code: public void BeginConvert(object data) { ConverterData cObject = (ConverterData)data; string argument = string.Format("-i \"{0}\" -b {1} \"{2}\"", cObject.Source, compression, cObject.Destiny); Process converterProcess = new Process(); converterProcess.StartInfo.FileName = ffPath; converterProcess.St...

is there any IIS setting require for url rewriting?

Hello, i have used URL rewriting using global.asax file. url rewriting is working file on local machine but when i made it online its not working. void Application_BeginRequest(Object sender, EventArgs e) { var extension = Path.GetExtension(Request.PhysicalPath).ToLower(); if (File.Exists(Request.PhysicalPath)) { if (ext...

How can I debug this Internet Explorer issue?

I have a Web Application (ASP.NET C# for .NET 3.5) that uses the Session object to store, amount little things the debug information so when things go wrong, this is the first place to go. The process is simple actually, no matter what browser (except IE), when I navigate to a page, in the Debug Log I have data, just like the one show ...

Need help configuring IIS 5.1 on XP

Hello everybody. Fist of all I want to say IIS to me is like a vending machine to a monkey. So I have Windows XP SP2 with IIS 5.1 on it and an ASP.NET Web Forms project. I just want my website to be accessed by someone else from the internet or from my local network. How do I configure IIS so that is possible? I tried a lot of user gu...

IIS Not Linking to Django with PyISAPIe

Hello, I'm trying to run a site with Django on an IIS-based server. I followed all the instructions on the main site (http://code.djangoproject.com/wiki/DjangoOnWindowsWithIISAndSQLServer), and double checked it with a very good article (http://www.messwithsilverlight.com/2009/11/django-on-windows-server-2003-and-iis6/). I successfully...

Moving file security from one server to another (asp.net sites, IIS)

I am running windows server with asp.net websites and sql server 2008 and IIS 6. It is working fine. Now I need to move my asp.net websites to another windows server and I have hard time setting correct file security for the new server. Is there any way to compare or move or see difference file security between two servers? ...

IIS serving corrupted MSI

Hello, I am trying to put an .msi for download in a virtual directory setup with IIS. The download works fine but when I try and install the .msi, it says it is missing a _cabinet file. Me and a coworker had this issue will the installer downloaded fine & ran correctly on another coworker's machine. Am I missing anything? Is it a be...

asp.net Impersonate User for network resource access

code: System.Security.Principal.WindowsImpersonationContext impersonationContext; impersonationContext = ((System.Security.Principal.WindowsIdentity)User.Identity).Impersonate(); //access network resources. impersonationContext.Undo(); web.config: <authentication mode="Windows"> </authentication> <identity impersonate="t...

WCF wsHttpBinding "There was no channel that could accept the message with action"

[Update] Solved the Problem by generating a new web.config. Possible error was the second endpoint ("mex"). [Update/] I have a webservice in IIS. I'm trying to call a function but i get an errormessage like: There was no channel that could accept the message with action 'http://Datenlotsen.Cyquest/ICyquestService/ValidateSelfAssessmen...

simulating slow internet connection on localhost

iam using c#,asp.net and iis, i want to simulate slow internet connection on my pc for testing my app. is it possible i can control bandwidth of iis. please dont suggest System.Threading.Thread.Sleep(someDuration); in c# file. ...

IIS 7 with PHP 5.2 - Error 500

I have a fresh install of IIS 7 - I just added Web Platform Installer, and PHP 5.2 thru that. However, when trying to access to a simple test.php file (just has phpinfo() in it), I get the following list of errors: • IIS was not able to access the web.config file for the Web site or application. This can occur if the NTFS permissions ...

How to configure an index.htm file in IIS?

I am running IIS 6.0 on an XP OS using VS 2008 and SQL Server 2008 (Full install). I developed two web apps. Both of these I can run from IIS by setting them to the default website. However, now I tried adding an index.htm file. Real simple; all it has is two hyperlinks to these web apps. But now only the first web app works. The f...