I have written a mvc that uses nservicebus to publish messages. This works fine under Cassini.
When trying to use IIS, I receive an error message when I call Create() to create the Bus.
Access to Message Queuing system is denied.
Description: An unhandled exception occurred during the execution of the current web request. Please review...
I'm having trouble enabling the socket transport "ssl" in PHP. When I run my script, I get the error:
Warning: fsockopen()
[function.fsockopen]: unable to
connect to ssl://www.my.site.com:443
(Unable to find the socket transport
"ssl" - did you forget to enable it
when you configured PHP?)
I'm running IIS6 on Windows and...
Given an IIS server which receives heavy traffic and a website has been restarted, what happens to pending requests during the Application_Start event in ASP.NET?
It is my understanding that the first request triggers the applications completion and startup. Do the other requests just queue up?
Our Application_Start event does a lot of...
When I loaded up my new website I have some of it using MVC and the other half using static pages.
The first page should be index.html
However when I go to http://domain, it goes directly in to the MVC controller.
It does not go to index.html, even though I have IIS pointing to this page, it might be due to the fact that I am using wi...
I have some applications running under IIS6 and they all simply stopped working some time ago. Initially I suspected that could be any patch applied to our servers but I got the information that none have been applied in this time window.
The error message that is thrown by IIS is "Invalid Index", which is a HTTP 500 error. I thought t...
I have no idea how to search for this one and perhaps Serverfault would be better but I'll start here.
I have a HTML web site running at the root of one of my webservers. It runs fine and dandy. I needed to make a test environment for it and where I can't run it in the root of the websever. I have to make a directory on the test server....
I am not sure if anyone else has seens this, but I have the SMTP server sonfigured for IIS6. I am not running exchange, by the way, just the regualt SMPT server that comes with windows 2003 and IIS6. For some reason my SMTP server stops and nothing is in the logs about it. I restart it and ater a few days it stops again. Any thoughts?
...
Does a 64-bit CruiseControl.NET exist or do I need to install the 32-bit version? Our CI server is Server2003 64-bit. Currently I have been testing on WinXP Pro and no problems.
If I do need to run cc.net 32-bit on a 64-bit OS, what issues should I expect to encounter? This post mentions a couple, http://stackoverflow.com/questions/7019...
I know this question has been asked many times, but my problem is a little different.
I have page which lets user download and upload excel file. During downloading excel, it takes approx 2 mins to generate the file. I have added checkpoints which updates the database with status like (started processing, working on header ...etc). I ha...
What is the purpose of the ASP.NET ISAPI extension aspnet_isapi.dll that is hosted in the worker process w3wp.exe in IIS 6.0 ?
In IIS 5.0, I understood that this ISAPI extension was responsible for handling all asp.net requests (aspx etc). It was loaded in the IIS process and was responsible for sending the requests to the ASP.NET worke...
Is there anyway to tell the SMTP service to stop trying to resend an e-mail that has been tried / failes x amount of times ? I can't find anything in the delivery tab to speicify this. Just curious if there is another way.
...
Hi,
I use code like the following in ASP.Net to enumerate the websites in IIS:
string metabasePath = "IIS://localhost/W3SVC";
DirectoryEntry service = new DirectoryEntry(metabasePath);
service.RefreshCache();
string className = service.SchemaClassName.ToString();
if (className.EndsWith("Service"))
{
DirectoryEntries sites = servi...
QA and Dev enviroments work perfectly.
Handlers all implement the IRequiresSessionState marker.
Config File contains:
<pages enableSessionState="true">
and
<sessionState cookieless="AutoDetect" mode="InProc" timeout="20" />
IIS has session state enabled in application properties and Application is running in its own Application Po...
How do I creat AppPool and virtual directory on a remote server using Powershell on iis6
...
hi
i have to extract the cabfile(.cab) on the server.
i am Finding such script which extract cab file but i didn't get it yet.
So now i am try to extract using cabarc.exe.
But i face the problem that when i run command throuw commandline its work fine but when i give same command to system() or exec() function in php it is not work.
code...
I want to create an ASP.NET virtual dir below a classic ASP WebSite.
The structure looks like the following.
IIS
Web Sites
Classic ASP Website
ASP.NET 2.0 Website (Virtual Dir) // This site sits under the classic ASP Website as a VD
For some reason when I try to access the Virtual Dir it looks for the Web Config in the Classic AS...
Dear experts,
I would like to use GZIP compression in classic ASP.I don't know the code for the same.Please help me what line of code should i put to use GZIP compression in classic ASP for my website.
I also want to compress CSS and javascript.Suggest howto do that.
Your help in this regard will be highly appreciated.
regards,
sunny...
.net 2.0 aspx app / IIS6 creating a silly number of threads in w3wp.exe process app pool.
The app has been isolated to its own app pool with the following settings:
RECYCLING
recycle worker processses (in minutes) : 870
recycle worker process (no of requests): (not ticked)
recycle worker processes at the following times: 00:00
max vi...
We recently rewrote our company homepage and have come across a peculiar error. We have very few pages that need any code behind them, so we wrote the website in static HTML served out of IIS6. The few pages that need any code (Contact Us, with a contact form, for instance) are .ASPX pages.
The previous version of the website had more...
I inherited a web application that makes calls to a web service. It is being developed in VS2008 SP1 and deployed to IIS6 (2k3 Server R2).
Since I upgraded to Windows 7 Enterprise RTM, the following line gets added to my Web.config:
<extendedProtectionPolicy policyEnforcement="Never" />
The problem is that when I deploy this applicat...