Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP .Net Web Services > wse chainstream override

Reply
Thread Tools

wse chainstream override

 
 
simon taylor
Guest
Posts: n/a
 
      08-12-2003
Dear all,
I'm wanting to write a wse filter to intercept the incoming stream to
a webservice.
According to the wse help you can do.....

public override Stream ChainStream( Stream stream )
{
...............
}

However, I'm writing an input filter to do this and as far as I know
they must (?) inherit from SoapInputFilter thus

public class InputFilter : SoapInputFilter
{
public override void ProcessMessage(SoapEnvelope envelope)
{
.................
}
}

which overrides ProcessMessage nicely. However SoapInputFilter does
not have a ChainStream to override ? - ChainStream is a member of
WebServicesExtension (I believe).

So I guess my question has two possible answers - Is it possible to
get at the stream from within SoapInputFilter ?
Or is it possible to inherit from WebServicesExtension as an input
filter ?

Ive tried
public class InputFilter : WebServicesExtension
and I get an error message....
"..... is not derived from Microsoft.Web.Services.SoapInputFilter"


Any answers would be much appreciated as the wse help is a little
cryptic to my fragile mind
If you can help please try and explain your solution as you would to a
three year old
cheers
simon
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
XML Signature with WSE 1.0 =?Utf-8?B?c3M=?= ASP .Net 2 04-07-2005 07:11 AM
WSE 2.0 Kerberostoken creation on IIS 5.0/win2k fails Shikari Shambu ASP .Net 0 12-29-2004 10:42 PM
WSE 2.0, ASP.NET, Kerberos Token on IIS 5.0 Win 2k Shikari Shambu ASP .Net 0 12-29-2004 05:16 PM
Interceptor, HttpModule, WSE oliver.wulff@zurich.ch ASP .Net 0 01-27-2004 05:57 AM
WSE coverage Chris Pettingill MCSD 9 11-02-2003 08:53 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57