Sign in
WebApps
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
RSS for posts
Atom
RSS for comments
OK
Search
Tags
ASP.NET
ASP.NET MVC
crash
debugging
error
Fixit
HttpWebRequest
IE
install
Installation
Performance
profiler
RIA
Screencast
silverlight
System.Net
Testing
WCF
Web
Web development
WF
windows 8
Windows Azure Web Sites
without visual studio
WordPress
Archive
Archives
May 2013
(3)
April 2013
(5)
March 2013
(1)
February 2013
(4)
January 2013
(6)
December 2012
(1)
November 2012
(8)
September 2012
(8)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
WebApps
How to manually clean up a broken Silverlight installation in Windows 8
Posted
2 days ago
by
Enamul Kh-MSFT
0
Comments
If you are having trouble with installing, uninstalling or reinstalling Silverlight on your Windows 8 machine, then these steps will likely to help you to perform a clean uninstall of Silverlight from your Windows 8 machine: Steps to manually clean...
WebApps
Fixing a Corrupted Silverlight Installation
Posted
14 days ago
by
Enamul Kh-MSFT
0
Comments
Recently I have dealt with few cases where a Silverlight app keeps on crashing on few machines while it works fine on others regardless of browser versions. As you can sense, this is likely a machine specific issue and something to do with the installed...
WebApps
Internet Explorer continuously prompts for installing Silverlight when it is already installed
Posted
22 days ago
by
Enamul Kh-MSFT
0
Comments
If you keep being prompted to install Silverlight when it is already installed, then you are at the right place (hopefully!) . There can be different reasons for the failure. Here I am listing some of the most common causes and their corresponding solutions...
WebApps
Set HttpWebRequest.KeepAlive = false to workaround issue casued by HttpWebRequest using a closed socket in very specific scenarios
Posted
29 days ago
by
JasonXu
0
Comments
Issue: System.Net.HttpWebRequest uses a socket that is closed in some special scenarios. (In this case it is due to some custom applications implement SSL not fully following RFC and so SSL alert caused socket to be closed forceily) In this case, to...
WebApps
Data Size limit causing Silverlight "Not Found" error when communicating with backend WCF Service
Posted
29 days ago
by
JasonXu
0
Comments
Issue: when data size exceeds a limit (e.g. 50000Bytes), Silverlight application throw "NotFound" error when communicating with WCF service at backend Troubleshooting Tips: The symptom tells us the issue is due to a limit between Silverlight and WCF...
WebApps
Missing [RoundtripOriginal()] for key properties in RIA auto-generated code causing RIA entity update failure
Posted
29 days ago
by
JasonXu
0
Comments
Issue: After upgrading Silverlight application from Silverlight 4 to Silverlight 5, updating data via RIA service throws Error "The property '<xxxxxx - a key property name>_id' is part of the object's key information and cannot be modified." ...
WebApps
Installing RIA and Silverlight Developer Runtime without Visual Studio
Posted
29 days ago
by
Enamul Kh-MSFT
0
Comments
If you try to install RIA(Rich Internet Application), you need to have either Visual Studio or Visual Web Developer installed on your machine. Hosting servers do not generally have Visual Studio installed and this may cause a blocker for them. Fortunately...
WebApps
Screencast: Using Glimpse with Windows Azure Web Sites
Posted
1 month ago
by
Jim Cheshire
0
Comments
Glimpse is a great open source diagnostic tool for web applications. Glimpse runs in your browser (it’s all HTML, so no plug-ins required), and it gives you a glimpse into what’s happening on the server when your code executes. You can see what methods...
WebApps
Screencast: Using Detailed Error Messages in Windows Azure Web Sites
Posted
1 month ago
by
Jim Cheshire
0
Comments
If your website hosted in Windows Azure Web Sites is displaying an error message that doesn’t include the details you need to fix the problem, enabling detailed error messages is often a good choice to obtain more information. Once you enable detailed...
WebApps
Breakpoint not hitting in a Silverlight RIA Application
Posted
3 months ago
by
Enamul Kh-MSFT
0
Comments
I recently worked on a project where we were able to compile and run the Silverlight Business App , but none of the breakpoints were working. We added a breakpoint in the Silverlight code, as well as, one in the RIA code but code was not breaking while...
WebApps
Screencast: Using MySQL Workbench with Windows Azure Web Sites
Posted
3 months ago
by
Jim Cheshire
0
Comments
One of the great things about Windows Azure Web Sites is being able to create a web site in seconds that uses MySQL for your data. With your Azure subscription, you are entitled to a free MySQL database. You can’t manage this database within the Azure...
WebApps
Screencast: Troubleshooting Slow Requests in Windows Azure Web Sites
Posted
3 months ago
by
Jim Cheshire
0
Comments
This is the first in a series of Microsoft CTS Screencasts on using Windows Azure Web Sites. Troubleshooting performance issues in the cloud can be tough. If you are dealing with slowness for a particular page in your Windows Azure Web Sites site, you...
WebApps
Hosting WordPress in a Subfolder of Your Windows Azure Web Site
Posted
3 months ago
by
Jim Cheshire
3
Comments
This post applies to Windows Azure Web Sites. These steps do not apply if you are using a Web Role. Windows Azure Web Sites makes it quick and easy to create a WordPress blog hosted in Azure. However, if you create a WordPress blog using the Gallery in...
WebApps
Passing multiple values in a Where clause when calling RIA services from Silverlight
Posted
3 months ago
by
Enamul Kh-MSFT
0
Comments
We recently worked on a project where we wanted to pass multiple values in a Where clause when calling RIA services. The issue seems trivial when we think of where...in clause in TSQL, but for RIA services, we need a little extra tricks. Rather than letting...
WebApps
Configure a WCF Service with SSL and consume from Silverlight via HTTPS(including cross-domain scenario)
Posted
3 months ago
by
Enamul Kh-MSFT
0
Comments
Recently we have worked on few issues where we had to configure WCF services with SSL so that we could consume them from Silverlight via HTTPS. Rather than let good research go to waste, I am posting the steps here. We will divide the concept in following...
WebApps
Out of memory issue when Silverlight Application talks to WCF service using System.Net.Socket via Duplex Channel
Posted
3 months ago
by
Enamul Kh-MSFT
0
Comments
We worked on an interesting issue where WCF was hosted as windows service. Data was Pushed from WCF Server to Silverlight client via Sockets every 2 sec. Processing WCF-pushed data is the bulk of the task that this Silverlight Application does. The app...
WebApps
How to resolve “Not Found” Error in Silverlight for WCF RIA Services Calls
Posted
4 months ago
by
Enamul Kh-MSFT
1
Comments
If you are trying to figure out why your WCF RIA Service's method calls(or just the regular WCF Service for that matter) throwing the infamous “ NotFound ” error, you are at the right place. This is basically Silverlight’s way of telling...
WebApps
Silverlight 5 Business Application Project losing intellisense in Visual Studio 2012
Posted
4 months ago
by
Enamul Kh-MSFT
0
Comments
In the recent weeks, I have encountered two different instances of the same stumbling block: Losing coding intellisense in Visual Studio 2012 in Silverlight 5 Business Application Project while using WCF RIA services. Both projects had all the needed...
WebApps
HowTo: Access a WCF RIA DomainService from a WPF client
Posted
4 months ago
by
Trevor Fe - MSFT
2
Comments
Introduction If you have developed a solution using WCF RIA and Silverlight and would like to use additional clients such as WPF with your WCF RIA services this article will show you one way it can be done. Building the Sample This sample was designed...
WebApps
Profiling Visual Studio Development Web Server
Posted
5 months ago
by
Prashant Pratap
0
Comments
Here are the steps to profile Visual Studio ASP.NET Development Web Server using NP .NET Profiler. Download NP .NET Profiler tool from here Download the x86 version as Visual Studio ASP.NET Development Web Server is 32-bit process Extract...
WebApps
FAQ on Profiling Windows Store Apps
Posted
5 months ago
by
Prashant Pratap
2
Comments
NP .NET Profiler can now profiler Windows Store Application running on Windows 8 machines. You can download the tool from here . Instructions Download the NPStoreApp.zip from here Extract it to c:\temp\np folder Double click on the NPStoreApp.exe...
WebApps
Troubleshooting Performance Issues in Windows Store Apps
Posted
6 months ago
by
Prashant Pratap
2
Comments
In this blog post, we are going to show how to use NP .NET Profiler to troubleshoot performance issues within Windows Store Applications. You can download the tool from here . Lets say we have a Windows Store Application that is taking time to...
WebApps
Troubleshooting Memory Leaks in Windows Store Apps
Posted
6 months ago
by
Prashant Pratap
0
Comments
There are many options to troubleshoot memory leak issues in .NET applications. Most common approach is capturing a memory dump just before terminating the process and looking at the object count and gcroots. Most of the time this approach works...
WebApps
Capturing Unhandled Exception Dump
Posted
6 months ago
by
Prashant Pratap
0
Comments
In this blog post, we are going to show how to use NP .NET Profiler to capture a memory dump on unhandled exception in Windows Store Applications. You can download the profiler tool from here . Whenever a Windows Store Application gets terminated...
WebApps
Launching Windows Store App under a Debugger
Posted
6 months ago
by
Prashant Pratap
1
Comments
We recently released a .NET Profiler tool for troubleshooting Windows Store Applications on Windows 8 machines. You can download this tool from here . In this blog post, we will talk about how to launch a Windows Store Application under a debugger...
Page 1 of 2 (36 items)
1
2