wsdl

Structuring PHP array for use in SOAP with WSDL

Hi, I am writing a SoapServer with PHP 5.2 to return a list of vacancies to another application. My WSDL doc requires a complex type along the lines of: <xsd:element name="Vacancies"> <xsd:complexType> <xsd:sequence> <xsd:element name="Vacancy" type="ns:VacancyType" minOccurs="0" maxOccurs="unb...

Problem creating a web service from a WSDL

The problem I'm having is that when I attempt to create a web service in netbeans using this wsdl, netbeans says that there is no service defined. I'm new to the whole wsdl thing but as far as I can tell there is one defined. The wsdl is: <?xml version="1.0" encoding="UTF-8"?> <wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/...

Reorder the wsdl:definitions in an ASP.NET web service

I am creating an ASP.NET web service that implements a specific existing WSDL. There are a couple minor differences that are probably not a big deal, but I would like to get as close of a match as possible. I am starting to think this isn't even possible. This first difference is the wsdl:definitions are in a different order, and have...

Providing better WSDL from C# SOAP

I'm pulling together some services in C# that have to match specific data format; e.g. string lengths, various enumerations and formatting. I have the back-up approach to validate post the SOAP call and respond with friendly messages and pre-defined error codes, but I would like to place additional information into the WDSL (so it is cl...

How to generate WSDL client stub in eclipse over HTTPS

I have an Oracle Weblogic server set up using a mutual authentication SSL configuration. I'm trying to create a client stub in eclipse from a wsdl under the https protocol. Problem is, when I copy in the URL to the service definition, eclipse complains that the service definition is invalid. My guess is that eclipse isn't passing its cer...

How can I change namespace prefix in this WSDL?

I am trying to create a WSDL for a pre-existing web service. I have an existing client and and existing server, and I've captured the format both use using Wireshark. I am trying to write a new client that uses the same format. Therefore I am trying to match the format as closely as possible, be it correct or not. I'm cooking up a WSDL f...

Java .Net Interop. Axis java.util.Map

I have wsdl that needs to be interpreted by wsdl.exe (.net sdk 2.0) This wsdl is generated on runtime by axis engine, and it is reading a wsdd file to generate this. One of my return types have java.util.Map inside and here is the schema for a map in wsdl (just one part of wsdl) <schema targetNamespace="http://xml.apache.org/xml-soap"...

Any viable alternatives to WCF and WSDL for integration endpoints?

My employer is a software vendor for a specific market. Our customers integrate our system with others using web services. We use Microsoft technology, and our web services are implemented in ASP.NET and WCF. The time has come to review our current set of services, and come up with company standards for future integrations. I am reading...

what is the difference between XSD and WSDL

Hi 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 operations, but not in XSD. Is that correct? Thanks for your time and replies, ...

What's the problem with this web service method?

Update: Problem solved. I have to call a web service method (dduLogin), which returns 3 parameters. I generated the code by "adding a web reference" through visual studio. This is the relevant part of the wsdl: <message name="dduLoginRequest"> <part name="Ticket" type="xsd:string"/> <part name="ServiceId" type="xsd:string"/> ...

How can I make WCF talk to this web service?

This is a follow up of this question. As suggested by @Benjamin here, I am trying to add a service reference for my wsdl now (in stead of a web reference). Here is the url to the wsdl in question: https://eu.link.fiatauto.com/tsi/DDUWsAut.php?wsdl The problem is that Visual Studio generates an empty codefile: //------------------...

How to Compare Two WSDL Documents?

I'm trying to build a tool that can compare two WSDLs and their associated xsds to be able to automatically detect changes in a web service contract. Are there any tools out there that already do that and if not how should i approach this. Thanks for any pointers ...

Soap/WSDL2OBJC Webservice for iPhone improving performance

Hi, i'm using wsdl2objc to consume a WSDL and my biggest problem is that i sometimes get a response which has a size of 500 kb or bigger. This is unaccaptable for edge so i'm looking for ways to improve the performance. My first attempt was to use gzip but somehow it does not seem to work, if somebody used this successfully please point...

Why does the generated .NET proxy for this WSDL drop some data?

I've added a WCF service reference to a .NET project using this WSDL: https://interop.cmiservices.org/axis/services/CAP1%5F1?wsdl It generates the proxy classes, etc., and I am able to call the methods. However, when calling 'getCAPAlerts', or 'getCAPAlert', the return values seem to be missing data. For example, 'getCAPAlert' returns...

WSDL parser validation & benchmarking tests?

Please recommend WSDL parser validation & benchmarking tests. I need for both 1.1 and 2.0 . Thank you in advance! ...

SOAP inconsistency? Delphi 2010 (Win32) Server and .NET Client swapping 'out-parameter' and 'result'.

Could someone please shed some light on this behaviour? It looks like Delphi SOAP sets the function result as the last argument, but WSDL.exe reads the first argument to be the function result. I have the following method in a Delphi SOAP service, where the result string is used for basic error handling: function LoadCustomer(Customer...

SOAP error encoding external reference in PHP

I am trying to use a function from SOAP, which will fetch details about a specific news item. The problem is that I don't get the expected results, just a a strange error. I am using the built-in SOAP client in PHP5. My error is: Fatal error: Uncaught SoapFault exception: [Client] SOAP-ERROR: Encoding: External reference 'ht...

How to force ASP.NET Web Service expose only HTTP-POST interface.

After creating a new ASP.NET Web Service I want it only to support HTTP-POST for incoming data. How can I force the WSDL to reflect that policy? How should the WSDL for the clients look like to enable only HTTP-POST and disallow SOAP 1.1 and SOAP 1.2 in the WSDL? The solution: <system.web> <webServices> <protocols> <clear /> ...

How to use C# client to consume Django/Python web service (all methods are returning null)?

I have a C# command-line client that I'm testing the consumption of SOAP/WSDL via Django/Python/soaplib created WSDL. I've managed to successfully connect to the web service by adding a service reference. I then call one of service's methods, and the service processes the data I send, but it returns null instead of the integer I'm expect...

How to implement WSDL protocol as in ASP.NET Web Service?

I am implementing a simple Web Service Server. At first I thought the request ?WSDL would be sufficient to for Web Service clients. If I add a Web Service Reference in visual studio to the project there are some additional requests made. GET ?WSDL POST ?WSDL GET ?WSDL/$metadata Because my server fails to respond correctly to steps ...