iis

Hosting multiple sites in IIS 6, one need SSL

We've got a Windows Server 2003 running IIS 6 where we host multiple sites with different domains. www.site1.com, www.site2.com etc. Now one of these sites need a SSL certificate, so I ordered a certificate from rapidssl.com for the domain www.site1.com. The problem: After installing this SSL certificate all https request to this serve...

MySQL ODBC error "server has gone away"

Occasionally we're seeing an error from ASP pages: Microsoft OLE DB Provider for ODBC Drivers error '80004005' [MySQL][MyODBC 5.00.11][MySQL] 2006 MySQL server has gone away We're handling it the best way we can in ASP but it still crops up. I think it's more to do with the MySQL ODBC driver than the ASP code. We never see this with ...

php with oracle on IIS ...

yep, it sounds like an unholy alliance but I need to configure how to do it... for starters I have on my PC installed Oracles PL/SQL environment, with latest client (11g, I think) ... I can work in theirs IDE w/o any problems. I even can code desktop apps with C# and Oracle connector (etc.) Now, from MS site I can click on that Web Inst...

IIS -Inbound closed before receiving peer's close_notify

We have a java application which runs inside apache/tomcat which connects to web service hosted on IIS /Windows 2003 R2. The connection is made over SSL. Recently to enhance security , we have moved the security provider in JRE from default sun libraries to libraries provides by RSA. After that we are not able to connect to webservice an...

Does MSDeploy require .net 4?

Does MSDeploy require .net 4? http://www.iis.net/download/webdeploy ...

Enabled php5 on a windows server?

On a Linux server I need to add the following line to .htaccess file. AddHandler application/x-httpd-php5 .php Is there something similar for a windows server running php4? ...

Coldfusion concurrent ajax post

Hi All, I'm creating a script for uploading and processing something. user upload an excel file in the destination script, the excel data are converted to a query the query converted to json using SerializeJSON and then this json data is submitted one by one using ajax and setInterval function currently the interval for setInverval...

Why use IIS over Visual Studios Built In Webserver?

I inherited a solution and all of the mvc website projects in it won't open because they have been setup to use IIS instead of the built in webserver in VS. How would I go about changing these projects back? And why would it be beneficial not to and use IIS instead? ...

Project runing on IIS

Hi All, I have a web application that configured to run using IIS , but I don't have IIS currently installed on my machine and i don't want to change it so can any one tell me how to change the .csproj file to run on the development server Please help me as son as you can Thanks in Advance ...

Console App Host ASPX Page?

In Framework 4.0 I have a little console app. I have a self-contained .aspx page (no codebehind) and would like to run the console app just to host this page. I searched around for tricks with System.ServiceModel.Web or System.Web.Services trying to find a way to do this. Can anyone help me get clue? Thanks. ...

One set of code, two authentication schemes Forms Auth + Windows Auth: The lesser of evils

We have an application that is currently required to be accessed using two authentication schemes, Forms Auth and Active Directory or NTLM / Windows Auth. The way the application is now, there are two IIS sites pointing to different folders with the same set of files, everything identical except the web.config. Before anyone flames me ...

Canonical URLs for JS and CSS, HTTP vs HTTPS

I am using the IIS Search Engine Optimization Toolkit to scan over a site of mine. One of the compaints it has is that there are multiple canonical URLs for my static assets, e.g. http://example.com links to http://example.com/styles.css https://example.com links to https://example.com/styles.css It is of course correct, the same fi...

Default document in IIS

I have previously used parameters when setting Default document in IIS. Example list of default documents: Default.aspx?control=start Default.asp Default.html And when I go to www.mypage.com i end up on www.mypage.com/Default.aspx?control=start But this no longer work. I now end up on www.mypage.com/Default.aspx Any ideas on what m...

Cookie decryption issue between 2 domains

Hi, I am working on some aspnet C# 3.5 webapp. We use IIS7 on our test server. This webapp communicates with SharePoint 2007 3.0 SP2 by webservices. We have a machineKey in both web.config (the one of the webapp and the one of the Sharepoint site). The two sites are on two different server. This communication is working fine. We have...

Is it possible to write/read directly TCP Streams in ASP.NET?

I'd like to write and read TCP Streams directly without any modifications by ASP or IIS. Is this possible? Edit: Goal is to provide communication between a program and a server. Data exchange between them is less then 25 bytes per connection (in default case). So Headers will cause more traffic then the real data. I need to use ASP.Net ...

No dispatch.fcgi on ruby app

Hi I'm trying to interface redmine to IIS 6. It works fine under webrick. So I tried to create a new rails app to reduce the complexity, but that doesn't create the dispatch.fcgi file in the public folder, which leads me to think that my RubyIIS setup is wrong. What am I doing wrong here? I have no idea about ruby or rails, so need ...

Why do all my sites randomly stop in iis?

I have a GoDaddy Account with a virtual hosting environment. For some reason every few weeks, all of our sites (both websites and FTP sites) are stopped. I restart them and they start normally, but I would like to prevent this from happening in the future. Any ideas? ...

WCF over IIS through load balancer reports wrong base address

I'm trying to launch a WCF service over SSL on IIS 6 through a load balancer. My initial problem was an obvious and pretty well discussed one - the address shown on the WSDL page pointed to https://SERVERNAME/WebServices/mydomainws.svc instead of www.mydomain.com. The answer to this problem is to add a host header value in IIS. I did ...

asp.net 4 mvc 2 error

Hi, when I run the app on server I get: Could not load file or assembly 'Microsoft.SqlServer.Replication.DLL' or one of its dependencies. This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem. (Exception from HRESULT: 0x800736B1) Description: An unhan...

persistent connection

I'm writing php web-app using unholy alliance of php+oracle+iis :) every time script being executed I create a new connection to db - and it takes time: class ORACLE_layer { public function __construct($usr, $pwd, $db) { $this->conn = oci_connect ("...") } function __destruct() { oci_close($this->conn); ...