tagged [wsdl]

ServiceStack WSDL does not include all types

ServiceStack WSDL does not include all types I created a web service within my MVC application. All contracts are using the same namespace. `AssemblyInfo.cs` also maps the `ContractNameSpace` with `Cl...

11 Nov at 21:52

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

How to use a WSDL

How to use a WSDL I need to consume a Web Service. They sent me the WSDL file. What should I do to add it to my website and start using it as the proxy. ( If I put it on a Virtual Directory it can be ...

20 Jan at 00:7

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

Soap Address Location : ServiceStack SOAP 1.2

Soap Address Location : ServiceStack SOAP 1.2 I've been looking around for an answer but I've found nothing that solves my problem, forgive me if this has been asked before. I've got a REST and SOAP A...

15 Jun at 10:52

Consuming wsdl soap service with servicestack

Consuming wsdl soap service with servicestack I have been trying to consume wsdl soap service with asp.net C# mvc5 application. The original service is written in php which should ideally not matter b...

29 Jul at 23:36

Add reference to a Servicestack simpleservice in VS 2013 fails

Add reference to a Servicestack simpleservice in VS 2013 fails I have an interesting problem. If i have a return object on my servicestack method and wnat to use SOAP, VS2013 can generate a proxy with...

How to call a SOAP web service on Android

How to call a SOAP web service on Android I am having a lot of trouble finding good information on how to call a standard SOAP/WSDL web service with Android. All I've been able to find are either very...

29 Nov at 00:13

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

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...

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

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

Force re-cache of WSDL in php

Force re-cache of WSDL in php I know how to disable [WSDL-cache](https://stackoverflow.com/questions/303488/in-php-how-can-you-clear-a-wsdl-cache) in PHP, but what about force a re-caching of the WSDL...

23 May at 12:34

Generating WSDL for a single ServiceStack service

Generating WSDL for a single ServiceStack service Is there a way to get a WSDL for a single ServiceStack service? For example, if I override the AppHost.Configure method and register a service, like s...

29 Aug at 17:8

how to generate web service out of wsdl

how to generate web service out of wsdl Client provided me the wsdl to generate the web service.But when I used the wsdl.exe command it generated the .cs class out of it. I consumed that class in my w...

17 Oct at 10:10

How to install svcutil.exe under Windows 10

How to install svcutil.exe under Windows 10 I am desperately searching for a way to install `svcutil.exe` because I read [here](https://stackoverflow.com/questions/7973819/converting-wsdl-to-c-sharp-c...

26 Jun at 12:36

How to pass "Null" (a real surname!) to a SOAP web service in ActionScript 3

How to pass "Null" (a real surname!) to a SOAP web service in ActionScript 3 We have an employee whose surname is Null. Our employee lookup application is killed when that last name is used as the sea...

How can I use async/await to call a webservice?

How can I use async/await to call a webservice? I have a [webservice](http://ychat.marpel.cz/ychat/WebService) written in [Yii](http://www.yiiframework.com/doc/guide/1.1/en/topics.webservice) (php fra...

27 Nov at 15:12

wsdl.exe Error: Unable to import binding '...' from namespace '...'

wsdl.exe Error: Unable to import binding '...' from namespace '...' When running wsdl.exe on a WSDL I created, I get this error: > Error: Unable to import binding 'SomeBinding' from namespace 'SomeNS'...

20 Jun at 09:12

How to make a SOAP/WSDL client in C#?

How to make a SOAP/WSDL client in C#? I have been playing around in PHP with it and got something to work, what i did was: And now i would like my application i WPF/C# to do the same. What is the equi...

26 Aug at 09:32

How can I dynamically switch web service addresses in .NET without a recompile?

How can I dynamically switch web service addresses in .NET without a recompile? I have code that references a web service, and I'd like the address of that web service to be dynamic (read from a datab...

13 Jan at 13:35

What are WSDL, SOAP and REST?

What are WSDL, SOAP and REST? What is [WSDL](https://www.w3.org/TR/wsdl)? How is it related to [SOAP](https://www.w3.org/TR/soap12)? Where does [REST](https://www.rfc-editor.org/rfc/rfc6690) fit in al...

7 Oct at 07:34