tagged [soap]

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

Service Stack Serialization Exception for soap 1.1

Service Stack Serialization Exception for soap 1.1 The Request Message: ```

How to send/receive SOAP request and response using C#?

How to send/receive SOAP request and response using C#? ``` private static string WebServiceCall(string methodName) { WebRequest webRequest = WebRequest.Create("http://localhost/AccountSvc/DataI...

5 Aug at 23:56

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

Servicestack SOAP & ToOptimizedResult Client Parse Error

Servicestack SOAP & ToOptimizedResult Client Parse Error I have a super-simple ServiceStack webservice configured using the latest Nuget package (3.8.3 I believe?). The main change I made was to call ...

4 Jul at 03:10

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

Calling a SOAP service in .net Core

Calling a SOAP service in .net Core I´m porting a .net 4.6.2 code to a , that calls a SOAP service. In the new code I´m using C# (because of some config reasons I just can´t remember why right now). B...

8 Feb at 09:47

How can the error 'Client found response content type of 'text/html'.. be interpreted

How can the error 'Client found response content type of 'text/html'.. be interpreted I'm using C# and connecting to a WebService via an auto-generated C# proxy object. The method I'm calling can be l...

14 Aug at 11:29

C#: How to invoke a SOAP service requiring client-side authentication with certificates installed at runtime

C#: How to invoke a SOAP service requiring client-side authentication with certificates installed at runtime I have an application deployed to IIS that needs to invoke a SOAP service. It's using WCF f...

15 May at 10:27

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

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

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

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

How to get ServiceStack to receive SOAP requests?

How to get ServiceStack to receive SOAP requests? I am trying to use TFS build notifications to alert an endpoint in my ServiceStack service. TFS uses SOAP and I have little or no experience with SOAP...

15 Aug at 16:16

ServiceStack: VS 2012 Add service reference

ServiceStack: VS 2012 Add service reference I'm having issues adding a service reference to my soap endpoint. I even tried adding the address for the hello example on SS website, [http://mono.services...

3 Mar at 14:50

Add Service Reference error "Cannot import wsdl:portType"

Add Service Reference error "Cannot import wsdl:portType" I cannot get the Add Service Reference in VS 2010 or 2012 to work for web services built on ServiceStack . I have followed the [guide](https:/...

mssoapinit fails to initialize WSDL

mssoapinit fails to initialize WSDL The MSSOAP client fails initializing the soap12 interface of the Hello Example project. The following error is returned: ``` WSDLPort: WSDLPort:The soap:binding sub...

20 Aug at 14:0

ServiceStack [XmlSerializerFormat] compatible SOAP Web-service for a legacy client

ServiceStack [XmlSerializerFormat] compatible SOAP Web-service for a legacy client I would like to replace a WCF Web-service by a new ServiceStack service. WCF service uses basicHttpBinding and it is ...

SOAP returns data, but C# says null response

SOAP returns data, but C# says null response My C# app won't give me anything but null results from SOAP calls. We have exposed some PeopleSoft ERP data with a SOAP web service. I am accessing this SO...

5 Sep at 15:19

Invoking a web service with WS Security from .NET

Invoking a web service with WS Security from .NET I need to consume a web service secured with WS-Security from ASP.NET. I'm testing the service with SoapUI, being the envelop request: ```

10 Jul at 19:32

ServiceStack + SOAP + soapUI

ServiceStack + SOAP + soapUI I'm trying to get soapUI to recognize the types in my ServiceStack soap service. I'm sure that I'm doing something wrong in the setup of the service. Here is the WSDL: ```

14 Aug at 23:43