wsdl

Does upgrading a WCF service from .NET 3.5 to 4.0 change the contract?

If I upgrade a WCF Web Service from .NET 3.5 to 4.0, making no other changes, is there any risk of a change to the contract exposed to the outside world? ie. Will my consumers need to reconsume the WSDL? If so, is there anything I can do to stop that happening? EDIT: An example of the kind of thing I'm talking about. We have been usi...

Delphi 7 Soap WCF Service using basicHttpBinding

I added a basicHttpBinding to an existing Service I have in production in order to expose it for use in Delphi. When I try to use the WSDLImporter from Delphi 7 on the wsdl file, it doesn't work right. A section in the resulting tlb says // ************************************************************************ // // The following ty...

standalone java webservice client

Hi, I am new to webservices in general. I am trying to write a Java stand-alone client which can get a response back from a webservice. I tried searching SO and Google but now I got more confused. The below are the links I went through extensively. http://stackoverflow.com/questions/373350/simple-standalone-java-soap-web-service-clie...

Creating classes 'back' from WSDL

Hello, I've got some WSDL description of a protocol which I need to implement (-> client 'knows' the API, I need just to write server for it). Is there any tool for c# that will generate some starting classes for me? ...

How to connect with the SOAP web service ?

Hi friends, I am working with coneect to SOAP webservice from iphone. I cant connect with the web service. Here i had included my code. Please help me to solve the problem. NSString *soapMessage = [NSString stringWithFormat: @"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" "<SOAP-ENV:Envelope \n" "xmlns:x...

WCF generated proxy does not contain *Specified property flags for WSDL string fields with minoccurs="0"

I've noticed that the WCF proxy generator is not generating the "specified" property flags for string fields EG When I have two fields on a complexType specified in the WSDL: <xs:element name="testStringField" type="xs:string" minOccurs="0" /> <xs:element name="testDecimalField" type="xs:decimal" minOccurs="0" /> the proxy generato...

WS-Policy Specification in WSDL document - .NET

I have authored a simple calculator Web service using visual studio 2010. I need to specify policy using WS-Policy language (which I need to append with the WSDL document generated for the service). How can I do that? Should I need WSE 3.0 Settings tool installed for that in VS 2010? Does VS 2010 support it? I have tried using XMLSeri...

How to infer wsdl URL from war file

Hi, is there a way to find out where to point (http://theserver/theapp/thewsdl.wsdl) from reading a descriptor from the war file generated? (it's a WAS app server) Thanks ...

How can I access the remote WSDL provided by a webservice based on https in java code or ant-target?

How can I access the remote WSDL provided by a webservice based on https in java code or ant-target? In other words,I want to use the webservice in java code and jar the code generated by the wsimport. ...

Error generating proxy class via svcutil.exe. Referenced type only valid for encoded SOAP

I'm trying to generate proxy classes via svcutil.exe for a 3rd party web service using their WSDL. However, when I run svcutil.exe on the WSDL I get the following error, which then cascades down to other elements in the file causing no code to be generated. Warning 2 Custom tool warning: Cannot import wsdl:portType Detail: An excepti...

How to verify at runtime if the client WSDL matches the server WSDL?

I am developing a system where .NET (Compact Framework) clients are communicating via SOAP with a Java (AXIS2) server. As the interface is continuously evolving, I am looking for a way to check at runtime if the client interface completely matches the current interface version of the server. What is the easiest way to match the interfac...

correct WCF service server side stub from WSDL

Hi, I have the following WSDL <?xml version="1.0" encoding="UTF-8"?> <definitions xmlns:tns="${namespace}" xmlns:wsr="http://www.openuri.org/2002/10/soap/reliability/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soapen...

Separate servers handling WSDL file differently

Hi, Within a project I've been writing for the past two years I have a WSDL file which works nicely for use with my SOAP calls however we are now moving all of our code over to a new server and it seems to handle this differently. On the old server if I type in the file path for the WSDL file I can simply read it as if it's a text doc,...

Ruby: How to load a WSDL file into some data structure?

I have a WSDL file and want to load it into ruby somehow so I can navigate through it. Anyone know how to do this? ...

Writing WSDL file to existing web service

I need to write a WSDL file to an existing web service which is provided to me by a colleague (it's realized with Perl and SOAP::Lite). Therefore, I have a given format for the SOAP-response and need to define the service formally to be able to generate the code for a Java client to the service. To test the WSDL file against the service,...

Converting a WSDL to IDL

I'm working on a device that uses Java ORB for communicating with SOAP web services. Our SOAP web service is hosted via WCF and exposes its interface via a WSDL. The example I have for the device suggests looking at the WSDL and manually converting it to an IDL which can then be consumed by jidl to generate the required Java stubs. Is...

simple WSDL wrapper for HTTP process?

Suppose I have a simple HTTP form that uses POST to pass some parameters and returns OK or BAD (which I do). A client wants this to be published as a WSDL description. Looking into WSDL I see an infinite morass of formalisms, but no practical tools. Surely there must be a simple way to create a wrapper for a simple form processor? ...

How to expose WCF4 metadata endpoint in ASP.NET MVC 2 app

I have a ASP.NET MVC 2 application with WCF service defined in it (.svc file using service from a different project). web.config WCF section looks like this: <system.serviceModel> <behaviors> <endpointBehaviors> <behavior name="RecordServiceAspNetAjaxBehavior"> <enableWebScript /> </behavior> </endpointBehaviors> <se...

Error while generating API docs using Enunciate

I created a webservice and would like to generate documentation for the API. So I looked into Enunciate downloaded the maven enunciate plugin. However I get the below error on compile as the webservice annotations are on my interface class that my POJO implements rather than the POJO itself. I don't want to clutter the POJO by adding ...

Create Client classes with wsgen

I have a wsdl reachable through an url. I'd like to generate client classes for using this web service using wsgen. How I can do it using as a parameter the wsdl url only? Thank you! ...