by community-syndication | Nov 12, 2010 | BizTalk Community Blogs via Syndication
How to get to the Device Manager in Windows 7?
If you happen to have an issue with your computer as I have right now… It keeps crashing and re-starts itself. It’s a bit frustrating. I am using Windows 7. You might want to look at your Device Manager to see if you have any issue with your Device Drivers, whether they are updated or not.
read more
by community-syndication | Nov 12, 2010 | BizTalk Community Blogs via Syndication
On Tuesday I blogged about the recent release of the ASP.NET MVC 3 RC build. You can read more about it here.
This post is a quick follow-up post that discusses a few installation issues that we’ve seen people run into – and how to fix them:
ASP.NET MVC 3 RC and C#/VB Async CTP
Two weeks ago the VS languages team released an early preview of some cool language improvements to VB and C# that we are working on for asynchronous programming. Unfortunately it isn’t possible to have both the Async CTP and the ASP.NET MVC 3 RC installed on the same machine at the same time. You instead need to choose one or the other right now – installing both will cause problems.
If you’ve already installed the Async CTP and want to install the ASP.NET MVC 3 RC, then you need to use Add/Remove Programs and uninstall the Async CTP. Once it is uninstalled, then you can safely install the ASP.NET MVC 3 RC build on your machine without problems.
If you’ve already installed both the Async CTP and ASP.NET MVC 3 RC on the same machine, then you will likely experience issues in VS with debugging (and potentially other things) not working. To fix this, go to Add/Remove Programs and uninstall both the ASP.NET MVC 3 RC build (including the VS Tools components for it) and the Async CTP. Once you’ve uninstalled both your machine will be back to a clean state and working fine. You can then choose to install either the Async CTP or ASP.NET MVC 3 RC and it will work fine.
Razor Intellisense and Resharper
ReSharper is a popular product from JetBrains that enhances Visual Studio’s intellisense and code editing features. If you have ReSharper installed and want to take advantage of the Razor intellisense support we added to the ASP.NET MVC 3 RC build, please read this blog post from JetBrains which discusses ways to use them together today.
NuPack/NuGet Schema and Feed Updates
We’ve made some schema and feed modifications to NuGet since the original preview release of it that will prevent you from updating packages that were added with the original preview build. When updating to the ASP.NET MVC 3 RC, you’ll need to delete your existing packages and re-add them to your project to account for this. You can do this by deleting the packages from disk, and then run the install-package command again.
Hope this helps,
Scott
P.S. In addition to blogging, I am also now using Twitter for quick updates and to share links. Follow me at: twitter.com/scottgu
by community-syndication | Nov 11, 2010 | BizTalk Community Blogs via Syndication
Security is an issue that must be addressed in all Web services, not just in the ones that support the WS-* protocols. This table looks at interoperating with various security policies
read more
by community-syndication | Nov 11, 2010 | BizTalk Community Blogs via Syndication
You can specify the protection level that is required by messages that are sent to operations by using the OperationContract and ServiceContract attributes. A mismatch in the protection level requirements of an operation and capabilities of a binding results in an error.
read more
by community-syndication | Nov 11, 2010 | BizTalk Community Blogs via Syndication
Each ServiceModel binding element in the application configuration file has a security child element through which you can set the desired security mode.
read more
by community-syndication | Nov 11, 2010 | BizTalk Community Blogs via Syndication
The binding determines which security protocol is used to protect communications. The properties that are available depend on which binding you are using.
read more
by community-syndication | Nov 11, 2010 | BizTalk Community Blogs via Syndication
The security mode defines the aspects of SOAP message security and transport security that WCF applies when you send and receive messages. For a service to run correctly, the host and the client application must use the same security mode.
read more
by community-syndication | Nov 11, 2010 | BizTalk Community Blogs via Syndication
How WCF Delivers Message-Level Integrity and Confidentiality
WCF provides message-level security to help you ensure
read more
by community-syndication | Nov 11, 2010 | BizTalk Community Blogs via Syndication
Security Objectives in WCF
The specification for a system typically expresses security requirements in terms of authentication, authorization, integrity, and confidentiality.
read more
by community-syndication | Nov 11, 2010 | BizTalk Community Blogs via Syndication
My firsts concerns when I decide to migrate my BizTalk Server 2006 environment to BizTalk Server 2010 was: It is easy to migrate a VS 2005 solution to VS 2010? All the BizTalk artifacts (schemas, orchestrations, ) will work? What precautions I should have? This may sound simple enough, but with almost every people […]