hi
In my WS 2.0 project i have used "SoapInputFilterCollection" object for
Registering the input filter to retain the WSE headers. The code looks like
as follows:
SoapInputFilterCollection globalInputFilters =
WebServicesConfiguration.FilterConfiguration.InputFilters;
MyInputFilter myCustomFilter = new MyInputFilter();
globalInputFilters.Insert(0, myCustomFilter);
Where 'MyInputFilter' class derived from SoapInputFilter.
But in WSE 3.0 we don't have SoapInputFilter and SoapOutputFilter . Both
were combined into a single class called SoapFilter. And also
SoapInputFilterCollection is nolonger available in WSE3.0.
'WebServicesConfiguration' is available with different properties.
Have any body used/tried this.
How can i achieve this ?
Any help would be appreciated
Thanks
-mohan
Pablo Cibraro - 26 Jan 2006 14:02 GMT
Hi Mohan,
I recommend you to read this article about the Policy architecture in WSE
http://msdn.microsoft.com/msdnmag/issues/06/02/WSE30/default.aspx.
It was written by Tomasz Janczuk, one of the developers involved in the
development of WSE.
I also wrote some comments about this topic in my weblog.
Regards,
Pablo Cibraro
http://weblogs.asp.net/cibrax
http://www.lagash.com
> hi
> In my WS 2.0 project i have used "SoapInputFilterCollection" object for
[quoted text clipped - 20 lines]
> Thanks
> -mohan