I'm trying to generate a client from a WSDL file without using visual studio itself and didn't know what the best place was to start.
A customer needs to take this same file and generate a client for a PHP application and I wanted to prove the WSDL was valid by creating a client myself (outside of studio).
...
Hi guys,
I've just finished reading about SOAP via Spring-WS in "Spring in Action", 2nd edition, by Craig Walls from Manning Publications Co. They write about Contract First, much like the Spring docs, with making a message and method XML and then transforming that to XSD and then again to WSDL, while wiring up the marshalling and servi...
I know that there are a lot of discussions already on SO about SOAP, bloat, XML, and alternative mechanisms like REST.
Here's the situation. A new team member is really talking up SOAP based upon the difficulty of implementing protocols by hand. He recommends gSOAP (project is all in C++.) He is stating things like WSDL cleaning up lots...
Hi all,
here's a problem I just stumbled into:
I have an php based web service which returns statistical data about customers
in the form of WSDL-complex types. The actual complex type consists of
xsd:string
xsd:int
xsd:float
Now, since my web service is sort of an adapter to an existing system I can't
realy controll what values are...
Is it possible to create a single file to generate a client from a WCF generated WSDL file (and any additional XSD files that are also generated from this service)
I can generate a valid client using svcutil.exe passing both the wsdl file and each xsd file, but I have a customer who is using a PHP tool to generate this and I wanted to s...
Hello.
I have a client that is mandating that my 'required' string elements have nillable="false", currently all strings in the wsdl come out will nillable="true", IE:
<xs:element name="username" nillable="true" type="xs:string" />
how can i change the nillable="false" ?!?
I will take any suggestions on how to do this?
Am I the f...
Hi,
I am trying to communicate between 2 applications.
1 matlab application
1 C# written application.
The C# application publishes its functions with the Microsoft WSDL application that is non-standard and matlab cannot understand it.
Do you know of any solutions to this problem?
Some application that does publish the WCF functions in ...
Hi I am newbie to Web services, hoping to finish task related to Web services. I have a hardware which connects to Java application through Web services, when enabled. Since WSDL is ready we thought of generating client code through Eclipse3.4 (File>Other>Webservcies>Webservcies Client) But it throwing exception and couldnt move further....
I'm doing some wsdl- and client-first development in C# with WCF (the wsdl and client already exist, I'm building the server-side,) and I'm having an odd issue. I used wsdl.exe to generate a contract from my .wsdl, and I'm able to build it and host the WCF service as a Windows service.
However, the wsdl I get from http://localhost/Servi...
I have a wcf web service and I need to provide the client with the wsdl files.
Previously I used svcutil on the .dll and everything was fine.
However, recently I implemented the factory to Flaten the wsdl file (re: http://wcfextras.codeplex.com/).
My questions is this: Is there anyway of either using svcutil on the .svc to extract t...
I am working with a webservice that provides basic CRUD functionality. The Retrieve is easy enough to work with, but I'm having trouble working with the Create (I've not yet messed with the Update or Delete functions).
The update function takes a single argument. This is a zObject in the WSDL. However, this is a generic object extend...
We are trying to create a mock service for a web service for testing purposes.
To do this we run wsdl.exe to create an interface and then create an asmx web service based on that interface. We have done this several times over the last years without any problems.
This time we get an error:
The methods xx and yy use the same SOAPAction...
I want to access apis which i got from a wsdl file. I add the reference to this API in dll which is created using C#.
The dll which I created is accessed in another C# exe. When i try to access the API it is giving the following exception
System.InvalidOperationException: Could not find default endpoint element that references contrac...
So I've got a bit of an issue I'm trying to work through. Perhaps some Flex guru could assist?
I have a WebService instance that attempts to load a WSDL file from our JBoss Application Server. If I do something like this:
webService = new WebService();
webService.destination = WebService.DEFAULT_DESTINATION_HTTP;
webService.wsdl = "htt...
I have a wcf service written in a contract-first fashion. As some of the elements in the schema uses attributes, I had to create a custom serialization for this (using IXmlSerializable). Below is a snippet of the schema, and the classes, as well as the schema from the wsdl output.
My problem is that even though I render the xsd for my I...
I'm trying to use SvcUtil against a wsdl file to generate proxy classes, but I'm getting an element missing error that I think is related to schema group elements. Does anyone know for a fact if svcutil can handle ? And if so will it handle xs:group elements that have ref attributes that point to the group definition that lives in anot...
I'm having problems with a web service.
I published the site on IIS 6. With my browser the interface works fine.
When I try to create a proxy with wsdl.exe, It gives me 404 not found error.
Is there any trigger in IIS that I should turn or what?
...
I have a Rails application which uses another Rails application's API trough a WSDL file. I'd like to somehow cache or define as a constant the "handle" to the API which I create like this:
serv = SOAP::WSDLDriverFactory.new(APP_CONFIG['api_url']).create_rpc_driver
Reloading this for all methods which use the API is both slow and not ...
So I need to access this service from my rails app. I'm using soap4r to read the WSDL and dynamically generate methods for accessing the service.
From what I've read, I should be able to chain methods to access the nested XML nodes, but I can't get it to work. I tried using the wsdl2ruby command and read through the generated code. ...
Is there a way to generate a PHP soap client from a wsdl file?
I mean something like wsdl.exe or svcutil.exe in .net, that generates code for a class that can be the client of a service, not something like:
$WSDL = new SOAP_WSDL($wsdl_url);
$client = $WSDL->getProxy();
My problem is that I want the php client to be able the wor...