tagged [soap]
Sending raw SOAP XML directly to WCF service from C#
Sending raw SOAP XML directly to WCF service from C# I have a WCF service reference: and I have an XML file containing a compliant SOAP envelope Now, I would like to send this raw data directly to the...
NuSOAP PHP web service and .NET WebService reference - problem
NuSOAP PHP web service and .NET WebService reference - problem I have created a PHP SOAP WebService with NuSOAP. I add a WebReference from C# application. I enter the URL of the WSDL, I can see method...
- Modified
- 1 Sep at 12:2
'Malformed Reference Element' when adding a reference based on an Id attribute with SignedXml class
'Malformed Reference Element' when adding a reference based on an Id attribute with SignedXml class Unable to sign element by Id attribute when there's a namespace prefix: ``` void Main() { var doc ...
- Modified
- 5 Aug at 15: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...
SOAP vs REST (differences)
SOAP vs REST (differences) I have read articles about the differences between SOAP and REST as a web service communication protocol, but I think that the biggest advantages for REST over SOAP are: 1. ...
- Modified
- 5 Mar at 19: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...
- Modified
- 23 May at 11:58
I can't create a clear picture, why and when to use RESTful services?
I can't create a clear picture, why and when to use RESTful services? Why and when to use RESTful services? I know how to create a WCF webservice. But I am not able to comprehend when to use a SOAP ba...
Consuming Servicestack SOAP Service
Consuming Servicestack SOAP Service I'm developing a Servicestack SOAP service. I wanted to generate the proxy class in VS2013 in order to test the consumer, but the proxy is empty :) . Yes, I know th...
- Modified
- 18 Jun at 10:25
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...
- Modified
- 26 Jun at 12:36
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...
- Modified
- 10 Aug at 09:10
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'...
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...
- Modified
- 11 Jan at 11:27
Public free web services for testing soap client
Public free web services for testing soap client Are there any publicly available [SOAP 1.2](http://en.wikipedia.org/wiki/SOAP_(protocol))/[WSDL 2.0](http://en.wikipedia.org/wiki/Web_Services_Descript...
- Modified
- 22 Nov at 19:21
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...
- Modified
- 17 Mar at 17:35
Main differences between SOAP and RESTful web services in Java
Main differences between SOAP and RESTful web services in Java For now I have a slight idea about the differences between SOAP and [RESTful](https://en.wikipedia.org/wiki/Representational_state_transf...
Access SOAP webservice with ServiceStack
Access SOAP webservice with ServiceStack I'm creating my client/server application intercommunication with ServiceStack, and is working great, but I need also to access an external SOAP web service. I...
- Modified
- 11 Nov at 18:38
ServiceStack Soap Retrieve Soap Headers
ServiceStack Soap Retrieve Soap Headers I need to extract a soap Header attribute from a incoming message to my service. I am using service stack and have been looking around and can't find a good ans...
- Modified
- 10 Jun at 04:53
SOAP client in .NET - references or examples?
SOAP client in .NET - references or examples? I am creating a webservices site which will provide many types of simple services over SOAP and possibly other protocols too. The goal is to make it easy ...
- Modified
- 29 Nov at 06:16
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...
- Modified
- 29 Jul at 23:36
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...
- Modified
- 9 May at 16:33
Servicestack add/rename SOAP endpoint
Servicestack add/rename SOAP endpoint I'm building a Servicestack project replacing an old WCF service node. There is a binary program that has an URL hardcoded on it and I'm not able to get/mainteain...
- Modified
- 5 Aug at 16:7
Consume ServiceStack SOAP service from Silverlight application
Consume ServiceStack SOAP service from Silverlight application For the past few days I have been looking at ServiceStack as a replacement for our WCF-based middleware (that exposes SOAP services). My ...
- Modified
- 3 Jul at 13:14
Servicestack Authentication namespace using SOAP
Servicestack Authentication namespace using SOAP I'm getting this error when using SOAPUI to send an authenticate request to my ServiceStack API. Here's my apphost setup: ``` Se
- Modified
- 8 May at 11:9
How do I use WS-Addressing in WCF and set the wsa:replyto header?
How do I use WS-Addressing in WCF and set the wsa:replyto header? I'm calling a BizTalk service using WCF. The service requires the wsa:replyto address to be set in the SOAP header to able to make a '...
- Modified
- 3 Feb at 13:57
How do you catch a thrown soap exception from a web service?
How do you catch a thrown soap exception from a web service? I throw a few soap exceptions in my web service successfully. I would like to catch the exceptions and access the string and ClientFaultCod...