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

Visual Basic 6 WSDL Soap Proxy

How would I go about generating Visual Basic 6 Proxy dll/tlb from a WSDL file? Similar to the WSDL2Java for java, but for Visual Basic.
Koekiebox
  • 5,793
  • 14
  • 53
  • 88
3
votes
1 answer

How to invoke web services on WSDL URL in Java?

I need to invoke some web service methods within a java web application that I'm building. E.g each time a user signs up, I want to call the newUser method on a WSDL url via Java. I'd need to pass on some parameters with the request. Is there any…
Ali
  • 261,656
  • 265
  • 575
  • 769
3
votes
0 answers

Disable WSDL Cache in ASP.NET

I am using SoapExtensionReflector to modify the WSDL sent to the client due to a complex proxy setup. This modification is based on a query string variable: whatever.com/Service.asmx?WSDL&customaddress=proxy.whatever.com This works well, and the…
SteveF
  • 39
  • 3
3
votes
4 answers

Add reference to webservice

I am developing a project using Visual Studio 2010, and I need to consume a webservice. The problem is that the development machine does not have access to the webservice, so I cannot add a reference directly. What I need is to include a stub in my…
user1365247
  • 337
  • 7
  • 17
3
votes
0 answers

svcutil with local files dosen't make code but online does

I have locally a wsdl it's xsd's files and trying to get the proxy file with svcutil.exe with this command svcutil *.wsdl *.xsd /l:cs I get this error: Error: Cannot import wsdl:portType Detail: An exception was thrown while running a WSDL…
Mao
  • 125
  • 2
  • 11
3
votes
1 answer

Using WSDL to Indicate WS-A Headers

I'm implementing a SOAP-based web-service and have got WS-Addressing working. However, I can't see how to get the WSDL to publish what the client should use as the value of the wsa:To element. I have used the snippet below in my WSDL, and used…
elgaz
  • 121
  • 2
  • 9
3
votes
1 answer

wsimport with http:binding

I have following binding and service elements in my wsdl:
3
votes
1 answer

.NET: Can you manually specify which types to include in autogenerated WSDL?

Is it possible to make the auto-generated WSDL for a .NET web service include descriptions for certain data types if no web method returns that data type of takes that data type as a parameter? I could just include a dummy webmethod that never gets…
Mike
  • 33
  • 2
3
votes
3 answers

Seemingly random SoapFault: not a valid method

I'm experiencing a problem with my SOAP solution. Sometimes I get an error saying the following: Function (functionA) is not a valid method for this service Edit 8 months later Although I could not find the cause of the problem I was able to work…
Alex
  • 423
  • 8
  • 23
3
votes
2 answers

WSDL functions with the same name. How to choose one?

I'm using a provider wsdl with SoapClient but when I use the command __getFunctions I get something like this: method1Rsp service(method1Req $parameters) method2Rsp service(method2Req $parameters) method3Rsp service(method3Req…
castledom04
  • 207
  • 2
  • 13
3
votes
2 answers

How should I compensate for a bad WSDL?

I've come across several examples of SOAP-based web services where automated tooling fails to build a client that works. Investigating these examples leads me to believe that the WSDL the service uses to describe itself doesn't quite match the…
brabster
  • 42,504
  • 27
  • 146
  • 186
3
votes
1 answer

WCF service wsdl client error

I have a WCF web service written in .NET 4.5 which is working fine. The client I am using to call it (a SQL CLR stored procedure) has to use .NET 2 because it's for a Sql Server (2005). When I test the web service using the built in WCF test client,…
Mansfield
  • 14,445
  • 18
  • 76
  • 112
3
votes
3 answers

PHP SOAP wsdl Fatal Error & Xdebug

I really don't understand what's happening with PHP SOAP library I use a SOAP service, it's working well but sometimes i have the well-know "Fatal error: SOAP-ERROR: Parsing WSDL: ........" I have read that this error was uncatchable because…
Philippos
  • 103
  • 1
  • 8
3
votes
0 answers

Deployed WSDL gets its XSD restrictions removed

I'm trying to deploy a web services using TOP-DOWN and Axis 1.4, via Eclipse's Wizard "Web Services > Generate Java Skeleton", I have a WSDL with it's schemas within. One particular complexType has restrictions for its elements (it's for input): …
3
votes
1 answer

How can I embed complex types into wsdl definition?

WCF generates complex types as external xsd files. How can I embed these definitions into wsdl? Because Delphi WSDL importer cannot import the complex types in the xsd files. Thank you.
mokaymakci
  • 1,373
  • 1
  • 18
  • 30
1 2 3
99
100