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

generating stubs from wsdl using axis 2 for client

I am a new bie to the world of webservices , I have to develop the client side code that is the java code,I have been provided a wsdl which I can see by opening that wsdl in the browser , As i have access to wsdl , I am using Axis 2 , I have to use…
Saral Saxena
  • 123
  • 2
  • 2
  • 10
3
votes
1 answer

Cycle is detected in the object graph this will cause infinitely deep xml

enter code hereHi Guys me and some classmates are working on a project for school and are stuck with this error: a cycle is detected in the object graph this will cause infinitely deep xml. This is our code @Entity public class Client extends User…
Bart Pasmans
  • 135
  • 1
  • 3
  • 7
3
votes
1 answer

wcf Extract wsdl from WCF Service with Flattened WSDL

I have a wcf web service and I need to provide the client with the wsdl files. Previously I used svcutil on the .dll and everything was fine. However, recently I implemented the factory to Flaten the wsdl file (re:…
stevenrosscampbell
  • 643
  • 1
  • 11
  • 20
3
votes
2 answers

Can you combine the WSDL and XSD data from a WCF service?

Is it possible to create a single file to generate a client from a WCF generated WSDL file (and any additional XSD files that are also generated from this service) I can generate a valid client using svcutil.exe passing both the wsdl file and each…
Toran Billups
  • 27,111
  • 40
  • 155
  • 268
3
votes
1 answer

Can org.apache.cxf.service.factory.ReflectionServiceFactoryBean be configured to cache WSDLs?

I am using JBoss 7.1.1 but everytime my EAR makes a SOAP request, it takes about 2 minutes while JBoss creates each service required: 14:30:14,822 INFO [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (http--0.0.0.0-8081-3) Creating…
Roberto Murphy
  • 456
  • 5
  • 15
3
votes
4 answers

Network programming: SOAP vs DIY marshalling with XML library?

I know that there are a lot of discussions already on SO about SOAP, bloat, XML, and alternative mechanisms like REST. Here's the situation. A new team member is really talking up SOAP based upon the difficulty of implementing protocols by hand. He…
Wannabe Tycoon
  • 307
  • 1
  • 3
  • 10
3
votes
1 answer

How to Consume SAP WSDL services in Objective c?

To use WSDL services I am referring the code from http://code.google.com/p/wsdl2objc/wiki/UsageInstructions. My code is ZESRV_PM_SEARCH_PARAMETERS *binding = [[ZESRV_PM_SEARCH_PARAMETERS alloc] initWithAddress:urlString]; binding.logXMLInOut =…
Ravi
  • 888
  • 6
  • 24
3
votes
2 answers

SOAP and Spring

I've just finished reading about SOAP via Spring-WS in "Spring in Action", 2nd edition, by Craig Walls from Manning Publications Co. They write about Contract First, much like the Spring docs, with making a message and method XML and then…
niklassaers
  • 8,480
  • 20
  • 99
  • 146
3
votes
1 answer

nullpointerexception while parsing wsdl using wsdl4j for listing of operations, input/output parameters

The code is working for a wsdl with only single operation but for wsdl with multiple operation tags, it is giving a nullpointer exception. Exception in thread "main" java.lang.NullPointerException at project.Project.listInputs(Project.java:78) at…
karthikbv
  • 183
  • 1
  • 4
  • 13
3
votes
3 answers

How do I tell Ruby's OpenSSL library to ignore a self-signed certificate error?

I'm trying to use Ruby's SOAP support as follows: SERVICE_URL = 'https://...' ... def create_driver ::SOAP::WSDLDriverFactory.new(SERVICE_URL).create_rpc_driver driver.options['protocol.http.ssl_config.verify_mode'] = OpenSSL::SSL::VERIFY_NONE …
James A. Rosen
  • 64,193
  • 61
  • 179
  • 261
3
votes
1 answer

Creating web service (not web service client) from WSDL file

I have a requirement, according to which i have to create an Axis2 Web service based on a wsdl file. I already got the wsdl file. I have been using wsdl2java earlier to create web service client but i don't know how to create web service using the…
Abhishek Kapoor
  • 125
  • 1
  • 11
3
votes
0 answers

DataContract namespace not showing up properly in WSDL/XSD

I've Google'd the crap out of this and I'm at the end of my rope. I have a Service Contract defined like this: [ServiceContract(Namespace="http://myfirstnamespace.mycompany.com")] public interface IMyServices { [OperationContract] …
3
votes
1 answer

Importing WSDL file gives Error

I have a list of .wsdl files provided by the client. I have tried to import them as described here. But when I do that, it gives an error. This error is shown as below. The document was understood, but it could not be processed. - The WSDL…
diyoda_
  • 5,274
  • 8
  • 57
  • 89
3
votes
2 answers

How to do a long polling client in C#?

I have a C# desktop application, and I consume a web service without problems (wsdl added by "add Service References", so I create an object and call its functions). Now, I want to use long polling techniques but I can't figure how to do this from…
Dam's
  • 45
  • 1
  • 4
3
votes
2 answers

URL Standards for a Webservice Endpoint?

I am developing an application to consume a SOAP web service exposed at the end point http://${host}/sample/gotowork which is built out of TIBCO In most projects I have worked, the WSDL is available for download on http://url?wsdl. So my questions…
Sudhakar
  • 4,823
  • 2
  • 35
  • 42