Sign in
Mahjayar's WebLog.
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
.Net Remoting
Asymmetric Sync
DbSyncProvider
Debugging
MSF Power Pack For Sql Azure
Pages
personal
Project Huron
Random Thoughts
Silverlight
SQL Azure
Sync Framework
Sync Framework 4.0
Sync Services for ADO.NET
Utility
WCF (Indigo)
Windows Azure
Archive
Archives
April 2011
(1)
November 2010
(2)
March 2010
(1)
January 2010
(1)
November 2009
(4)
September 2009
(1)
June 2009
(1)
April 2009
(2)
March 2009
(1)
February 2009
(2)
January 2009
(2)
December 2008
(3)
November 2008
(1)
October 2008
(3)
August 2008
(1)
June 2008
(3)
May 2008
(1)
April 2008
(1)
March 2008
(3)
November 2007
(3)
October 2007
(1)
September 2007
(3)
June 2007
(1)
May 2007
(3)
April 2007
(2)
March 2007
(2)
December 2006
(3)
November 2006
(4)
October 2006
(4)
July 2006
(5)
June 2006
(1)
April 2006
(1)
March 2006
(1)
February 2006
(4)
January 2006
(2)
December 2005
(1)
October 2005
(1)
September 2005
(1)
August 2005
(2)
June 2005
(1)
April 2005
(2)
March 2005
(1)
December 2004
(4)
November 2004
(3)
September 2004
(1)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Mahjayar's WebLog.
GUI Tool for using Httpcfg.exe to configure SSL on a given port
Posted
over 9 years ago
by
mahjayar
1
Comments
In my previous posts I had metioned on how to get SSL working with the new HttpListener class in whidbey 2.0 Beta1. It was sort of difficult to use the command line httpcfg tool as I had to manually open the machine store, pick a cert and copy its thumbprint...
Mahjayar's WebLog.
Msn Messenger 8.0 Beta invites.
Posted
over 7 years ago
by
mahjayar
36
Comments
I just checked and saw that I had 15 invitations to MSN messenger 8.0 beta. If anyone needs an invite leave your email. Update: They are all gone. I will post another one when I have more invites. Mahesh
Mahjayar's WebLog.
WCF Extensibility - Plugging in custom message processing logic
Posted
over 6 years ago
by
mahjayar
3
Comments
I have talked a lot about WCF's extensibility model and I never knew how much of the core functionality can be extended until a recent deep dive session with one of our customers developing on WCF. The client had a multi tier application with the middle...
Mahjayar's WebLog.
WinFx: UseSynchronizationContext Usage
Posted
over 7 years ago
by
mahjayar
2
Comments
One of the most common problems we debug with WCF proxies invoked from WinForm/XAML app's is a perceived hang when duplex contract's are involved. The app usually has a " click to invoke proxy " button that invokes a method (which will callback the client...
Mahjayar's WebLog.
Programatically configure SMTP service on IIS to route mails to a domain
Posted
over 9 years ago
by
mahjayar
3
Comments
Ever wondered how to programatically configure SMTP service on IIS to route mails to a particular domain? IIS settings are maintained in a Metabase file. We can programatically edit this metafile to add settings that will route emails to any domain (say...
Mahjayar's WebLog.
WCF Runtime Components
Posted
over 7 years ago
by
mahjayar
1
Comments
After I posted my earlier entry on debugging WCF apps, I thought it would be a good idea to explain the different WCF runtime blocks . This way users can see how each block/class fits in the bigger picture and how the runtime processes new channels/messages...
Mahjayar's WebLog.
Good article on hosting ASPX pages using System.Web.Hosting api's
Posted
over 9 years ago
by
mahjayar
2
Comments
With .NET 1.1, a hosting api was shipped under System.Web.Hosting namespace that let users execute ASPX pages without needing to have IIS. The namespace has got some cool features with whidbey beta 1. Whidbey beta 1 also introduced another cool class...
Mahjayar's WebLog.
Custom pick a Remoting channel based on Remote object Uri
Posted
over 6 years ago
by
mahjayar
3
Comments
One common question I see on Remoting forum is how to configure a proxy to use a particular channel from the set of registered channels for communicating when creating a proxy. For instance consider an Remoting application that exposes both a secure and...
Mahjayar's WebLog.
IEndpointBehavior vs IServiceBehavior
Posted
over 7 years ago
by
mahjayar
0
Comments
Why should this be a post topic? From the naming, its clear that one is for extending the "Service" and the other is for extending "Endpoints". We recently had a interesting question posted in our internal forums on this topic and so though I should share...
Mahjayar's WebLog.
Winfx June CTP: What happened to InstanceContextMode.Shareable
Posted
over 7 years ago
by
mahjayar
2
Comments
The June CTP of WinFx introduces some breaking changes and the detailed API changes can be downloaded from here . One of the changes we made is to the InstanceContextMode enum. This enum denotes how WCF manages the InstanceContext lifetime. InstanceContext...
Mahjayar's WebLog.
DbSyncProvider: Improving Memory Performance In WCF Based Synchronization
Posted
over 5 years ago
by
mahjayar
8
Comments
Users have frequently wanted the ability to remotely synchronize relational nodes in a peer to peer fashion using SyncServices for ADO.NET. We have a sample demonstrating remote synchronization by using Windows Communication Foundation (WCF). I wanted...
Mahjayar's WebLog.
Implications of using IPCServerChannel when connection from remote clients
Posted
over 6 years ago
by
mahjayar
1
Comments
In .Net 2.0 (Whidbey), Remoting introduced support for IPC channels. This was a quick way for local machine processes to communicate with objects hosted locally. Now there is a small behavior that users might not be aware of when they are unmarshalling...
Mahjayar's WebLog.
Debugging Whidbey Remoting AccessViolation Problem
Posted
over 7 years ago
by
mahjayar
4
Comments
There has been some cases where users have reported an AccessViolation when upgrading their Remoting app's to Whidbey. Some users found that the problem reprod only when they had some anti virus software (Nod32 in particular) installed and the AV went...
Mahjayar's WebLog.
WCF Channels AutoOpen vs Open Semantics
Posted
over 7 years ago
by
mahjayar
1
Comments
Wanted to write up a post on whats the difference between "auto" opening a WCF Channel and explicitly calling "Open" on it. Michael Maruchek posted a detailed and well explained post at http://blogs.msdn.com/mjm/archive/2006/11/13/auto-open-part-1.aspx...
Mahjayar's WebLog.
Debugging WCF Applications - What all I look for.
Posted
over 7 years ago
by
mahjayar
3
Comments
When I am debugging any WCF runtime bug, I classify it in two categories. One that needs IDE (simple logic bugs) and others that need WinDbg. Every one is familiar with the IDE debugging and will leave that topic for another day. Today I wanted to talk...
Mahjayar's WebLog.
MSN Desktop search beta - Usage update and my 2 cents
Posted
over 9 years ago
by
mahjayar
5
Comments
I got more time to play with the desktop search are was about to post my views on it. There has been ton of blogging going on and more information related reviews and user experience can be found at msnsearch blog , scoble blog #1 and scoble blog # 2...
Mahjayar's WebLog.
Getting started with DbSyncProvider (Peer to Peer Synchronization)
Posted
over 5 years ago
by
mahjayar
1
Comments
[ Note : Source for this sample can be downloaded from http://www.maheshwar.net/projects/Sync/DbSyncProviderSample.zip . Just ensure that you modify the connectionstrings in properties\settings file to point to the correct database. This sample is based...
Mahjayar's WebLog.
What happens when InstanceContext.Release/GetServiceInstance() is called on a Singleton
Posted
over 7 years ago
by
mahjayar
1
Comments
InstanceContext has two methods, ReleaseServiceInstance and GetServiceInstance , that can be used by users to dynamically release and create new service instances. Service instance is the actual .Net instance of the contract on which operations are invoked...
Mahjayar's WebLog.
Step by Step Guide to Silverlight POX Proxy Sample.
Posted
over 5 years ago
by
mahjayar
3
Comments
Technorati Tags: Silverlight , POX , XmlSerializer , JSON Scott Guthrie laid out all the details regarding Silverlight 2.0 Beta1 this morning and if you haven't had a chance to see the keynote then you can view it from VisitMix site. Scott briefly mentioned...
Mahjayar's WebLog.
What happened to IChannelBehavior?
Posted
over 7 years ago
by
mahjayar
3
Comments
With the WCF Feb CTP release the IChannelBehavior interface has been removed. In previous CTP's this interface would be used to write a behavior that will let users add customization points on the client side. Actually, we have rewired the behavior mechanism...
Mahjayar's WebLog.
Mix 08 and Silverlight 2
Posted
over 5 years ago
by
mahjayar
3
Comments
Mix 2008 is just hours away and I am very excited to talk about all the work we have been doing to get the beta of Silverlight 2 ready. Scott Guthrie already kicked off the information flow with 2 wonderful posts on Silverlight 2 and Blend . We have worked...
Mahjayar's WebLog.
WCF Feb CTP: Multiple ServiceEndpoints sharing a common Uri to listen for messages.
Posted
over 7 years ago
by
mahjayar
1
Comments
With the feb CTP release we added the ability for multiple ServiceEndpoint's on a service to share a common listen URI. I wanted to walk through a sample explaining how to achieve this. Lets assume we have this sample Service. [ServiceContract]...
Mahjayar's WebLog.
FF vs IE debate - WOS (Wrath of Slashdot)
Posted
over 9 years ago
by
mahjayar
9
Comments
Peter torr posted his experiences * Installing* (notice the bold on installing) firefox and got swamped with backlash comments from FF patrons. He then followed it up with a follow up post and I think both the posts are excellent. Gr8 posts Peter and...
Mahjayar's WebLog.
Silverlight and Connected Systems role in Silverlight
Posted
over 6 years ago
by
mahjayar
1
Comments
Microsoft recently announced Silverlight at the Mix 07 conference. Now that its released I can freely talk about what I am working on. I am really excited to start working on the connected systems API's for Silverlight 1.1. If you refer to the Silverlight...
Mahjayar's WebLog.
WinFx 3.0 has RTM'd
Posted
over 7 years ago
by
mahjayar
0
Comments
Sometime last Friday, admist cheers and high fives, our lead PM resolved the last bug that stopped us from signing off on WCF(code named Indigo). Bug # 1 was opened way back when Indigo was in planning stages and with this bug we signed off on the product...
Page 1 of 4 (90 items)
1
2
3
4