I work on an ASP.NET MVC3 solution with Visual Studio 2010. I have a view displaying images obtained from a WCF service call. This view did not render correctly through local IIS Web Server. Then I try with local IIS Express and I realised that everything works as expected. So I concluded something is wrong wi my IIS Web erver configuration. I would like to be able to work with IIS Web Server.
Here is an extract of the view:
<!DOCTYPE html>
<html lang="en">
<head>
...
</head>
<body>
...
<img src="@Url.Action("DownloadImage", new { imageID = 72 })" />
<img src="@Url.Action("DownloadImage", new { imageID = 73 })" />
...
</body>
</html>
Nothing complicated here. The interesting part in only the image tags. I call an action in my controller who call a WCF service to render the images (from my database).
When I configure my solution to work with IIS Express, it works pretty well:

You see on the screenshot below that my images are correctly obtained.

When I configure my colution to work with IIS Web Server, it doesn't work anymore:

You see on the screenshot below that my images are never obtained.

I spent a lot of time on this problem. I really would like to be able to work with my local IIS Web Server.
Don't hesitate to ask me config, code or anything else to help you understand what's going wrong here.
Thanks.
EDIT
As Darin talked about session state, below is the IIS Web Server configuration for Session State.


http://localhost/WebUI/project/DownloadImage/72in your browser address bar? Do you see the image? Is the controller action hit? Is the web service called? And what about when you force cache refreshCtrl+F5? – Darin Dimitrov Aug 24 '12 at 19:12using System.Web.SessionState;(unused) references. I removed all, compile and retry and nothing changed. I also try with Google Chrome and I got the same result. – Bronzato Aug 24 '12 at 20:17