tagged [soap]

/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

Intercept SOAP messages from and to a web service at the client

Intercept SOAP messages from and to a web service at the client I have a client that communicates with a web service. The class that I communicate with is a C# class that is generated through wsdl.exe...

8 Dec at 23:12

Extract SOAP body from a SOAP message

Extract SOAP body from a SOAP message I want to extract SOAP body from a SOAP message, I have some data in SOAP body that I have to parse in date base, so this is the code: ``` public string Load_XML(...

18 Apr at 14:55

SOAPAction and servicestack

SOAPAction and servicestack don't know if you can help a poor befuddled c# programmer, but here goes. I have a client with a legacy Java Soap app that we need to accept incoming Soap requests from. I ...

ServiceStack trying to bind private fields classes generated via service reference instead of public properties

ServiceStack trying to bind private fields classes generated via service reference instead of public properties There is a remote service which I'm trying to get to send me messages via http POST requ...

16 Nov at 10:44

How can I use servicestack product so I can connect my Flutter or Dart to soap WSDL services?

How can I use servicestack product so I can connect my Flutter or Dart to soap WSDL services? I am trying to get my Flutter app to connect securely to soap/wsdl web services. My question is how can I ...

5 Mar at 06:29

How do I set the timeout for a JAX-WS webservice client?

How do I set the timeout for a JAX-WS webservice client? I've used JAXWS-RI 2.1 to create an interface for my web service, based on a WSDL. I can interact with the web service no problems, but haven't...

16 May at 01:56

Remove Action Node mustUnderstand from WCF soap request using IClientMessageInspector

Remove Action Node mustUnderstand from WCF soap request using IClientMessageInspector I am hitting a WCF service using a WSDL I don't have access to and cannot modify. For one of the requests the remo...

12 Aug at 04:30

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

ServiceStack Soap 1.2 HTTPS Client

ServiceStack Soap 1.2 HTTPS Client I have a `ServiceStack` based Soap Client, which operates correctly for HTTP but when I try to use HTTPS it gives me this error ``` ServiceStack.WebServiceException:...

28 Jan at 08:58

How do I get access to SOAP response

How do I get access to SOAP response (If anything here needs clarification/ more detail please let me know.) I have an application (C#, 2.* framework) that interfaces with a third-party webservice usi...

2 Nov at 01:18

SOAP PHP Parsing Error?

SOAP PHP Parsing Error? I'm communicating with a SOAP service created with EJB -- it intermittently fails, and I've found a case where I can reliably reproduce. I'm getting a funky ass SOAP fault that...

28 Jul at 21:36

How can I get WebClient (webservice client) to automatically use the default proxy server?

How can I get WebClient (webservice client) to automatically use the default proxy server? I'm calling a webservice from a WinForms app. Everything works fine when a proxy server isn't in use, however...

14 Jun at 15:40

HttpClient & SOAP (C#)

HttpClient & SOAP (C#) I'm trying to use the HttpClient class to send a SOAP message: Doing so with REST seems easy (code from [here](http://debugmode.net/2012/03/07/consuming-asp-net-web-api-service-...

7 Nov at 06:46

.NET Core 3.1 SOAP platform not supported error "Compiling JScript/CSharp scripts is not supported"

.NET Core 3.1 SOAP platform not supported error "Compiling JScript/CSharp scripts is not supported" I am using a WSDL file (wsdl.zip) provided by Amadeus. When trying to call the service method using ...

2 Apr at 06:57

Why isn't my C# Soap Extension getting called?

Why isn't my C# Soap Extension getting called? I have a C# Winforms client that called a Java web service. The service gets invoked correctly and returns the expected results. I've been trying until I...

5 Jan at 03:46

Timeout Exception: Calling Soap API from Within a REST API

Timeout Exception: Calling Soap API from Within a REST API I have a very odd problem. I have a REST API that uses ServiceStack that does a few things like save payment data etc. From within that API I...

28 Aug at 02:36

Running report on JasperServer from C#

Running report on JasperServer from C# Jasper Reports is a superb open source alternative to Crystal Reports. It's great for single page PDF pages such as letters & invoices to multi-page reports. How...

ServiceStack: Impossible to use SOAP with custom namespace when AuthFeature is enabled?

ServiceStack: Impossible to use SOAP with custom namespace when AuthFeature is enabled? I have a need to host a couple SOAP12 messages in my current SS webapi. I have set up all of the namespaces acco...

10 Aug at 21:13

Delphi SOAP Envelope and WCF

Delphi SOAP Envelope and WCF I am working on a system that provides a soap interface. One of the systems that are going to use the interface is coded in Delphi 7. The web service is developed with WCF...

18 Mar at 20:12

How to deserialize a WCF soap response message from a file with DataContractSerializer?

How to deserialize a WCF soap response message from a file with DataContractSerializer? When I call a web service operation, WCF deserializes the message to the proxy class with the DataContractSerial...

9 May at 08:3

How to make a PHP SOAP call using the SoapClient class

How to make a PHP SOAP call using the SoapClient class I'm used to writing PHP code, but do not often use Object-Oriented coding. I now need to interact with SOAP (as a client) and am not able to get ...

23 Jul at 20:13

Deserialize Boolean from Soap using Servicestack

Deserialize Boolean from Soap using Servicestack I am issuing a soap request from SSRS to servicestack and no matter what I try, I can't get Servicestack to recognize anything as a boolean value and d...

27 Apr at 23:27

How to parse a soap message loaded from a file?

How to parse a soap message loaded from a file? I need to parse a SOAP message I load from the disk, to the type of the generated proxy. WCF does it when it receives the message from the http server, ...

2 May at 09:2

param0 disappearing in Soap request in PHP using SoapClient class

param0 disappearing in Soap request in PHP using SoapClient class I am trying to call a web service from PHP code using `SoapClient`. If I turn on trace and get the last request, I can see that the fi...

13 Oct at 07:34