| |
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.
|
14 Articles match "Azure"
| Related DevelopMentor Courses | MORE | | Essential SQL Azure Training Understand the architecture of SQL Azure Understand how SQL Server Azure handles database connections and disaster recovery Read query plans Assign indexes Use SQL Server Reporting Services (SSRS) in the cloud Understand sharding and federations to build scalable, elastic applications Understand replicating data using data sync between SQL Azure in the cloud and SQL Server on-premise Essential SQL Azure provides hands-on training for SQL Azure developers. Learn how to use SQL Azure with Entity Framework. What's the best way to secure my data? DevelopMentor Courses - Thursday, May 19, 2011 Guerrilla.NET (US) Training PaaS will be demonstrated using the various roles of the Windows Azure platform. C# : Leverage new features of C# including asynchronous methods from C# 5.0, dynamic typing from C# 4.0, and LINQ and lambda expressions from C# 3.0. WPF/SL : Develop cutting-edge UIs with Windows Presentation Foundation and Silverlight including coverage of Silverlight 5.0 assuming Silverlight 5.0 beta is available after Mix 11). MVVM : Learn advanced WPF / Silverlight design patterns and techniques including MVVM (Model-View-ViewModel). WCF : Develop network services with Windows Communication Foundation. DevelopMentor Courses - Tuesday, March 1, 2011 Windows Azure Platform: Cloud Computing for.NET Developers Microsoft launched their vision of cloud based computing and storage under the name "Azure Service Platform". Azure provides rentable computing and storage facilities and offers all these services as HTTP addressable resources. Furthermore Microsoft provides a number of "higher order" services that also run on top of the Azure infrastructure. This includes SQL Azure - a fully functional SQL Server in the cloud as well as services to bridge the gap between on-premise and cloud facilities. Security token services play a central part in making this happen. DevelopMentor Courses - Wednesday, February 22, 2012 |
84 Articles match "Azure"
| The Latest from DevelopMentor | MORE | | DotNed podcast: Patriek van Dorp over NuGet packages voor Windows Azure In deze podcast spreekt Maurice de Beijer met Patriek van Dorp over zijn TechDays presentatie over NuGet packages voor Windows Azure. Podcast DotNed Azure NuGetLinks: Blog: [link] TechDays presentaties: [link] Wazug: [link] NuGet: [link] Presentatie met links naar de NuGet packages: [link] van Dorp - NuGet For Windows Azure.pdf Met dank aan onze sponsor RedGate. The Problem Solver - Friday, April 6, 2012 DotNed podcast: Patriek van Dorp over NuGet packages voor Windows Azure In deze podcast spreekt Maurice de Beijer met Patriek van Dorp over zijn TechDays presentatie over NuGet packages voor Windows Azure. Podcast DotNed Azure NuGetLinks: Blog: [link] TechDays presentaties: [link] Wazug: [link] NuGet: [link] Presentatie met links naar de NuGet packages: [link] van Dorp - NuGet For Windows Azure.pdf Met dank aan onze sponsor RedGate. The Problem Solver - Friday, April 6, 2012 ASP.NET WebAPI Security 4: Examples for various Authentication Scenarios SAML to SWT conversion using the Azure Access Control Service. The Thinktecture.IdentityModel.Http repository includes a number of samples for the various authentication scenarios. All the clients follow a basic pattern: Acquire client credential (a single token, multiple tokens, username/password). Call Service. The service simply enumerates the claims it finds on the request and returns them to the client. won’t show that part of the code, but rather focus on the step 1 and 2. Basic Authentication. This is the most basic (pun inteneded) scenario. Result; }. AccessToken; }. Result; }. www.leastprivilege.com - Wednesday, March 14, 2012 | -
| The Best from DevelopMentor | MORE | - SQL Azure Backup
Last week at the BAND user group meeting in Bangor me and Chris Bowen had a little unresolved discussion about how SQL Azure manages backups. Tags: Azure Today I found (thanks to Ben Rees) a segment of a presentation that was done at PDC’09 by Dave Campbell and Tony Petrossian. grabbed the screen that covers what is and what will be available when it comes to backup. Automatic failover. Every SQL Server instance will be configured for automatic failover. This is part of the standard service, no additional charge. BCP, SSIS or other custom tools. Database clone. Continuous Backup. The Blomsma Code - Monday, March 1, 2010 - Windows Azure Diagnostics: Next to Useless?
To quote my good friend Christian : “Tracing is probably one of the most discussed topics in the Windows Azure world. Now comes Windows Azure. But the way the Azure DiagnosticMonitor is currently implemented – could be called flawed. The Azure SDK provides a DiagnosticsMonitorTraceListener – which is the right way to go. Every trace line becomes an entry in an Azure Storage Table – the svclog format is gone. AzureNot because it is freaking cool – but because it can be very tedious and partly massively counter-intuitive.”. So far so good. OK done that. www.leastprivilege.com - Wednesday, December 29, 2010 - Windows Azure Root CAs and SSL Client Certificates
And indeed standard Azure (web role) VMs trust 275 root CAs (see attached list). AzureI ran into some problems while trying to make SSL client certificates work for StarterSTS 1.5. In theory you have to do two things (via startup tasks): Unlock the SSL section in IIS. Install all the root certificates for the client certs you want to accept. did that. But it still does not work. The client uses this list to choose a client certificate that is trusted by the server. Currently, this server trusts so many certificate authorities that the list has grown too long. 4/2/2030 9:42:02 PM). www.leastprivilege.com - Thursday, December 30, 2010 - WCF Duplex Messaging
The.NET Services Service Bus (part of the Azure platform) allows two parties to exchange messages both making outbound connections – potentially even using HTTP port 80. Tags: NET;Azure;WCF I am one of the moderators of the MSDN WCF Forum. One of the main areas of questions on the forum is duplex messaging – particularly using the WSDualHttpBinding. What is Duplex Messaging? However, the first three of these are supported natively in WCF and are known as One-way, request/response and duplex. Duplex Contracts in WCF. In WCF this idea is modelled by the contract. OperationContract]. .NET Meanderings - Tuesday, June 9, 2009 - Running Workflow Services on Windows Azure
Windows Azure might not support the WCF and WF4 hosting parts of Windows AppFabric bit that doesn’t mean you can’t run workflow services on Windows Azure. After all a workflow is just a.NET 4 type and Windows Azure runs the.NET framework. The web.config file The first problem is that the machine web.config of an Azure virtual machine is different than that on a regular machine. As this is missing on Azure we need to make sure we add this to our web.config. Wiki.WindowsWorkflowFoundation.eu.NET Workflow WCF WF4 ASP.NET VS2010 AppFabric AzureEnjoy! The Problem Solver - Tuesday, January 18, 2011 - ASP.NET Routing in Windows Azure Using WebForms
But what about Windows Azure ? In this brief post, I'll cover how to using ASP.NET routing and ASP.NET WebForms in Azure. How does this change for Azure? If you get routing working for IIS 7 in your web app, you can effectively deploy it to Azure. So let's run through converting a "stock" WebForms ASP.NET app to use routing in Azure. First you'll need the Azure SDK and Visual Studio tools: [link]. But in the Azure Development Fabric you'll see this: The problem is you need to tell IIS 7.5 ASP.NET Azure web2.0link]. link]. link]. Kennedy. - New #DotNed podcast: A conversation with Scott Hanselman about Windows Azure, iCloud and scalability
They discuss the move of Scott Guthrie to the Azure team and what this will mean for the average web developer. www.dotnetevents.nl.NET ASP.NET Futures Podcast DotNed AzureIn this podcast Maurice de Beijer speaks with Scott Hanselman about web development. They also talk about WebMatrix, iCloud and scalability amongst other things. The first English language podcast for the DotNed community [link] Enjoy! www.TheProblemSolver.nl The Problem Solver - Monday, July 4, 2011
| | |