Questions tagged [iis-5]

IIS (Internet Information Services) Version 5 – is a web server application and a set of feature extension modules created by Microsoft for use with Microsoft Windows. Released with Windows 2000.

IIS (Internet Information Services) Version 5 – is a web server application and a set of feature extension modules created by Microsoft for use with Microsoft Windows. Released with Windows 2000.

See for more information.

216 questions
1
vote
1 answer

IIS not serving .net control (.dll)

I'm serving a .net user control in .dll form. It displays in IE7 fine when served from my external IIS 6 server. However when served from a IIS 5 the control is rendered as a Text Area control with a Scrollbar control on the side. I had a look at…
chickeninabiscuit
  • 9,061
  • 12
  • 50
  • 56
1
vote
1 answer

401.2 error only with Anonymous Access

I have a web service which the home page is displayed and runs if I turn on Integrated Windows authentication. Now if I turn that off and Anonymous Access is on I can not even get to the wsdl page. I get the error Access is denied. Description:…
Mike
  • 5,918
  • 9
  • 57
  • 94
1
vote
2 answers

IIS upgrade NOT backwards compatible?

I have a series of web pages that running off if an IIS (5.1) server. The pages use VBscript in .ASP pages which display and populate a back end database. These pages have been working 100% error free for years. I loaded a Microsoft tool (Visual…
Loconte
1
vote
1 answer

Hosting Silverlight 5 in IIS 5.1

I wanted to know if a Silverlight application can be hosted on IIS 5.1, because when I create a virtual directory and publish the Silverlight project and try browsing it, I get this following error: The web application you are attempting to access…
vinay singri
  • 199
  • 1
  • 6
  • 20
1
vote
0 answers

Apache Tomcat 6.0 IIS 5.1 isapi redirector error "The request is not supported."

I am facing this problem since many days, scratched each n every piece of code again n again, but couldn't rectify it... I ve installed Apache Tomcat 6.0 on windows XP- service pack 3 & Enabled IIS 5.1. Tomcat is running on port 8080 and iis is…
Anoop Pete
  • 492
  • 2
  • 4
  • 17
1
vote
1 answer

C program for CGI giving error incomplete HTTP headers

My C Program Code: #include int main(void) { printf("Content-Type: text/plain;charset=us-ascii\n\n"); printf("Hello world\n\n"); return 0; } I compiled it several times, using the commands: gcc -o first.cgi first.c gcc first.c -o…
muhammadanish
  • 437
  • 2
  • 6
  • 20
1
vote
2 answers

IIS Server Name Change

I have a certificate for that is valid for *.MyCompany.com. That is fine for my dev and test servers because the first part of the URLs for those computers ends like that. I want to test this on my computer and the certificate is incorrect because…
Vaccano
  • 78,325
  • 149
  • 468
  • 850
1
vote
1 answer

IIS5 not serving index.html on local machine even though it's listed in the Default Documents

I'm developing a site in VS2008 on a machine running XP SP3 with IIS5. I've named the main page in each directory index.html to avoid the www.domain.tld/directory/pagename.ext scenario of specifying a full path, and also because these pages…
Bryan
  • 2,870
  • 24
  • 39
  • 44
1
vote
1 answer

IIS5 or IIS6 Web Application running under IIS7?

I have a web application that runs fine under IIS5 or IIS6. I just installed Vista, which has IIS7. I just copied the entire web app over as-is, no changes to any files. I went into the IIS7 manager and created a web appliction under the Default…
user99935
1
vote
1 answer

Configuring Webservice.dll into IIS

I'm creating web service by through File->New Project->web->ASP.Net Web Service Application. Instead of File->New Website->ASP.Net Web Service Application. After Coding and building Project, I got the web service Link library, Here my question is…
Arunkumar Chandrasekaran
  • 1,211
  • 4
  • 21
  • 40
1
vote
0 answers

How to fix access forbidden error in Windows XP IIS?

ASP .NET MVC2 application is installed in Windows XP , IIS 5.1 . After opening several pages or pressing F5 file requests like GET http://1.1.1.1:81/apps/Scripts/jquery.form.js HTTP/1.1 Accept: application/javascript, */*;q=0.8 Referer:…
Andrus
  • 26,339
  • 60
  • 204
  • 378
1
vote
1 answer

Plus sign in 3des encrypted url

I have a url that is created from a 3des function. The webserver should decrypt this url and grab the parameters it needs. However, the decrypt function is failing due to a plus sign in the string, the webserver (iis7, also on iis5) is reading this…
ajguk
  • 171
  • 1
  • 6
  • 16
1
vote
1 answer

IIS 5 session and Asp.Net session

If we open IIS 5 Manager and right click on virtual directory --> select Properties so that new window opens up --> click Home Directory tab --> click Configuration, so that again new window opens --> and if in this new window we select Options…
SourceC
  • 3,829
  • 8
  • 50
  • 75
1
vote
6 answers

IIS website is sending multiple content-type headers for zip files

We have a problem with an IIS5 server. When certain users/browsers click to download .zip files, binary gibberish text sometimes renders in the browser window. The desired behavior is for the file to either download or open with the associated zip…
frankadelic
  • 20,543
  • 37
  • 111
  • 164
1
vote
1 answer

Seting up Python on IIS 5.1

I have this test python file import os print 'Content-type: text/html' print print 'Python Sample CGI' print '' print "

This is A Sample Python CGI Script

" print '
' if…
Paul
  • 12,359
  • 20
  • 64
  • 101