How to consume a SOAP (WCF) service in Plone? - soap

Im very new to Plone, having only really scratched the surface of the product.
My client uses it, and would like an application built using it.
Can anyone give me some pointers on how to consume a SOAP service in Plone?
Any links to tutorials, articles, screencasts etc would be apprciated.
thanks

For a good Python SOAP client to use with Plone, we usually recommend Suds: https://fedorahosted.org/suds/

Related

How to implement a REST API base servlets and Tomcat8 with Spring/Hibernate

i am new all around REST API and Servlets and i need to implement a Web application which get as a Host,User,Password and receiving the messages from the inbox mail list and print them.
i am looking for a good example how to do that or an example that demonstrate this
there is a good place for tutorials to learn it?
I recommend you to use Apache CXF or SpringFramework REST services. This here is perfect example how to do this.

How do i consume .net webservice with java eclipse genymade

im have created a webservice with .net and it is running perfectly fine,now i have to develop an application on another platform which is java(eclipse,genymade)which call the web service that i have created in .net im not sure how to get started,can someone help me on this,or probably can share some article with me.thank you.
if you want an article this is probably what you want? Consuming web service in java.
Anyway it also depends on what kind of data format you are gonna parse. it may be either JSON or XML..

Kynetx and SOAP

I have been searching the web and Kynetx.com for any documetation or examples of how to use SOAP with KRL but have come up with nothing. Sadly the web services I am working with has a lot of SOAP rather then REST. If there is any links of documentation or examples of doing SOAP with KRL I would be really pleased if you would pass that on to me, i'm not even sure where to start, thanks.
There is no SOAP support in KRL. The best way to get these APIs into KRL is to create a REST-SOAP shim that translates between the two.

How to provide a REST interface to a SOAP web service?

I know very little about web programming but I need to establish a license generation web service to provide licenses to users of my desktop software.
I have managed to create a working & debugged SOAP service on a Win2003 server but now I have discovered that the interface that I need to provide to my payment processor must be REST.
How would you recommend I deal with this, given that I simply don't have the time to learn PHP and rewrite my web service etc. I could bypass the SOAP altogether and easily create an executable which receives the license parameters and returns an encrypted license, but it's the web interface bit that I am stuck on. I will probably subcontract someone to write a utility for this on elance, but I don't know what to ask for.
Manu thanks,
Michael
You can expose the same service as SOAP based as well as RESTful. Axis2 with WSDL 2.0 has support for this.
Please see this article RESTful Web Services with Apache Axis2 - explains things in detail..
Thanks..
There's no easy conversion from SOAP to REST. SOAP WebServices RESTful APIs use different approaches. I think it is very easy to do with Ruby on Rails (which will take care of 90% of RESTful APi for you). All you need is to implement your logic.
Sinatra example:
get '/hi' do
"Hello World!"
end

How to user web service with help of soap method

Hi i am new in iphone development. i have task to develop the application to get the web service.
I try to find source but i found some source but it cant give me any output.
So please help me and provide any example if it is possible.
I use ASIHTTPRequest for most network needs. However, it does not directly support SOAP. I don't know of any iPhone library that does. If you can address your web service without the overhead of SOAP then ASIHTTPRequest will make it simple for XML or JSON. If you really have no choice but to use SOAP then the following may help
http://devmylife.com/?p=111