Sign in
Phil Henning's WebLog
MSDN Blogs
>
Phil Henning's WebLog
Options
Blog Home
Email Blog Author
Atom
RSS for posts
RSS for comments
OK
Tags
Silverlight
WCF
Search Blogs
Translate This Page
Translate this page
Powered by
Microsoft® Translator
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 5 years ago
by
Phil Henning
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 5 years ago
by
Phil Henning
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 5 years ago
by
Phil Henning
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 6 years ago
by
Phil Henning
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 6 years ago
by
Phil Henning
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 7 years ago
by
Phil Henning
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 7 years ago
by
Phil Henning
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)