Hey Guys n Gals,
I need help, I'm new to the WCF world having recently made the transition from SOAP Webservices.
The WCF service works well when I run in from the VS2008 ASP.NET Development Server i.e. Debug Mode. The problem comes when I try to access the service via IIS.
I've setup a website on my local IIS Webserver hosted on ...
I've had Windows Authentication setup on an area of our website for some time now, and it has worked flawlessly so far.
Recently, the login prompt stopped appearing and went straight to "Page cannot be displayed" for some reason.
While connected to our network, the page works fine.
Outside our network, users are supposed to receive a log...
I am looking to deploy an ASP.NET MVC application using the Web Deployment Tool along the lines of this post. The way I've gotten that to work is by getting everything first working on localhost. But there's one catch. The way I've gotten things to run on local IIS is via the Visual Studio web tab, which requires setting up a Virtual ...
Background:
I have a WCF service deployed on my local machine that in turns connects to the SQL Server 2005 database.
To consume the service, I have a client application that dynamically creates the service client to consume the methods exposed in wcf service.
Configuration:
OS: Windows XP
IIS : 5.1
Problem
When I run client FIRST...
We have a system that runs in IIS.
The system should always run using the same "culture", but we cannot rely on the server settings being set correct.
One way to do it is to specify the culture everytime we do a ToString.
However, we were wondering, is it possible to set the culture on a thread at the begining of a method and rely on ...
I have certificates stored in the "Personal" section. I guess this ends up being stored in the registry somewhere.
Our IIS app gets installed with its own App Pool running under NETWORK SERVICES. What permissions do I need to give NETWORK SERVICES for it to be able to read the certificate?
...
Note: I originally posted this on ServerFault, but I haven't gotten any responses at all. Since it looks like I'm on track to get the Tumbleweed badge over there, I figured I would try here also.
Our existing public website consists of a mish-mash of asp.net pages with mostly static content and some real web applications that are set ...
I have an app that uses EF (i've seen the 'EF has a bug and StackOverflows' posts thanks). To test my stuff I generally wrap a simple console app around my code, run, rinse repeat till I get it right... So I was pretty surprised to see a stackoverflow when I moved my code to IIS.
Right now I get this problem on IIS 7.5 (windows 7 from ...
Have an ASP.net web app which works fine for a few days, but then randomly throws some database connection string exception and as a result 0 records are listed in a table (should show hundreds). I've spent many weeks debugging, memory is fine, the database exists and it's fixed by doing anything which would cause the application to recy...
I am running Windows 7 x64, and then XP in Windows XP Mode. I am using bridged networking so that in XP I can access network / domain resources (e.g. SourceSafe). I can access SourceSafe, develop code in Visual Studio, run the web site, etc. all within the VM. But I would really like to be able to hit the web site on the XP VM from th...
I am a little bit confused about 2 things.
Firstly when I create an IIS site, I have the option to have the .net version set to 1 or 2 and their respected sub versions. However the DLL's I've compiled and shipped to the bin are for .net framework v3.5. What is the relationship here between v3.5 and v2, because it seems from an IIS poin...
What can cause an IIS worker process to grow uncontrollably?
I've got a bug where if I take a page and load it sometimes it adds no memory, a small amount of memory (250k-2MB) or a really large amount of memory (10MB-30MB). I have no idea what is causing this but if you can brainstorm what might cause this behaviour I'd appreciate it.
...
Hi all,
I've been developing in VS 2005 w .Net 2.0.
I want to test this website from an outside local so am trying to set up IIS.
Apparently only IIS 5.1 is compatible with XP, but by defualt it only hosts .asp (not aspx)
pages.
Is there a way to host aspx pages w .Net 2.0 in IIS5.1?
...
In trying to configure a new website, I am running into a problem managing IIS 6.0. I use the wizard to create a website. I set the Web Site permissions to read and point it to the folder that contains all the pages and folders with icons.
The website is created but unless I add IUSR to each file and folder, the page will not load. This...
I'm using flex-weborb-asp.net and I'm trying to make RTMPT (RTMP Tunneling through http). RTMP works just fine, but are having problems with firewalls. Now, apparently, RTMPT calls are always done at http://localhost. I can't seem to make it work at for instance http://localhost/edumatic/trunk, which is an application in IIS. If I config...
In my ASP.NET web app I'd like to look up the name it was given when it was created in IIS, which is unique to the server. I'd not interested in the domain name for the web site but the actual name given to the site in IIS.
I need to be able to do it reliably for IIS6 and 7.
To be clear I'm talking about the given name in IIS, not the ...
I've designed a website that works through my own PC.
I set the IIS to work with Custom Errors in case user ran into some unknown exception.
I've also added a check that the error page will e-mail me whenever it found an error.
Can I somehow get the error information (Stack and description) from the error page?
...
Hi,
I have a web site that work with external Credit Card Processing (cybersource)
when user want to buy the webpage redirect to cybersource the user fill his details
and click buy, the page redirect to my web site and show this message
"the current web page is trying to open a site on your intranet do you want to allow this"
the u...
I'm building business app that will hold somewhere between 50,000 to 150,000 companies. Each company (db row) is represented with 4-5 properties/columns (title, location,...). ORM is LINQ2SQL.
I have to do some calculation, and for that I have lot of queries for specific company. Now, i go to db every time when i need something, and it ...
How can I write the following rule in older version of ISAPI_rewrite ?
RewriteCond %{HTTP_HOST} ^fit-reisen.de$ [NC]
RewriteRule ^(.*)$ http://www.fitreisen.de/$1 [R=301,L]
I tried to write like
RewriteCond Host: (?!^www.fit-reisen.de)(.+)
RewriteRule /(.*) http\://www.fitreisen.de/$2 [I,RP]
but i did not work.
...