Tagged Questions
263
votes
21answers
234k 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 ...
152
votes
9answers
118k 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 ...
36
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 ...
41
votes
11answers
37k 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 ...
8
votes
2answers
2k views
php soap client for uk mail webservice api?
I'm working on a commerce site on which orders are placed. To track that delivery I need to give a link to users with all the parameters from a form filled by user to create a delivery and track its ...
28
votes
5answers
63k 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 ...
19
votes
3answers
30k 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 ...
31
votes
3answers
12k 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 ...
49
votes
10answers
70k views
19
votes
4answers
25k 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 ...
7
votes
2answers
1k views
What are considered non-breaking or backwards-compatible changes to a WSDL contract?
This page lists the following examples:
Addition of new WSDL operations to an existing WSDL document
Addition of new XML schema types within a WSDL document that are not contained within previously ...
2
votes
2answers
3k views
JAXB Customizations With a Poorly Formed WSDL
This is driving me insane. I have a schema embedded within a WSDL that needs customization because WSIMPORT is throwing the following error
[ERROR] Complex type and its child element share the same ...
22
votes
1answer
12k 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 ...
11
votes
5answers
34k 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 ...
2
votes
4answers
2k views
.NET autogenerated web-service client: How do I avoid requesting schemas from w3.org?
I have a .NET web-service client that has been autogenerated from a wsdl-file using the wsdl.exe tool.
When I first instantiate the generated class, it begins to request a bunch of documents from ...