wsdl

WSDL / Web Service and need to generate interfaces

I have an WSDL / Web Service and I need to generate an set of Interfaces for them, is there any easy way of generating Interfaces for the WSDL? ...

Generate WSDL from java class\source

Hi. I have a package with "logic" classes(like CheckAuthenticationDataLogic.java, GetVocabulariesLogic.java). And another class - ApiService.java is used to generate wsdl. ApiService.java is full of methods like this: /** * Check authentication data. * @param contractNumber - number of contract. * @param msisdn - msisdn. * @...

wsgen vs java2wsdl

What is the difference between wsgen and java2wsdl tools ? ...

make a parameter of type byte array nullable in an axis web service

i have a java method that is part of an web service interface and that takes a byte array parameter like this public int computeSomeThind(byte[] data) { if(data != null) { // ... do what ever } else { return -1; } } When a generate the wsdl with axis 1.3 the data parameter will appear as not nullable. Is there a way to d...

"Portable" JAX-WS client

I deployed a JAX-WS Service and use wsimport to generate client code. Because I run wsimport on localhost, I got the client code with binind on "localhost" address. But I want to reuse those client code on other computers which access my deployed service with a public IP y.y.y.y. How can dynamically use those (once) generated client cod...

cannot find dispatch method - Axis 1.4 SOAP Web service

I am using Apache Axis 1.4 and Netbeans 6.5 to develop and test a SOAP Web service and client. I generated the Java classes from the WSDL (see attachment). It builds and deploys without problem, but when I try to run the client to test the WS, I get an error. The namespace looks correct, so why does it say it can't find the dispatch me...

How can I get started using a WSDL file with Visual Studio it's in the root of the project instead of being hosted on the internet somewhere.

I've been tasked when integrating a web form into Oracle CRM on Demand (Siebel) using web services. I've been given the WSDL, and some high level documentation from Oracle. Well, I knew I was in trouble when I tried to add the WSDL as Web Reference and I was asked to enter an URL. I have the WSDL file in the root of the project, but I...

Web Services API Versioning

I offer a small Web Services API to my clients which I plan to evolve over time. So I need some sort of versioning, but I can't find any information about how you do something like that. Is there a best practice? How can I keep adding new functionality without breaking compatibility with the web services consumers? ...

Avoid validating WSDL every time the web service is executed

I have a small app running in JBoss that uses web services and every time they are called, it parses the WSDL and tries to fetch from xmlsoap.org [1] in order to validate it (the WSDL). Is there a way to avoid this validations? The problem is that: It's slowing down the system and Many times xmlsoap.org [1] doesn't return correctly (r...

Make an interface structure appear in a WSDL

Hi all, I've exposed a method on a web service to return an interface and sending back conrete classes using the [ServiceKnownType] attribute which works very well. However, the wsdl description does not display any of its properties or any xml structure for this interface, this is the same when i send back List it gives it a default t...

Either WSDL or wsimport and wsdl (mono) are horribly broken

EDIT I started off with the example given below, but I have now: Tried the example from the W3C spec. After fixing another error (binding was called StockQuoteSoapBinding in one place, StockQuoteBinding in another), it gives the same issue. Tried the mono generator wsdl to see if wsimport was to blame. It gives an equivalent error. S...

Problem with python soap library suds. Wsdl was not understood

The code below throw a SAXParseException: "mismatched tag": from suds.client import Client <br> url = 'http://www.didww.com/api/?wsdl' client = Client(url, cache=None) print client Is it problem with suds, or there is some errors in wsdl? ...

Where can find WSDL file generated by gSOAP

Hi there, I received url of web service running on gSOAP/2.7 (deciding from HTTP headers). The problem is they didn't provide me with WSDL file. Anybody knows which default URL I should look for WSDL if service address is http://www.host.com/ ...

Create message from a MessageDescription

I'm trying to create a Message using only a set of parameters provided by the user and a MessageDescription I resolved by extracting the input message from an OperationDescription object in WCF. It looks simple, but I can't seem to find information on how to work with settings like Body.WrapperElementName and various message parts that...

as3 sandbox security violation with http://schemas.xmlsoap.org/soap/encoding/

Hi guys ! I implemented a gSoap c++ webservice-server to be accessed by Flash (as3) Everything runs smooth as long as i test the .swf locally, the .wsdl is loaded fine, and the communication works, even with the server running on an external ip already. But the moment i put that .swf online - its coming up with sandbox security violat...

Is WSDL sort order relevant?

I'm refactoring an existing C# .NET Web Service that is consumed by existing Delphi 2006 (non-.NET) clients. I don't want to rebuild/redeploy the clients. My goal is to keep the WSDL identical so that the proxy classes won't change. I used a tool (Regionerate) to region and sort the methods/properties based on our current standards. Thi...

Consume Google Map API from VB .NET windows APP

Hi, 1. I have a VB .NET windows App I have two locations: StartPoint = "Minneapolis MN US" EndPoint = "Dallas TX US" I want to call Google Map API's GDirections.load(xxx) and GDirections.getDistance() and get (Expecting) some XML formatted data that will give me the Distance between the two locations. I can probably use VB .NET web...

asynchronus web services, callback problem

I have a asynchronous web service using axis2 which I call two different times using the same CallBack Hanlder as follows : stub.startGetData("Foo",callbackhandler) stub.startGetData("bar",callbackhanlder) ServiceCallBackhandler callbackhandler = new ServiceCallBackhandler() { .....}; //ServiceCallBackhanlder and stub are generated...

How to get data from SOAP::Mapping::Object in rails

I have get data through wsdl but i am getting data but i can't use it . is there any way to get proper data ? Due to spam protection mechanism i can't post source to SOF. ...

PHP Soap (Server)

I am trying to create a webservice using the PHP Soap extension and I am having problems with the .wsdl. Is there an easy way to generate 2.0 wsdl's? Where is a good site (or book) that I can look to in order to determine how to build the WSDL? I have no problem getting my soap client to retrieve soap messages from other web services so ...