Debugging Inherited Methods in SoapReceiver
- From: "irwin.williams" <irwin.williams@xxxxxxxxx>
- Date: 5 Dec 2005 06:47:52 -0800
Hello
I am working on a project where i need to trace the flow of operations
through a class i am using for my web services.
This class inherits from SoapService (which inherits from
SoapReceiver).
I have sought to separate my test programme from the library with uses
SoapService (lets call it MySoapLibrary). However, when i seek to debug
MySoapLibrary, none of the debug commands i apply to my methods are
called, even though i know - though implicitly - that these methods
must be called.
For example, lets say i have a class called MathService : SoapService.
I have overridden a method called processmessage(), but i am not
"seeing it" being called.
public class MathService : SoapService{
public override void ProcessMessage(SoapEnvelope message)
{
Console.WriteLine("in pm");
base.ProcessMessage(message);
}
}
I have even put some Console.WriteLine statements in some of my
inherited methods, as shown above, but not even these messages are
printing.
Can someone show me where i am going wrong?
Thanks
.
- Follow-Ups:
- Re: Debugging Inherited Methods in SoapReceiver
- From: irwin.williams
- Re: Debugging Inherited Methods in SoapReceiver
- Prev by Date: Re: UserName and Kerberos tokens at the same time
- Next by Date: How to use non-RSA Asymmetric Algorithm with WSE?
- Previous by thread: Upgrading WSE 1.0 to WSE 3.0
- Next by thread: Re: Debugging Inherited Methods in SoapReceiver
- Index(es):
Relevant Pages
|
|