Tagged Questions
The soap-extension tag has no wiki summary.
8
votes
2answers
552 views
C# extending SoapExtension -
Background:
I'm trying to write a simple SoapExtension class to log inbound/outbound Soap messages from an asmx web service. Following this article on msdn, I have been able to get things working. ...
5
votes
1answer
3k views
.Net Web Service Logging
My ideal situation for logging in our web service would be to log all the method calls (authentication as well as data access) with the parameters passed to them as well as errors that may have ...
2
votes
1answer
698 views
SoapExtension not loading
I'm trying to write a soap extension. But the framework is not loading it.
I've added to the web.config
<webServices>
<soapExtensionTypes>
<add group="High" priority="1" ...
2
votes
2answers
1k views
.NET SOAP Extension is throwing NullReferenceException inside MethodInfo?
NOTE: Using .NET 2.0, and VS2005 as IDE
Hello all,
I'm working on logging webservice calls to our database, and finally got the SoapExtension configured and running using a very stripped-down ...
1
vote
1answer
1k views
ASMX Web Service Soap Extension - How to Inject Attribute into Client Proxy Class?
I try set soap extension attributes on client side. For example:
Implementation in web service:
[AttributeUsage(AttributeTargets.Method)]
public class EncryptMessageAttribute : ...
1
vote
1answer
1k views
Add prefix to XML Root Node - Implementation of Scott Hanselman's suggestion?
I would like to add a namespace prefix to the XML root node and I found an entry by Scott Hanselman which details exactly what I would like to achieve. The only problem being the implementation is ...
0
votes
1answer
499 views
log request/response of .net SOAP web service
I'm consuming a third party .NET SOAP WebService (.asmx). I want to log request and response. I have seen some solutions using SoapExtensions. But I like to integrate logging in my system, some like ...
0
votes
1answer
938 views
Calling a Method with a SoapExtensionAttribute
I have problem, I want set soap extension attribute in web method:
Soap extension in web service:
public class EncryptMessageAttribute : SoapExtensionAttribute
{
private string strKey="null";
...
0
votes
3answers
617 views
How to detect which web service protocol an ASP.NET request is using?
I have an ASP.NET (1.1) web service which authenticates clients using a SoapExtension.ProcessMessage(SoapMessage) override as described in:
http://www.codeguru.com/columns/experts/article.php/c5479
...