tagged [soap]

How Do I Call XML SOAP Service that Requires Signature from .Net Core?

How Do I Call XML SOAP Service that Requires Signature from .Net Core? I realize that this question refers to old technology. I am calling a vendor system and have no ability to change the service. We...

3 Nov at 21:46

Sending SOAP request using Python Requests

Sending SOAP request using Python Requests Is it possible to use Python's [requests](http://docs.python-requests.org/en/master/) library to send a SOAP request?

17 Oct at 16:26

Fatal error: Class 'SoapClient' not found

Fatal error: Class 'SoapClient' not found I'm trying a simple web service example and I get this error even though I uncommented `extension=php_soap.dll` in the `php.ini` file: > Class 'SoapClient' no...

17 Aug at 08:7

Servicestack SOAP - Invalid credentials returning html in response

Servicestack SOAP - Invalid credentials returning html in response In my service, I have a custom auth provider that throws a HttpError if the credentials are invalid like so: When I access this servi...

5 Jul at 11:44

How to check EU VAT using VIES SOAP service in C#

How to check EU VAT using VIES SOAP service in C# I have an ASP.NET website that needs to check a user-supplied VAT. The [VIES Service](http://ec.europa.eu/taxation_customs/vies/) can be used for that...

23 May at 12:10

ServiceStack client add attachment

ServiceStack client add attachment I'm using ServiceStack.ServiceClient.Web.XmlServiceClient to connect to a webservice. Is there a way to add an attachment to the request? What I am trying to do is a...

23 May at 11:58

ServiceStack SOAP XmlException: The input document has exceeded a limit set by MaxCharactersInDocument

ServiceStack SOAP XmlException: The input document has exceeded a limit set by MaxCharactersInDocument As the title suggest, we are currently struggling with a ServiceStack v 4.0.44 SOAP service that ...

23 May at 11:52

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

Python soap using soaplib (server) and suds (client)

Python soap using soaplib (server) and suds (client) This question is related to: [Python SOAP server / client](https://stackoverflow.com/questions/1751027/python-soap-server-client) In the case of so...

23 May at 10:27

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

Working Soap client example

Working Soap client example I'm trying to find a simple (ha) SOAP example in JAVA with a working service, any I seem to be finding are not working. I have tried this [one](http://www.elharo.com/fibona...

11 Jan at 11:27

C# - Make WCF Accept any Soap message prefixes

C# - Make WCF Accept any Soap message prefixes This is the situation, there is an existing client, I need to build a server the client will be consuming. I don't own the client and am in no position t...

15 Dec at 12:46

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

WCF client logging dotnet core

WCF client logging dotnet core I'm using on windows and have a file with classes generated by the . I'm using nlog for the logging purpose. Is there a way I can log all the to and from the external se...

10 Aug at 09:10

How to pass credentials to a SOAP webservice?

How to pass credentials to a SOAP webservice? I am trying to call a SOAP webservice, however I am getting the error: Additional information: The username is not provided. Specify username in ClientCre...

9 May at 16:33

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

Example of SOAP request authenticated with WS-UsernameToken

Example of SOAP request authenticated with WS-UsernameToken I'm trying to authenticate a SOAP request using WS-UsernameToken spec, but the target device is always denying access. My non-working reques...

WCF Client: Forcing Global Namespaces

WCF Client: Forcing Global Namespaces I'm working on interfacing with a SOAP service that appears to not deal with default namespaces, but works fine with global namespaces and namespace prefixes decl...

31 Mar at 12:57

SOAP in .NET Core?

SOAP in .NET Core? How you do SOAP in .NET Core? Are there any equivalents of [Apache CXF](https://cxf.apache.org/) in .Net Core (not just a simple SOAP client but full featured stack)? Sorry if this ...

28 Feb at 12:48

How to call WCF service method from POSTMAN

How to call WCF service method from POSTMAN I am trying to call a service using WCF endpoint. The WCF service is hosted on a Windows Service, This is the config. ```

29 Jan at 19:55

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

Servicestack - injecting a SOAP web service

Servicestack - injecting a SOAP web service I would like to call a third-party SOAP web service from within my ServiceStack project ( I have used the default servicestack project layout: ![enter image...

10 Nov at 19:42

The HTTP request is unauthorized with client authentication scheme 'Ntlm'. The authentication header received from the server was 'Negotiate,NTLM'

The HTTP request is unauthorized with client authentication scheme 'Ntlm'. The authentication header received from the server was 'Negotiate,NTLM' I've looked through a ton of SO articles, and even ot...

15 Sep at 15:16