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
3
votes
1 answer

Add version to a WSDL

This question seems simple, but I couldn't find the proper place to set in a WSDL document a version to its definitions. The objective is be able to easily see when it becomes outdated, when in the future I update it. I'm gonna set it to 1.0. And if…
Hikari
  • 3,797
  • 12
  • 47
  • 77
3
votes
0 answers

How to force websphere v7.0 to generate inlineschema?

I am using RAD 8 and websphere 7 for developing web applications. I am working on a web service and I found that by default websphere generates XSD for input and output complex types and adds import element in WSDL. I wanted to know what…
Anand
  • 53
  • 1
  • 5
3
votes
1 answer

How does CXF translate WSDL's localhost to actual server URL?

All WSDLs I have seen so far, use localhost to describe the services address. e.g.:
Withheld
  • 4,603
  • 10
  • 45
  • 76
3
votes
4 answers

What is the value of separating interface from implementation in internet-based service-oriented computing?

Are the reasons like in normal multi-module application programming - so a client can just use the interface without having to worry about implementation details? Note that I am talking about WSDI/UDDI/SOAP and not normal application interfaces.
Evil Washing Machine
  • 1,293
  • 4
  • 18
  • 43
3
votes
1 answer

call bpel process in android

I have one BPEL process. And I want to call it in android. But I am not able to understand of wsdl url, namespace and method name. Because I know that error is get because of that. I am send wsdl file and xsd file. My BPEL process wsdl file is: …
Kels
  • 674
  • 1
  • 5
  • 21
3
votes
3 answers

WSDL import issue in delphi

I have a WSDL URL: http://www.persiansms.info/webservice/smsService.php?wsdl when I try to generate interface with Delphi WSDL Importer, Delphi generates this warning: // ************************************************************************ // …
You-See
  • 81
  • 2
  • 7
3
votes
1 answer

Pass date to web service as object property

i'm new to web services and i try to find solution but cudn't find any solution. i'm trying send object as a parameter to web service. [WebMethod] public bool CreatePatientService(Patient p) { AdminService AsRef = new…
DevT
  • 4,843
  • 16
  • 59
  • 92
3
votes
0 answers

JAXB - change package - working with embedding JAXB binding declaration but not with external file

I would like to change the package name of all the classes that are in a schema. Unfortunately I cannot use the element of jaxws-maven-plugin as I have got a WSDL and more schemas in it.
Viktor
  • 1,325
  • 2
  • 19
  • 41
3
votes
1 answer

javax.jws.WebService.wsdlLocation with jboss 4.2.2

How specifically can you use the javax.jws.WebService.wsdlLocation in JBoss 4.2.2? (This is for an EJB3 bean deployed as a web service). There is some documentation around that it is supported, but what exactly is the format? I have tried an http, I…
Yishai
  • 90,445
  • 31
  • 189
  • 263
3
votes
1 answer

Modifying Wsdl2Apex Generated Classes to Handle xs:extension and imported namespaces

I am having trouble with wsdl2apex code generation, mainly due to the use of xs:import namespace and xs:extension in my WSDL. In particular, I am seeing the error System.CalloutException: Web service callout failed: Unable to parse callout response.…
slachterman
  • 1,515
  • 4
  • 17
  • 23
3
votes
1 answer

SOAP and certificate authorization

I need to use web-service based on SOAP and WSDL. SOAP (https) use login, password and certificate to auth. Example on PHP: authtype = 'certificate'; $client->decode_utf8 = 0; $client->soap_defencoding =…
user168302
3
votes
0 answers

WSDL w. complex types and Mathematica 8

i'm trying to get Mathematica 8 to make use of a webservice i set up. However it refuses to and throws following error: InstallService::typeschema: "The type schema cannot be found for ("xsd:ArrayOfString")." The WSDL validates and works with other…
user871784
  • 1,247
  • 4
  • 13
  • 32
3
votes
0 answers

wsdl doc has missing wsdl:port element when svcutil executed from a Process object in a windows app

For reasons unnecessary to go into on this thread, I'm trying to create a wrapper for svcutil, which will then standardise the wsdl & xsd docs created to point at certain addresses. However, one of my WCF services has two different service…
3
votes
3 answers

How do I consume a real web service from a BPEL Process?

I've been doing some research on BPEL for about two weeks now and still don't quite get it. I have deployed the HelloWorld sample in ODE and have also managed to deploy this other one. My intention was to do something like the second example but…
eskalera
  • 1,072
  • 2
  • 21
  • 36
3
votes
0 answers

How can I generate a valid WCF proxy for a service that has a period in the message types?

I am interfacing with a web service I have no control over and it has messages (input/output) and actions that contain periods (.) When svcutil generates the proxy, it includes: [MessageContractAttribute(WrapperName="The.Request",...)] public…
Jeff Inflection
  • 101
  • 1
  • 3
1 2 3
99
100