About 715,000 results
Open links in new tab
  1. web services - What are WSDL, SOAP and REST? - Stack Overflow

    Sep 21, 2010 · A WSDL is an XML document that describes a web service. It actually stands for Web Services Description Language. SOAP is an XML-based protocol that lets you exchange …

  2. Client to send SOAP request and receive response

    Jan 25, 2011 · Trying to create a C# client (will be developed as a Windows service) that sends SOAP requests to a web service (and gets the results). From this question I saw this code: …

  3. How to get the wsdl file from a webservice's URL

    Dec 23, 2013 · I want to get the WSDL file for a webservice and the only thing I have is its URL (like webservice.example/foo). If I use the URL directly only an error response is ...

  4. Migrating SOAP service client to .NET 8 - Stack Overflow

    Dec 5, 2023 · I am migrating a .NET Framework WPF app to .NET 8. In my app, I have a service reference to a SOAP service so I have to migrate that as well. I created a new project, added a …

  5. soap - How to use WSDL with spring-boot? - Stack Overflow

    Nov 18, 2015 · I have WSDL and schema files provided by client. I need to create Spring-boot SOAP web service with this WSDL file. I have google it and all the examples that I can find, …

  6. How to do a SOAP Web Service call from Java class?

    Apr 11, 2013 · I understand your problem boils down to how to call a SOAP (JAX-WS) web service from Java and get its returning object. In that case, you have two possible approaches: …

  7. javascript - Simplest SOAP example - Stack Overflow

    Sep 24, 2008 · Short answer is: Don't make SOAP requests from javascript. Use a web service to request data from another domain, and if you do that then parse the results on the server-side …

  8. c# - Calling a SOAP service in .net Core - Stack Overflow

    Feb 5, 2018 · I´m porting a .net 4.6.2 code to a .net Core project, that calls a SOAP service. In the new code I´m using C# (because of some config reasons I just can´t remember why right …

  9. How to do a SOAP wsdl web services call from the command line

    +1 soapui, a very useful and free tool for working with soap-based web services. Much better than using the command line IMHO.

  10. How can I consume a WSDL (SOAP) web service in Python?

    I want to use a WSDL SOAP based web service in Python. I have looked at the Dive Into Python code but the SOAPpy module does not work under Python 2.5. I have tried using suds which …