"WSDL" stands for "Web Services Description Language." It is an XML language used to describe a web service to code that wishes to consume it. It describes the messages sent and received, 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.

learn more… | top users | synonyms

82
votes
9answers
74k views

How to access SOAP services from iPhone

I'm planning to develop an app for the iPhone and that app would have to access a couple of SOAP services. While doing some basic checking in the iPhone SDK I was not able to find any support for ...
54
votes
8answers
73k views

Access restriction on class due to restriction on required library rt.jar?

I'm attempting to compile Java 1.4 code that was created by IBM's WSDL2Java on Java5 without recreating the stubs and saw this error in Eclipse. I'm under the assumption that the stubs created should ...
35
votes
2answers
17k views

Difference between Apache CXF and Axis

What are the advantages of using Apache CXF over Apache Axis and vice versa?
25
votes
6answers
36k views

WSDL validator

Is there any online service available to validate Web Service WSDL file?
23
votes
6answers
19k views

How to use a WSDL file to create a WCF service (not make a call)

I have asked this question in another thread : My question I have misunderstood the task, basically I need to create a server based on this WSDL file. How can I achieve this ? Thank you.
23
votes
2answers
17k views

Create an ASMX web service from a WSDL file

I have a WSDL file and I am trying to create a web service that conforms to the WSDL. I've created clients using WSDL files that consume an existing service, but I've never created a web service that ...
22
votes
8answers
13k views

Create WCF service for unmanaged C++ clients

I need to get unmanaged Windows C++ clients to talk to a WCF service. C++ clients could be running on Win2000 and later. I have a control over both WCF service and which C++ API is being used. Since ...
15
votes
10answers
13k views

WSDL vs REST Pros and Cons

Related: Why would one use REST instead of Web services? When deciding whether to implement a web service using SOAP or REST (by which I mean HTTP/XML in a RESTful manner) what should I be aware ...
14
votes
7answers
8k views

Generating HTML documentation from WSDL

What are your approaches to generating some sort of human-readable documentation from WSDLs? In the past I've used WSDL viewer (by Tomi Vanek) (see my blog post about integrating it into NAnt) and I'm ...
14
votes
11answers
9k views

Can I disable SOP (Same Origin Policy) on any browser for development?

I want to develop JS on my windows machine. Do you know a browser where I can turn off SOP so I can develop? Firefox would be optimal. Or if you know a proxy I could use for a SOAP/WSDL site it would ...
13
votes
1answer
2k views

Visual Studio does not generate app.config content when “add service reference”

When I add a web service by using "add service reference" in the console app, the app.config does not generate the configuration. How do I generate this app.config with a specific wsdl? Thanks!
13
votes
4answers
2k views

What's the best python soap stack for consuming Amazon Web Services WSDL?

Python has a number of soap stacks; as near as I can tell, all have substantial defects. Has anyone had luck consuming and using WSDL for S3, EC2, and SQS in python? My experience is that suds fails ...
12
votes
9answers
12k views

Override Default Constructor of Partial Class with Another Partial Class

I don't think this is possible, but if is then I need it :) I have a auto-generated proxy file from the wsdl.exe command line tool by Visual Studio 2008. The proxy output is partial classes. I want ...
11
votes
7answers
11k views

JAX-WS Loading WSDL from jar

I'm writing a fat client that makes use of a SOAP service for some features (bug reporting etc.) I've got JAX-WS working fine, but by default (in netbeans at least) it fetches the WSDL from the ...
11
votes
7answers
23k views

java client code for generating SOAP request from WSDL file

Any JAVA opensource api for generating a SOAP request from a WSDL file? Thanks
10
votes
3answers
3k views

Is there a WSDL-like mechanism for JSON?

My company is using SOAP for web services. Despite my efforts to convince my peers to use JSON, we still ended up using SOAP. WSDL was one of the main reasons (another is their unfamiliarity with ...
10
votes
4answers
3k views

Adding comments to a WSDL output from WCF/.Net

based on the WSDL spec from W3 there is the possibility to add "wsdl:document" tags to the WSDL output so that people using that webservice have a better explanation/documentation about this ...
9
votes
2answers
6k views

Creating Java Web Service using Google AppEngine

I'm trying to create a simple web service application where I can retrieve a collection of strings and store them into a data store on the AppEngine server. I have knowledge in Java and barely any ...
9
votes
2answers
2k views

How can I force WCF to autogenerate WSDLs with required method parameters (minoccurs=“1”)?

While using WCF and OperationContracts I have the following method defined: [OperationContract] [FaultContract(typeof(ValidationFault))] ...
9
votes
3answers
4k views

How to use a WSDL

I need to consume a Web Service. They send me the WSDL file. What should I do to add it to my website and start using it as the proxy. ( If I put it on a Virtual Directory it is been discovered, but ...
9
votes
2answers
19k views

WSDL URL for a WCF Service (basicHttpBinding) hosted inside a Windows Service

I am hosting a WCF service in a Windows Service on one of our servers. After making it work in basicHttpBinding and building a test client in .NET (which finally worked) I went along and try to access ...
9
votes
4answers
1k views

What's a good design pattern for web method return values?

When coding web services, how do you structure your return values? How do you handle error conditions (expected ones and unexpected ones)? If you are returning something simple like an int, do you ...
8
votes
4answers
3k views

what is the difference between XSD and WSDL

what is the difference between an XML Schema and WSDL, I have been reading a lot of stuff, but I still get confused ... The difference I noticed is that WSDL contains XSD and in WSDL we can declare ...
8
votes
5answers
3k views

How to call a web service with no wsdl in .net

I have to connect to a third party web service that provides no wsdl nor asmx. The url of the service is just http://server/service.soap I have read this article about raw services calls, but I'm ...
8
votes
4answers
16k views

SOAP Client in C# without access to a WSDL-file

I'm working with a third party to integrate some of our systems with theirs and they provide us with a SOAP interface to make certain requests and changes in their connected systems. The problem for ...
8
votes
4answers
9k views

Generating a WSDL using Python and SOAPpy

First of all, I will admit I am a novice to web services, although I'm familiar with HTML and basic web stuff. I created a quick-and-dirty web service using Python that calls a stored procedure in a ...
8
votes
4answers
743 views

What is your preferred method of sending complex data over a web service?

It's 2008, and I'm still torn on this one. So I'm developing a web method that needs a complex type passed into it and returned from it. The two options I'm toying with are: Pass and return actual ...
7
votes
3answers
267 views

What should I do when Delphi imports WSDL improperly due to a hyphen in an enum name?

I'm using Delphi and I'm using a wsdl file from another company to set up my proxy class to use their data from their web service. The wsdl file contains the following: <xsd:simpleType ...
7
votes
2answers
574 views

Calling a WCF service without generating an Assembly

I am trying to write some code in C# that will call a WCF service on the fly by importing the WSDL, examining it and then making calls to it dynamically. The service I am calling can change from time ...
7
votes
2answers
2k views

Implementing a SOAP 1.2 server with Rails 3

SOAP? Why would you use that? I am using Ruby Enterprise Edition and Rails 3 to write my web application. The application uses Ustream's Watershed white label broadcasting services to provide live ...
7
votes
1answer
8k views

nillable and minOccurs xsd element attributes

I am going back and forth with setting an element to minOccurs="0" and nillable="true". I was reading this article and now in my WSDL I'm not sure if using both is worth it. The article gives a good ...
7
votes
2answers
2k views

Any way to generate WSDL documentation from Javadoc with JAX-WS?

I'm hoping that an extension of some kind is available that does this (although I suppose that my hope is foolishly optimistic). /** * <p> * Gets the {@link ResultObject} given the ...
7
votes
2answers
3k views

How to import XSD schema with Python Suds (version 0.3.6) SOAP library : TypeNotFound exception?

I'm trying to use SABRE travel web services with Python Suds, but one XSD seems not well-formed (maybe namespace is missing in this schema). from suds.client import Client wsdl = ...
7
votes
5answers
645 views

Why the trailing slash in the web service is so important?

I was testing a web service in PHP and Python. The address of the web service was, let's say, http://my.domain.com/my/webservice. When I tested the web service in PHP using that URL everything worked ...
7
votes
5answers
19k views

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 ...
7
votes
4answers
18k views

Generating a WSDL from a xsd file

I need to generate a WSDL file given a xsd file. How do I do this? Can I do this in VS2005? What is the simplest way to do this? Cheers! Ausgar
7
votes
4answers
18k views

Simple (standalone) Java SOAP web service client from WSDL using Maven

I'm looking to generate a simple standalone Java client which will make calls to a SOAP web service, given a wsdl. When I say simple and standalone I mean that once I'm done I want to be able to do ...
7
votes
1answer
10k views

In PHP how can you clear a WSDL cache?

In through php_info() where the wsdl cache is held (/tmp), but I don't necessarily know if it is safe to delete all files starting with wsdl. Yes, I should be able to just delete everything from ...
6
votes
3answers
200 views

How to require Authentication Soap Header in WSDL?

I have created a web service in php using SOAPServer. It expects to see a SoapHeader UsernameToken with username and password elements. Everything actually works fine when I include this header in the ...
6
votes
2answers
525 views

SOAP Request with <stdClass> tags

This is my first time posting, so forgive me if I'm not very clear. I will also preface this by saying that I really know very little about php and web services. The issue I'm having is this: A ...
6
votes
2answers
290 views

Confused by use of host name in WSDL file in C# Web Service

I have created a WCF web service in C# deployed in a Windows Service EXE which is largely working the way I want. I am using it in a self-hosted manner (not within IIS). In order to make a WSDL file ...
6
votes
1answer
765 views

Different WSDL ASMX,WCF web-services

I've got asmx web-service, which is succefully consumed from other clients(.NET,Delphi). I try come to wcf, and write the same logic at WCF service(basicHttpBinding for interopability). (.net client ...
6
votes
2answers
934 views

No enums generated by jax-ws ri 2.2.1 for amazon ecs wsdl file

I'm attempting to generate artifacts for the following amazon wsdl: http://webservices.amazon.com/AWSECommerceService/AWSECommerceService.wsdl using the following ant task: <taskdef ...
6
votes
2answers
597 views

BizTalk Web Reference - generated XSD has “lost” information from WSDL

I am using BizTalk 2006 R2 to generate a web reference from a WSDL file. Comparing the generated XSD to the WSDL, it is apparent that a lot of information has been lost. Consider the following ...
6
votes
4answers
896 views

help a .NET developer consume a wcf service using coldfusion

I am a .NET developer with no coldfusion experience, but I need to write cf code to access a wcf service i've set up. I've got a few WCF services being hosted in IIS 7 with WsHttpBinding, and I'm ...
6
votes
3answers
897 views

Hide REST endpoint from MEX/WSDL in WCF

I have a WCF service that has REST and SOAP endpoints for every service. This was implemented similarly to this post: http://stackoverflow.com/questions/186631/rest-soap-endpoints-for-a-wcf-service ...
6
votes
3answers
4k views

How to generate a WSDL file from a C# webservice

I've created a WebService like this: [WebService(Namespace = "http://ns")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] public class GroupManagerService : WebService { public ...
6
votes
2answers
1k views

Creating a mock web service from a WSDL file in Python

We are writing a client for a remote service that exposes SOAP web services and publishes a WSDL definition for those services. We don't have access to the system during testing, so we'd like to ...
6
votes
4answers
3k views

Make a single WCF service support both SOAP, REST and WSDL

I'm trying to build a C# service in .NET 3.5 that supports both SOAP - and shows the WSDL - and REST. The SOAP service and WSDL generation was easy enough to do using the ServiceHost and a ...
6
votes
4answers
26k views

Android WSDL/SOAP service client

I have some web services that uses WSDL/SOAP for communication. Specifically, I am using PHP and Nusoap to make them. How can I use these web services on Android? I am going to get a new Android phone ...

1 2 3 4 5 40