Sign In
Phil Henning'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
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
Silverlight
WCF
Archive
Archives
March 2008
(1)
January 2008
(2)
August 2007
(1)
June 2007
(1)
October 2006
(1)
May 2006
(1)
MSDN Blogs
>
Phil Henning's WebLog
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Phil Henning's WebLog
Silverlight Web Services Team Blog
Posted
over 4 years ago
by
phenning
0
Comments
For those interested in WCF development on Silverlight, the Silverlight Web Services team just set up a team blog .
Phil Henning's WebLog
Custom transport channels and BindingElements
Posted
over 4 years ago
by
phenning
0
Comments
When creating a custom transport channel, you must be sure to remove the encoding binding element from the binding context before returning from your BuildChannelFactory and BuildChannelListener calls. The best place to do this is within the constructor...
Phil Henning's WebLog
Custom UserNamePassword Validators in .Net Framework 3.5
Posted
over 4 years ago
by
phenning
3
Comments
In the version of WCF that shipped with .Net Framework 3.0 we didn't support custom validators with transport level HTTP security. We received much feedback from the community that this was a highly desired feature, so I'm happy to say we added support...
Phil Henning's WebLog
Client IP addresses in Orcas
Posted
over 5 years ago
by
phenning
2
Comments
As Nicholas promised , here is some more information about client IP address in Orcas. In the Orcas release of WCF, we added the ability for services to get the IP address and port of the calling client from your service methods when the underlying...
Phil Henning's WebLog
Accessing the Http Query String from a service method.
Posted
over 5 years ago
by
phenning
0
Comments
I'm trying to access the query string used by the client when contacting my service. How can I do this? You can access the query string through the HttpRequestMessageProperty. OperationContext context = OperationContext.Current; MessageProperties...
Phil Henning's WebLog
Securing WCF to only respond to local requests.
Posted
over 6 years ago
by
phenning
0
Comments
Is it possible to secure a web service to only respond to local requests over HTTP? Yes, you just need to make sure that you listen at http://127.0.0.1/MyService/ with HostNameComparisonMode = Exact. ServiceHost service = new ServiceHost( typeof (MyService...
Phil Henning's WebLog
Changing BindingElement settings on a Binding.
Posted
over 6 years ago
by
phenning
0
Comments
We don’t allow you to modify the properties of the binding directly, but you can create a copy of the binding elements used to create a particular binding, alter the desired properties, then use the binding element collection to create a new custom binding...
Page 1 of 1 (7 items)