Re: need to execute client SoapExtension after Security
- From: "Roman Kiss [MVP]" <rkiss@xxxxxxxxxxx>
- Date: Tue, 3 May 2005 13:13:50 -0700
That's correct. The client side has to be handled in your extension state. I
made the same for my DimeBridge [1]. The other choice (I didn't try it) is
to reorder groups programatically.
Roman
[1]
http://www.codeproject.com/cs/webservices/DIMEBridge.asp
"casey chesnut" <casey@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:OJqJAmBUFHA.2712@xxxxxxxxxxxxxxxxxxxxxxx
> Thanks Roman,
>
> on the client side, all i've come up with is to use my WSE implementation,
> so that i can run the custom extension after the request and before the
> response.
>
> casey
>
> "Roman Kiss [MVP]" <rkiss@xxxxxxxxxxx> wrote in message
> news:ekcDn%23AUFHA.3436@xxxxxxxxxxxxxxxxxxxxxxx
>> Hi Casey,
>>
>> On the server side, the WSE extension is closed to the wire
>> (priority="1", group="0"). You can inject your custom extension based on
>> the priority and group attributes only in the config file. Note that the
>> attributed method can not change a group value, it is always group="1"
>> (the lowest one).
>>
>> server side example:
>> <soapExtensionTypes>
>>
>> <add type="YourExtensionClass, ...." priority="1" group="0" />
>>
>> <add type="Microsoft.WebServicesExtension, ..." priority="2" group="0"
>> />
>>
>> </soapExtensionTypes>
>>
>>
>>
>> HTH
>> Roman
>>
>>
>>
>> "casey chesnut" <casey@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> wrote in
>> message news:Osvfxm$TFHA.544@xxxxxxxxxxxxxxxxxxxxxxx
>>> i've got a WS using WSE 1.1 for security.
>>> the scenario i need to happen is as follows:
>>>
>>> 1) client side executes WSE security
>>> 2) client side executes my custom SoapExtension, and sends request
>>> 3) server side executes my custom SoapExtension
>>> 4) server side executes WSE security
>>>
>>> the problem i'm having now is getting my custom SoapExtension to execute
>>> after WSE.
>>> i am declaring it as an Attribute on the proxy with a priority of 2,
>>> but it is still getting executed before Security.
>>> so how do i get it to execute after WSE?
>>>
>>> after i get past this, the next problem will be how to get it to execute
>>> before WSE on the server side.
>>>
>>> Thanks,
>>> casey
>>> http://www.brains-N-brawn.com
>>>
>>>
>>
>>
>
>
.
- References:
- need to execute client SoapExtension after Security
- From: casey chesnut
- Re: need to execute client SoapExtension after Security
- From: Roman Kiss [MVP]
- Re: need to execute client SoapExtension after Security
- From: casey chesnut
- need to execute client SoapExtension after Security
- Prev by Date: Re: need to execute client SoapExtension after Security
- Next by Date: Re: Is WSE supported in Whidbey?
- Previous by thread: Re: need to execute client SoapExtension after Security
- Next by thread: Having the list of connected users
- Index(es):
Relevant Pages
|