Questions tagged [soap-extension]

Questions related to extensions, or extending functionality, for SOAP method calls.

Questions related to extensions, or extending functionality, for SOAP method calls. For example, in ASP.NET, this is done by extending the SoapExtension class and then configuring that extension to be used by the SOAP methods in a web application.

32 questions
22
votes
3 answers

Soap enabler, maven Build Failure

Trying to run a new sample project with soap enabler https://code.google.com/p/android-soap-enabler/ And i keep getting a build failed exception, I double checked the system variables and everything seems fine in my maven local repo. [INFO] Scanning…
shimi_tap
  • 7,822
  • 5
  • 23
  • 23
11
votes
1 answer

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'm blue in the face to add a Soap Extension. It compiles correctly, I have every reason to…
paulsm4
  • 114,292
  • 17
  • 138
  • 190
10
votes
2 answers

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. However I'd really like to understand why/how it's…
MattDavey
  • 8,897
  • 3
  • 31
  • 54
8
votes
2 answers

How to create a web.config file to get SoapExtension loading?

I need to use a SoapExtension subclass (which I have created), but it seems that this class can only be initialized through a web.config file. I have read that it should be possible through app.config file, but I don't know how to do it that…
soleshoe
  • 1,215
  • 2
  • 12
  • 16
8
votes
2 answers

Logging SOAP request and response on server side

I'm trying to create a logging service for all SOAP method calls to my ASP.NET webservice. I've been looking at Log SOAP messages from a console application and the walkthrough for SOAP extensions at MSDN…
kumaheiyama
  • 704
  • 1
  • 13
  • 28
7
votes
1 answer

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
Thorgeir
  • 3,960
  • 3
  • 24
  • 20
7
votes
1 answer

.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 occured, and have them linked with a single ID that…
Wes P
  • 9,622
  • 14
  • 41
  • 48
7
votes
3 answers

How to trace ScriptService WebService requests?

I have a SoapExtension that is intended to log all SOAP requests and responses. It works just fine for calls from an application using the MS Soap Toolkit (OnBase Workflow). But it doesn't work for calls made by $.ajax() on an html page. Here's…
jrummell
  • 42,637
  • 17
  • 112
  • 171
4
votes
2 answers

SoapExtension System.Configuration.ConfigurationErrorsException in web.config The value of the property 'type' cannot be parsed

I have problems with the configuration of a SoapExtension (not with the implementation). First of all, I've already read all these posts (among others), related in some way with SoapExtensions: Intercept SOAP messages from and to a web service at…
salva_gl
  • 41
  • 5
3
votes
1 answer

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 this: public class MyWebService :…
fravelgue
  • 2,633
  • 2
  • 24
  • 23
3
votes
1 answer

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 : SoapExtensionAttribute { private string strKey="null"; public…
klerik123456
2
votes
1 answer

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 missing ! Modifying the namespace PREFIX of the…
Preets
  • 6,792
  • 12
  • 37
  • 38
2
votes
1 answer

.NET SoapExtension cannot modify soap request on the server

I'm trying to implement a SoapExtension in .NET that would compresses all soap traffic (both requests and responses). I have control over both the client and the server. I've started by copying this:…
Filip
  • 51
  • 1
  • 4
2
votes
1 answer

Passing information to the object on which a SoapExtensionAttribute is applied on

In my application, I'm calling a web service and by using SoapExtension and SoapExtensionAttribute I can intercept the incoming and outgoing SOAP messages for logging purposes. I used the example in…
trabart
  • 377
  • 1
  • 3
  • 6
2
votes
2 answers

.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 implementation that was ported over from another project.…
Jay S
  • 7,904
  • 2
  • 39
  • 52
1
2 3