tagged [wsdl]

Removing swagger from ServiceStack WSDL

Removing swagger from ServiceStack WSDL I have a REST & SOAP API implementation in ServiceStack and I am having a problem with getting rid of Swagger in the WSDL. I have the swagger plugin installed w...

4 May at 12:26

ServiceStack WSDL creates empty portType element

ServiceStack WSDL creates empty portType element I created a SOAP1.2 web service with ServiceStack. We have a client using the Axis2 platform to create a proxy class to our service via the WSDL; howev...

18 Jul at 20:52

How to call a web service with no wsdl in .net

How to call a web service with no wsdl in .net I have to connect to a third party web service that provides no wsdl nor asmx. The url of the service is just [http://server/service.soap](http://server/...

14 Aug at 16:9

Using Servicestack WSDL with php

Using Servicestack WSDL with php I am trying to use ServiceStack to replace WCF for a self hosted service, accessed with a PHP client that forms its messages from on the WSDL. The WSDL produced by Ser...

14 Jan at 17:59

SOAP Client in C# without access to a WSDL-file

SOAP Client in C# without access to a WSDL-file I'm working with a third party to integrate some of our systems with theirs and they provide us with a SOAP interface to make certain requests and chang...

10 Nov at 14:51

Override Default Constructor of Partial Class with Another Partial Class

Override Default Constructor of Partial Class with Another Partial Class I don't think this is possible, but if is then I need it :) I have a auto-generated proxy file from the wsdl.exe command line t...

Converting WSDL to C# classes

Converting WSDL to C# classes Converting WSDL to C# classes using microsoft net wsdl.exe tool but the tool is unable to convert the following part of the WSDL file. Any pointers in the right direction...

1 Nov at 22:39

Make a single WCF service support both SOAP, REST and WSDL

Make a single WCF service support both SOAP, REST and WSDL I'm trying to build a C# service in .NET 3.5 that supports both SOAP - and shows the WSDL - and REST. The SOAP service and WSDL generation wa...

13 Nov at 19:41

Prevent ServiceContractGenerator from generating message contracts (request/response wrappers)

Prevent ServiceContractGenerator from generating message contracts (request/response wrappers) There is a [specific WSDL](https://finswitchuat.finswitch.com/webservices/finswitchwebservice.asmx?wsdl) ...

8 Dec at 12:35

SoapHttpClientProtocol and TLS 1.2 - The client and server cannot communicate, because they do not possess a common algorithm

SoapHttpClientProtocol and TLS 1.2 - The client and server cannot communicate, because they do not possess a common algorithm There are numerous posts on SO about this and I have scoured them, but sti...

23 Feb at 04:34

The endpoint reference (EPR) for the Operation not found is

The endpoint reference (EPR) for the Operation not found is I have been struggling with the following error the last couple of days can you please help! I generated my server and client code using the...

16 Apr at 20:10

/sharedtypes equivalent for svcutil.exe?

/sharedtypes equivalent for svcutil.exe? Building an app that is relying on a 3rd party provider who has a very verbose set of SOAP services (we're talking 50+ WSDL files). Each individual WSDL howeve...

1 Dec at 05:12

How to generate a WSDL file from a C# webservice

How to generate a WSDL file from a C# webservice I've created a WebService like this: ``` [WebService(Namespace = "http://ns")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] public cla...

13 Apr at 12:41

SOAP Action WSDL

SOAP Action WSDL I'm trying to implement a client for National Rail Enquiries' SOAP Service ([http://www.livedepartureboards.co.uk/ldbws/](http://www.livedepartureboards.co.uk/ldbws/)). I stick the WS...

14 Feb at 21:19

How do I remove the namespaces in Zend_Soap?

How do I remove the namespaces in Zend_Soap? I am trying to use the tranlsation webservice from MyMemory: [http://mymemory.translated.net/doc/spec.php](http://mymemory.translated.net/doc/spec.php) Unf...

17 Mar at 17:35

ServiceStack - how to host multiple versioned endpoints in one service?

ServiceStack - how to host multiple versioned endpoints in one service? # Where I was I'm trying to convert some WCF services to use ServiceStack instead. For the most part it's achieving what I want ...

5 Dec at 05:43

What was the difference between WSDL & Mex Endpoint in WCF

What was the difference between WSDL & Mex Endpoint in WCF I have couple of question on mex endpoint. 1. In legacy web services, we create a proxy using wsdl. The WSDL exposes the web service's meta d...

25 Jun at 03:33

Servicestack (rest) incorrect WSDL with mono

Servicestack (rest) incorrect WSDL with mono I've written a simple self-hosted (in a ConsoleApplication) rest service with service stack 3.9.70. ``` using System; using System.Runtime.Serialization; /...

23 May at 11:49

WSDL links in ServiceStack's metadata page are not working

WSDL links in ServiceStack's metadata page are not working I am running servicestack side by side within my ASP.NET webforms application. Every link in the metadata page seems to work except the two W...

16 Jul at 14:54

How to avoid the need to specify the WSDL location in a CXF or JAX-WS generated webservice client?

How to avoid the need to specify the WSDL location in a CXF or JAX-WS generated webservice client? When I generate a webservice client using wsdl2java from CXF (which generates something similar to ws...

21 Nov at 15:16

How to get service reference to generate correctly with message contracts based on 3rd party WSDL, or force no message contracts in WF Service project

How to get service reference to generate correctly with message contracts based on 3rd party WSDL, or force no message contracts in WF Service project I have a problem that given 3rd party WSDL I am a...

Pass parameter as an object[]

Pass parameter as an object[] I wish to use this API with a c# application: [http://www.affjet.com/2012/11/26/4-4-affjet-api/#more-3099](http://www.affjet.com/2012/11/26/4-4-affjet-api/#more-3099) Aft...

4 May at 09:32