iis-6

DCOM/IIS Issues

。_饼干妹妹 提交于 2019-12-24 22:29:57
问题 This is my first time dealing with IIS and DCOM so I apologize if I am butchering terminology: I am trying to develop an Intranet web site and I am having fits with what I think is a permissions issue. There is a function called from a DLL referenced in the web application that reads data from several DCOM applications on the web server. When I run the web application in the Visual Studio debugger on another computer on the network, it reads successfully. If I put the same DLL and function

Understanding IIS6 permissions, ACL, and identity--how can I restrict access?

假装没事ソ 提交于 2019-12-24 20:21:15
问题 When an ASP.NET application is running under IIS6.0 in Windows 2003 Server with impersonation, what user account is relevant for deciding file read/write/execute access privileges? I have two scenarios where I am trying to understand what access to grant/revoke. I thought the most relevant user is probably the identity specified in the Application Pool, but that doesn't seem to be the whole story. The first issue concerns executing a local batch file via System.Diagnostics.Process.Start()--I

Non-http Protocol Support in windows xp or Windows Server 2003? (net.tcp)

让人想犯罪 __ 提交于 2019-12-24 20:10:22
问题 Will it be possible for windows xp or windows server 2003 to support net.tcp for WCF, well it works in windows server 2008 as IIS 7.0 supports net.tcp,but is there anyway for IIS 5.1 or IIS 6.0 to support net.tcp,is there any workaround for this? 回答1: No, you will have to host it yourself (windows service for example) to use net.tcp. See this article for a list of hosting options and what transports they can host. 回答2: I don't believe you can host non-HTTP bindings in IIS 6.0. In IIS 7.0 you

WCF service is working only for initial couple of minutes in IIS 6

旧巷老猫 提交于 2019-12-24 19:52:10
问题 Merged with WCF service working in iis 5.1 but not working in iis 6. I developed a WCF service and silverlight client, when I host this service in windows xp having iis 5.1, it is perfectly working as expected. When i host in windows server 2003 R2 having iis 6, it is working for initial couple of minutes (approximately 20 mins) after that it stops working.. i am getting HTTP 500 when i access service. The setting I have used are Anonymous access and integrated authentication both are checked

routing to blank request in mvc asp.net using IIS 6.0

人盡茶涼 提交于 2019-12-24 19:17:33
问题 I'm attempting to connect to my published website using the following url. http://www.mywebsite.com/ I keep getting: The incoming request does not match any route. Here are my routing rules: routes.MapRoute( "Default", // Route name "{controller}.aspx/{action}/{id}", // URL with parameters new { controller = "Home", action = "Index", id = "" } // Parameter defaults ); routes.MapRoute( "Default2", // Route name "/", // URL with parameters new { controller = "Home", action = "Index", id = "" }

System.OutOfMemoryException due to asp.net worker process

依然范特西╮ 提交于 2019-12-24 19:07:17
问题 Is it normal if two aspnet_wp.exe process are running in web server? what happened here is that one of the process gradually consuming too much memory. eventually i receive System.OutOfMemoryException when i attempt to acess the web site. any thoughts? 回答1: There could be any number of reasons for your app running out of memory, many of which aren't going to be discovered using task manager, process monitor or performance monitor. To find out what is truly happening you need to either profile

Hosting multiple sites in IIS 6, one need SSL

馋奶兔 提交于 2019-12-24 17:25:44
问题 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 server, regardless of domain, gets redirected to the www.site1.com site. FYI: This is the only site on the server that got a SSL certificate installed. Anyone? 回答1:

Virtual Directory pointing to UNC share

只谈情不闲聊 提交于 2019-12-24 17:15:15
问题 I have an app that uploads documents to the server through the standard When sent my application to the production server, I found out that they had the server load balanced. My solution to this was to place the upload directory into a network share and then create a virtual directory pointing to the share. I have set permissions on the share and the file itself, but I keep getting "access denied" whenever I try to upload a document. Where could I be missing permissions? Is it possible that

NHibernate - Random occurrences of “Unable to locate persister”

心不动则不痛 提交于 2019-12-24 16:15:05
问题 I've seen many posts Re: the above problem (Unable to locate persister). However the problem we are having is that this error occurs randomly in our web application (ASP.Net MVC). Also when we restart the app pool the problem goes away. Mostly the error happens for an entity that is cached. See mappings below. <class name="Privilege" table="PRIVILEGE" lazy="false"> <cache usage="nonstrict-read-write"/> <id name="Id" /> <property name="Description" column="DESCRIPTION" not-null="true" /> <set

redirecting postdata

二次信任 提交于 2019-12-24 12:11:43
问题 I've recently upgraded a page on our server from classic asp to asp.net The page recieves postdata and saves it to a file. The page is used by many of our clients and the url (to the asp page) is hard coded into their software. This means that i cannot simply swap the old page out for the new one. I'm trying to find a way to redirect clients from the old url to the new one. I know you can do a simple redirect using IIS, but this does not cause the postdata to be redirected. I've tried setting