I have been working on a BlackBerry application that consumes web services from ColdFusion 7. The Java ME SDK and the Java Wireless Toolkit both require that the generated WSDL be of the document/literal type.
Fortunately, I have input on the web service development so I tried setting 'style="document"' in the cfcomponent tag. This gene...
We have a set of assemblies which implement web services operations.
To build the client proxies, we first build and deploy the web services (assemblies and ASMX files) on the server.
Then we use wsdl.exe to point to the ASMX endpoints and generate the classes for the client proxies.
I've seen that it is possible to create the proxies...
I'm writing a C# WCF service that publishes an endpoint using a WSHttpFederationBinding. We have our own security token server providing tokens, for which callers need to use a custom binding.
This is all working fine for a C# client I've written: this has a custom binding in its app.config like so:
<bindings>
<customBinding>
<bi...
A 3rd party is developing a web services library, which my team will be consuming.
What should I ask for in terms of web service documentation?
Here's my list so far:
WSDL URL
Sample Request (XML)
Sample Response (XML)
Response Schema Definition
Anything else?
What documentation should be provided for web services that return JSON...
I'm developing a new SOA system right now, and would like to use WSDL2.0, but I heard some clients are still connect using VisualBasic and WSDL1.1 (mostly from excel sheets and stuff). So I was wondering if VisualBasic also supports WSDL2.0, or if it's all 1.1
I know WSDL2.0 will work with C#,Java,and most other typical application prog...
Hi,
we are migrating from WebLogic web-services to Spring-WS (1.5.X).
There is currently one issue we are facing:
We need to pass a context object (on WLS it is passed as SOAP-Header element) to other services that are still running on WLS from the Spring-WS powered service. The header element is still formulated on client side and the...
Importing WDSL in Delphi 2007 works fine, but generates a Cannot Unwrap warning (code snippet 1, below [like another question already logged on StackOverFlow]).
However, it is how we set the headers (REQUESTOR:pIn, REQUEST_USER:pIn, REQUEST_PASSWORD:pIn) that is unclear from the generated code. Looking elsewhere on the Net, we also tri...
WSDL snippet:
<wsdl:portType name="ITS-ActivityObj">
<wsdl:operation name="addActivity" parameterOrder="pc_SlsmnCode pc_FollowDate pc_ActSrc pc_InXML pl_GetRSXML pc_FieldList pl_WriteXSD pl_MinSchema pc_RSXML pc_batchCount pc_errMsg">
<wsdl:input message="tns:ITS-Activity_addActivity"/>
<wsdl:output message="tns:ITS-Activity_addActi...
I have worked with SOAP in SAAJ and JAXM, and I want to extend on that, and throw in some WSDL and UDDI.
What was, for you, the most useful book or article when you learned WSDL? What tools came in handy when trying to create and run some examples?
Thank you.
...
How would one configure asp.net / asmx to not use soap encoding at all when generating wsdls from a .NET interface? In short, a .NET SOAP Web Service is producing a wsdl that includes soap encoding. For example:
<s:schema targetNamespace="http://tempuri.org/AbstractTypes">
<s:import namespace="http://schemas.xmlsoap.org/soap/enco...
Hi all,
I am trying to use a webservice to look for specific users from my PHP application. I have used that exact same webservice in ASP.NET with success.
Basically, I do everything like the PHP doc tells me to, and I use the same methods/variables I used in ASP.NET (for the webservice itself), but I can't seem to get a result.
The f...
Hi
I am developing webservices usin CXF-WS 2.2.1. I had developed and tested the services earlier but now the generated wsdl is different from the earlier one here is the old one
<?xml version="1.0" ?>
- <wsdl:definitions name="ICodeTableServiceService" targetNamespace="http://codetable.service.esps.cvs.com/" xmlns:ns1="http://cxf.apa...
Dear all,
I'm encountering a problem generating my client and server code from wsdl.
I've been provided a set of wsdl and xsd files to communicate with an external application.
I need to implement some of them as web services and use the others to generate a proxy to communicate with that external application.
They all use a common heade...
I'm working on an integration between our web application and Microsoft Exchange 2007. I am using Exchange Web Services (EWS) to communicate to the Exchange Server. However, I am running into some issues with the WSDL. There are several types defined in the WSDL that have elements of abstract types. For example:
<xs:complexType name...
I have a WCF service which I am able to connect to from my web application and get data.
I now added a web reference to this wcf project to a wsdl file that a shipping company provides. Intention is to get shipping quotes..
I am able to access the objects that are generated from this wsdl file but when I call service.Authenticate("DEMO...
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 = 'http://webservices.sabre.com/wsdl/sabreXML1.0.00/tpf/OTA_AirPriceLLSRQ.wsdl'
client = Client(wsdl, cache=None)
Debug trace returns :
.DEBUG:suds.wsdl:rea...
I have created a wsdl. But it has created two wsdl bindings. How can I remove one of the bindings froma wsdl.
...
Most REST interfaces I see are described with a simple web page describing the URL, the method, accepted input and returned result. For example the Amazon S3 or the Twitter API documentation.
But why should I settle with what is apparently good enough for Amazon or Twitter... So, is it worth describing a REST API in a machine readable f...
I have a .wsdl file that my web service (old asmx style) must implement. That is taken care of. When I publish the web service you can call it with ?wsdl parameter to get a generated wsdl.
How do I include my .wsdl file so that is the one that is returned instead of the generated one?
Is it possible to do with an attribute in my web se...
I'm having some major issues trying to consume my PHP SOAP webservice using ASP.NET. The webservice in question is based on the PHP SOAP extension and is descibed by the following WSDL:
<?xml version="1.0" encoding="UTF-8" ?>
<definitions name="MyServices"
targetNamespace="http://mydomain.com/api/soap/v11/services"
xmlns:tns="http:/...