| |
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
5 Articles match "2010","IIS"
| Related DevelopMentor Courses | MORE | | Scott Reed: Day of Azure II Deep Dive Yesterday we had the second day of Azure in San Diego. All of the usual suspects were there including Brian Loesgen, Lynn Langit, Ike Ellis, and yours truly. was tasked with demoing my way through a ton of different features to give everyone some hands on experience in what it is like to develop applications DevelopMentor Courses - Sunday, December 5, 2010 NET 3.5 & 4.0: LINQ/EF, WCF, WPF/SL, MVVM, MEF Training and Visual Studio 2010. You will also learn about the ability of Internet Information Services (IIS) to respond to non-HTTP requests, as well as guidance on communicating SOAP faults to clients using Fault Contracts. Exploit new features of the C# programming language, such as extension methods and lambda expressions. Use the "dynamic" C# keyword to ease interoperability with COM, MS Office and dynamic programming languages. Use LINQ to query in-memory collections with SQL-like syntax, including groups, joins and aggregate functions. Exploring.NET 3.5 & 4.0 & 4.0: DevelopMentor Courses - Wednesday, February 22, 2012 Essential BizTalk Server We'll be using the latest version of the product: BizTalk 2010. Schemas II - Message Routing When you want to route inside of the BizTalk messaging engine you will have to use 'Context' information. Adapters II - Database and Line of Business Adapters We'll have a look at the SQL Server adapter. Pipelines II - Post-processing Outbound Messages When messages are leaving the BizTalk system some last minute modification or addition might be needed (like a departure timestamp or signature). What's the best way to scale my BizTalk applications to gain better performance? DevelopMentor Courses - Wednesday, February 22, 2012 |
8 Articles match "2010","IIS"
| The Latest from DevelopMentor | MORE | | Windows Azure Root CAs and SSL Client Certificates In theory you have to do two things (via startup tasks): Unlock the SSL section in IIS. Exported list of trusted CA (as of 30th Dec 2010). Serasa Certificate Authority II (11/21/2024 12:44:48 PM). TC TrustCenter Class 2 CA II (12/31/2025 10:59:59 PM). TC TrustCenter Class 3 CA II (12/31/2025 10:59:59 PM). TC TrustCenter Class 4 CA II (12/31/2025 10:59:59 PM). TC TrustCenter Universal CA II (12/31/2030 10:59:59 PM). I ran into some problems while trying to make SSL client certificates work for StarterSTS 1.5. did that. But it still does not work. www.leastprivilege.com - Thursday, December 30, 2010 Windows Azure Diagnostics: Next to Useless? Quoting: “Some IIS 7.0 So the bottom line is, that currently you cannot copy IIS logs, FREB logs and everything else that gets written by W3WP. To quote my good friend Christian : “Tracing is probably one of the most discussed topics in the Windows Azure world. Not because it is freaking cool – but because it can be very tedious and partly massively counter-intuitive.”. The.NET Framework has this wonderful facility called TraceSource. You define a named trace and route that to a configurable listener. There is even nice tooling around that. Now comes Windows Azure. So far so good. www.leastprivilege.com - Wednesday, December 29, 2010 Handling Configuration Changes in Windows Azure Applications But with the move to the full IIS model in 1.3 – the RoleEntryPoint methods get executed in a different AppDomain (even in a different process) – see here. While finalizing StarterSTS 1.5, I had a closer look at lifetime and configuration management in Windows Azure. this is no new information – just some bits and pieces compiled at one single place – plus a bit of reality check). When dealing with lifetime management (and especially configuration changes), there are two mechanisms in Windows Azure – a RoleEntryPoint derived class and a couple of events on the RoleEnvironment class. www.leastprivilege.com - Friday, December 24, 2010 | -
| The Best from DevelopMentor | MORE | - IIS & RESTful Services #FAIL
when will super duper IIS finally support non-Windows accounts for HTTP authentication? see here for a complete module including IIS management integration: [link]. Tags: IIS WCF really? link]. www.leastprivilege.com - Wednesday, July 21, 2010 - Reading Excel files in a WCF service using OleDB requires 32bit process
My development machine is running Windows 7 64bit and my service was deployed to IIS. I’ve been doing a little work on a WCF service that reads an Excel file. kept running into a problem with opening the OleDb connection to the Excel file: “Error: Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine.”. Turns out that Office Jet provider will only run in 32bit. After changing my ASP.NET processes to run in 32bit everything ran just fine. This KB article shows how to change ASP.NET to 32bit: [link]. The Blomsma Code - Wednesday, March 10, 2010 - Windows Azure Root CAs and SSL Client Certificates
In theory you have to do two things (via startup tasks): Unlock the SSL section in IIS. Exported list of trusted CA (as of 30th Dec 2010). Serasa Certificate Authority II (11/21/2024 12:44:48 PM). TC TrustCenter Class 2 CA II (12/31/2025 10:59:59 PM). TC TrustCenter Class 3 CA II (12/31/2025 10:59:59 PM). TC TrustCenter Class 4 CA II (12/31/2025 10:59:59 PM). TC TrustCenter Universal CA II (12/31/2030 10:59:59 PM). I ran into some problems while trying to make SSL client certificates work for StarterSTS 1.5. did that. But it still does not work. www.leastprivilege.com - Thursday, December 30, 2010 - ASP.NET Stack Overflow leads to redirect to login page
IIS steps in and starts up a new w3wp.exe process. I ran into a problem yesterday that took me a while to figure out and Bing and Google were no help, so here is a blog post for those unfortunate souls that run into the same issue. Application: ASP.NET website running on Internet Information Server using both Windows Authentication as well as Forms Authentication. Symptoms: A action on the site leads to some processing on the server. Suddenly, in mid processing, the browser will redirect to the login page (or attempt to get new Windows credentials). There is no error handling. ASP.NET The Blomsma Code - Friday, December 10, 2010 - Windows Azure Diagnostics: Next to Useless?
Quoting: “Some IIS 7.0 So the bottom line is, that currently you cannot copy IIS logs, FREB logs and everything else that gets written by W3WP. To quote my good friend Christian : “Tracing is probably one of the most discussed topics in the Windows Azure world. Not because it is freaking cool – but because it can be very tedious and partly massively counter-intuitive.”. The.NET Framework has this wonderful facility called TraceSource. You define a named trace and route that to a configurable listener. There is even nice tooling around that. Now comes Windows Azure. So far so good. www.leastprivilege.com - Wednesday, December 29, 2010 - Handling Configuration Changes in Windows Azure Applications
But with the move to the full IIS model in 1.3 – the RoleEntryPoint methods get executed in a different AppDomain (even in a different process) – see here. While finalizing StarterSTS 1.5, I had a closer look at lifetime and configuration management in Windows Azure. this is no new information – just some bits and pieces compiled at one single place – plus a bit of reality check). When dealing with lifetime management (and especially configuration changes), there are two mechanisms in Windows Azure – a RoleEntryPoint derived class and a couple of events on the RoleEnvironment class. www.leastprivilege.com - Friday, December 24, 2010 - Reading Excel files in a WCF service using OleDB requires 32bit process
My development machine is running Windows 7 64bit and my service was deployed to IIS. I’ve been doing a little work on a WCF service that reads an Excel file. kept running into a problem with opening the OleDb connection to the Excel file: “Error: Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine.”. Turns out that Office Jet provider will only run in 32bit. After changing my ASP.NET processes to run in 32bit everything ran just fine. This KB article shows how to change ASP.NET to 32bit: [link]. The Blomsma Code - Wednesday, March 10, 2010 %>
| | |