Questions tagged [wsdl]

Web Service Description Language (WSDL) is an XML based, human- and machine-readable language used to describe a web service. It describes the available web service methods, the message request and response structures, the possible faults, and the communication and security requirements. This tag does not refer to any tool named "wsdl", such as WSDL.EXE from Microsoft.

Web Service Description Language (WSDL) is an XML based, human- and machine-readable language used to describe a web service. It describes the available web service methods, the message request and response structures, the possible faults, and the communication and security requirements.

This tag does not refer to any tool named "wsdl", such as .

See:

WSDL is an XML format for describing network services as a set of endpoints operating on messages containing either document-oriented or procedure-oriented information. The operations and messages are described abstractly, and then bound to a concrete network protocol and message format to define an endpoint. Related concrete endpoints are combined into abstract endpoints (services). WSDL is extensible to allow description of endpoints and their messages regardless of what message formats or network protocols are used to communicate, however, the only bindings described in this document describe how to use WSDL in conjunction with SOAP 1.1, HTTP GET/POST, and MIME.

SOAP is a lightweight protocol for exchange of information in a decentralized, distributed environment. It is an XML based protocol that consists of three parts: an envelope that defines a framework for describing what is in a message and how to process it, a set of encoding rules for expressing instances of application-defined datatypes, and a convention for representing remote procedure calls and responses. SOAP can potentially be used in combination with a variety of other protocols; however, the only bindings defined in this document describe how to use SOAP in combination with HTTP and HTTP Extension Framework.

WSDL Reading, a Beginner's Guide

9291 questions
24
votes
5 answers

JAX-WS error on WSDL file: "Error resolving component 's:schema'"

The Error I am using wsimport in a Java project to generate sources for three SOAP web services. The first two work fine: I use the JAX-WS Maven plugin to grab the WSDL file and generate corresponding Java source files. This fails for one web…
Nick
  • 2,827
  • 4
  • 29
  • 39
24
votes
2 answers

Perfect Soap (Wsdl) web service in php

I am a PHP programmer, I want to create a SOAP web service using WSDL. Please could someone suggest any simple tutorials or code that enable me to make object on Device (iPhone, Blackberry, Android) End.
tv.ashvin
  • 705
  • 2
  • 7
  • 13
23
votes
6 answers

WCF: how to generate a single WSDL document, without WSDL:import?

I'm troubling into an issue... I'm trying to find a way to generate a single wsdl document from my WCF service, i.e. without any link to external documents. I've used FlatWsdl to remove all xsd:import links, bou my generated wsdl still contains a…
D_Guidi
  • 698
  • 1
  • 5
  • 10
23
votes
3 answers

How to use a WSDL File to create a WCF Proxy?

I have an old WSDL file and I want to use WCF to communicate with the service. The WSDL is generated from a ASMX (I suppose but I am not sure). What would be the required steps to communicate with it ?
Raha
  • 1,959
  • 3
  • 19
  • 28
23
votes
4 answers

java.lang.NoClassDefFoundError: javax/activation/DataSource on wsimport Intellij java 9

i'm trying to generate class stubs for a wsdl with Intellij-Idea 2017.2.5 (Webservices -> Generate code from wsdl...) using JDK-9 I'm getting this exception and i wonder how to tell intellij to pass "--add-modules java.activation" to complete the…
George
  • 354
  • 1
  • 3
  • 8
23
votes
3 answers

Generating Web Service from WSDL File

I want to generate Web Service Classes from WSDL File. I want server side code not client side. wsimport creates client sides. which tool do you use to create server side code from WSDL File?
firstthumb
  • 4,627
  • 6
  • 35
  • 45
23
votes
8 answers

SOAP Action WSDL

I'm trying to implement a client for National Rail Enquiries' SOAP Service (http://www.livedepartureboards.co.uk/ldbws/). I stick the WSDL (http://realtime.nationalrail.co.uk/ldbws/wsdl.aspx) into http://soapclient.com/soaptest.html, but I get back…
Stewart
  • 261
  • 1
  • 2
  • 7
23
votes
2 answers

Custom package names cxf-codegen-plugin

Imagine this scenario. I have a wsdl file with namespace a/b/c and it imports another wsdl whose namespace is m/n/o. Unfortunately, both of them have same ComplexTypes XYZ defined in them. Now, when I use cxf-codegen-plugin to generate Java code…
Gopal
  • 1,292
  • 3
  • 19
  • 41
22
votes
1 answer

How to create web API service in PHP

Possible Duplicate: Is it necessary to have a wsdl file for the creation of a webservice in php? I want to create a web API. My requirement is that I want to create to a way so that my customers would be able to insert/delete data from my website…
ashokostech
  • 307
  • 1
  • 5
  • 11
22
votes
1 answer

JAX-WS: Compile Schema separate from WSDL

If have a rather large schema that is used in several webservices, therefore I want to separate XSD compilation from WSDL compilation. In a simplified example, compiling in a single step works: $ wsimport -verbose service.wsdl parsing…
Drunix
  • 3,313
  • 8
  • 28
  • 50
22
votes
8 answers

Maven trouble when trying to generate from WSDL file

Im trying to generate sources from a wsdl file, but I keep running into an error on my pom.xml that I believe might be my issue? Below is the error that I get from my pom, and my pom file. Also I cannot build the project with "mvn clean install". I…
javawocky
  • 899
  • 2
  • 9
  • 31
22
votes
1 answer

Any workaround to use PHP SoapClient with a local WSDL file (NON-URI)?

I have an application running in CLI mode on a server that neither has nor needs to run a local httpd. The application does outgoing interactions with a web services provider using SOAP. The provider in question has some availability issues and we…
jrebs
  • 413
  • 1
  • 3
  • 10
22
votes
2 answers

How to determine method names and parameters in wsdl web service

I have few problems with Web Services and KSoap library. I searched this topic before asking but couldn't find anything. Here is the question : I have an url like http://www.anyting.com/bulkService.wsdl but i haven't got any documentation about it.…
ersinyildiz
  • 328
  • 1
  • 2
  • 14
21
votes
5 answers

How to generate a SOAP message with a fully populated request from WSDL without code gen

I would like to ask you how I can generate a SOAP request/response in a XML format on the basis of the WSDL file. The target platform is JVM so a wide set of languages can be used (e.g. Java, Scala, Groovy, JRuby, Jython, etc.). The SOAP…
tom.bujok
  • 1,612
  • 2
  • 13
  • 20
21
votes
4 answers

WCF hosting: Can access svc file but cannot go to wsdl link

I have a WCF service that is hosted in IIS 7.5. I have two servers, one for test and one for production. The service works fine on test server, but on the production server I have the following error. When I access the address…
Selcuk S.
  • 661
  • 2
  • 9
  • 19