vote up 1 vote down star
1

Is there any example code of a cpython (not IronPython) client which can call Windows Communication Foundation (WCF) service?

flag

0% accept rate
Can we safely assume that you're trying to call a SOAP- or REST-based service over HTTP? I doubt short of some sort of COM bridge between Python and a WCF client would be able to successfully call a TCP WCF service. – technomalogical Nov 9 '08 at 21:46

3 Answers

vote up 0 vote down

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 of the service you could expose endpoints via REST as well.

link|flag
vote up 1 vote down

WCF needs to expose functionality through a communication protocol. I think the most commonly used protocol is probably SOAP over HTTP. Let's assume that's what you're using then.

Take a look at this chapter in Dive Into Python. It will show you how to make SOAP calls.

I know of no unified way of calling a WCF service in Python, regardless of communication protocol.

link|flag
vote up 0 vote down

Even if there is not a specific example of calling WCF from Python, you should be able to make a fully SOAP compliant service with WCF. Then all you have to do is find some examples of how to call a normal SOAP service from Python.

The simplest thing will be to use the BasicHttpBinding in WCF and then you can support your own sessions by passing a session token with each request and response.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.