Search Results

-1
votes

Manipulating the HTTP header in WCF before HTTP authentication in HttpBinding

I would type this out, but its a lot. So here is a good reference. Avner Kashtan's blog post outlines what I "think" you're looking for. Hopefully this helps! …
2
votes

What’s the most portable way to make a Silverlight & Regular .NET REST client

If this is a simple Xml REST service, why not use the WebClient in Silverlight to capture the XML using Linq to XML? I know you said its messy, but it all depends on how you look at it. if you chan …
0
votes

How to Transfer Gargantuan File from MS Word Add-In (VBA) to Web Server?

I've transmitted large files like this using MTOM encoding. More info on MTOM here: http://msdn.microsoft.com …
0
votes

WCF and Python

I do not know of any direct examples, but if the WCF service is REST enabled you could access it through POX (Plain Old XML) via the REST methods/etc (if the service has any). If you are in control …
0
votes

REST, WCF and Queues

You could use the MsmqBinding and utilize the method implemented by eedsi9n. However, from what I'm gathering from this post is that you're looking for something along the lines of a pub/sub type o …
0
votes

Problem with large solutions and service factory

I agree with John Saunders. Keep them small. Also, keep a Continuous Integration env running to keep track of your mess-ups during development. …