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 ...
1021
votes
8answers
165k views
How can I pass the string “Null” through WSDL (SOAP) from AS3 to ColdFusion web service without receiving a “missing parameter error”?
We have an employee whose last name is Null. He kills our employee lookup application when his last name is used as the search term (which happens to be quite often now). The error received (thanks ...
257
votes
20answers
231k views
How to call SOAP web service in Android
I am having a lot of trouble finding good information on how to call a standard SOAP/WSDL web service with Android. All I've been able to find are either very convoluted documents and references to ...
188
votes
7answers
162k 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 ...
149
votes
9answers
117k 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 ...
77
votes
3answers
40k views
Difference between Apache CXF and Axis
What are the advantages of using Apache CXF over Apache Axis and vice versa?
48
votes
10answers
68k views
43
votes
5answers
44k views
How to use a WSDL file to create a WCF service (not make a call)
I have an old WSDL file and I want to create a server based on this WSDL file.
The WSDL is generated from a ASMX (I suppose but I am not sure).
How can I achieve this ?
original question where ...
42
votes
2answers
29k 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 ...
41
votes
11answers
35k 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 ...
35
votes
5answers
23k 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 ...
31
votes
3answers
2k views
WSDL on SQL Server gives HTTP status 505 Version Not Supported
I am a DBA, not a developer, so forgive me if this is a silly question. But we are having issues with a SQL Server 2005 Web Service end point. On the local network I am able to add the reference in ...
29
votes
3answers
11k 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 ...
28
votes
4answers
24k views
what is the difference between XSD and WSDL
what is the difference between an XML Schema and WSDL?
The difference I noticed is that WSDL contains XSD and in WSDL we can declare operations, but not in XSD. Is that correct?
26
votes
5answers
61k views
How to easily consume a web service from PHP
Is there available any tool for PHP which can be used to generate code for consuming a web service based on its WSDL? Something comparable to clicking "Add Web Reference" in Visual Studio or the ...
25
votes
9answers
19k views
Can I disable SOP (Same Origin Policy) on any browser for development?
I want to develop JavaScript on my Windows machine. Do you know a browser where I can turn off Same Origin Policy so I can develop locally? Firefox would be optimal.
Or if you know a proxy I could ...
25
votes
5answers
18k views
How to avoid the need to specify the WSDL location in a CXF or JAX-WS generated webservice client?
When I generate a webservice client using wsdl2java from CXF (which generates something similar to wsimport), via maven, my services starts with codes like this:
@WebServiceClient(name = ...
23
votes
7answers
18k 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 ...
22
votes
10answers
20k 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 ...
22
votes
1answer
24k 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 ...
22
votes
1answer
11k 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 ...
22
votes
1answer
428 views
SOAP web services in haskell?
I have to write a bunch of small web services. They must be defined by a WSDL and work via SOAP-RPC, in order to work with an existing workflow engine and service registry framework. I can, however, ...
20
votes
2answers
5k 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!
19
votes
3answers
28k 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 ...
19
votes
4answers
23k views
Create web service proxy in Visual Studio from a WSDL file
My application needs to talk to a web service that hasn't got an online WSDL definition. The developers however supplied me with a WSDL file.
With a public WSDL Visual Studio can generate this code ...
17
votes
6answers
44k views
How to add custom Http Header for C# Web Service Client consuming Axis 1.4 Web service
I'm trying to write a web service client in c# which the webservice is Java Axis 1.4.
Axis service requires the Authorization: Basic Base64EncodedToken header value in the HTTP Headers.
I can't find ...
16
votes
8answers
24k 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 ...
16
votes
3answers
461 views
Pass parameter as an object[]
I wish to use this API with a c# application:
http://www.affjet.com/2012/11/26/4-4-affjet-api/#more-3099
After adding the wsdl to my projcet i wrote this simple code :
(getTransactions gets a ...
14
votes
3answers
26k views
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 ...
14
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 ...
13
votes
4answers
37k 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
13
votes
5answers
5k 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 ...
13
votes
4answers
7k views
Tool for generating Java from WSDL for use on Android with ksoap2-android SOAP client?
I have to access a existing SOAP webservice from an Android application. I have been provided some WSDL files describing the webservice. Reading some other answers here on SO, it seems ksoap2-android ...
13
votes
1answer
420 views
Ruby gem for consuming Webservices wsdl with xsd:import
We need to consume a webservices which got a WSDL that uses xsd:import for Data Types definitions.
savon gem doesn't support as it uses wasabi.
We are using Ruby 1.9.2
Could you please suggest me ...
12
votes
7answers
48k 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 ...
12
votes
1answer
21k 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 ...
12
votes
5answers
11k 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 ...
12
votes
4answers
36k 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 ...
12
votes
3answers
1k views
Can I globally set the timeout of HTTP connections?
I have a program that uses javax.xml.ws.Service to call a remote service defined by a WSDL. This program runs on the Google App Engine which, by default, sets the HTTP connection timeout to 5 ...
12
votes
1answer
763 views
WSDL PHP function returns null while other function returns expected result
Summary
Here I'll list all steps I've taken to solve this problem as reference for others.
1.
PHP, stupidly enough, 'listens' to the input message of a function to define what function it should ...
11
votes
2answers
7k views
Can you help me solve this SUDS/SOAP issue?
So I'm trying to access this api https://www.clarityaccounting.com/api-docs/ using SUDS. Here is the code that should work:
from suds.client import Client
client = ...
11
votes
4answers
13k views
What is the best way to download all of the WSDL files exposed by a WCF service?
What is the best way to download all of the WSDL files exposed by a WCF service?
For example, the root WSDL file references the following other WSDL files:
<xsd:import ...
11
votes
5answers
33k 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 ...
11
votes
5answers
6k views
Web Services in C and C++
I want to host web services in an existing C/C++ application. What is the best solution?
I would like a solution similar to what JAX-WS does for Java. Specifically revolving around SOAP requests.
...
11
votes
2answers
5k 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))]
...
11
votes
2answers
26k 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 ...
11
votes
3answers
5k 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 ...
11
votes
3answers
4k 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 ...
10
votes
4answers
13k views
Generate webservice from wsdl
This is maybe a really simple question, but I couldn't locate an answer:
For a client I need to HOST a webservice. The client has sent me a wsdl file that the webservice should 'implement'. How do I ...
10
votes
3answers
13k 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 ...
10
votes
3answers
5k views
RESTful Services - WSDL Equivalent
I have been reading about REST and SOAP, and understand why implementing REST can be beneficial over using a SOAP protocol. However, I still don't understand why there isn't the "WSDL" equivalent in ...
