Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Misc Newsgroups > Indigo

Vista - Intecepting Messagers

 
 
Old 11-07-2006   #1 (permalink)
Steve


 
 

Intecepting Messagers

Hello,

I can use the IClientMessageInspector to log all messages going in and out,
but I want to intercept the message, I don't want the message to get to the
endpoint, I just want to return some data.

I am sure this can be done.

Steve


My System SpecsSystem Spec
Old 11-08-2006   #2 (permalink)
Arkady Frenkel


 
 

Re: Intecepting Messagers

So you need router which will filter incoming data, look at
http://windowssdk.msdn.microsoft.com.../ms751497.aspx
Arkady

"Steve" <Steve@SPAM.NOT.FOR.ME> wrote in message
news:uzx6jgoAHHA.144@TK2MSFTNGP02.phx.gbl...
> Hello,
>
> I can use the IClientMessageInspector to log all messages going in and
> out, but I want to intercept the message, I don't want the message to get
> to the endpoint, I just want to return some data.
>
> I am sure this can be done.
>
> Steve



My System SpecsSystem Spec
Old 11-08-2006   #3 (permalink)
Steve


 
 

Re: Intecepting Messagers

From reading the notes, it may not do what I need.

It looks like this allows me to send request to a different end point.

What I need is a sort of cache.

I will look into it some more.

Thanks

Steve

"Arkady Frenkel" <arkadyf@hotmailxdotx.com> wrote in message
news:esg%23tjwAHHA.1196@TK2MSFTNGP02.phx.gbl...
> So you need router which will filter incoming data, look at
> http://windowssdk.msdn.microsoft.com.../ms751497.aspx
> Arkady
>
> "Steve" <Steve@SPAM.NOT.FOR.ME> wrote in message
> news:uzx6jgoAHHA.144@TK2MSFTNGP02.phx.gbl...
>> Hello,
>>
>> I can use the IClientMessageInspector to log all messages going in and
>> out, but I want to intercept the message, I don't want the message to get
>> to the endpoint, I just want to return some data.
>>
>> I am sure this can be done.
>>
>> Steve

>
>


My System SpecsSystem Spec
Old 11-08-2006   #4 (permalink)
Arkady Frenkel


 
 

Re: Intecepting Messagers

Yes, it intermediate layer which resend data to next point ( your end
point ),
there you can throw message and not send it to your end point
Arkady

"Steve" <Steve@SPAM.NOT.FOR.ME> wrote in message
news:eKNiktxAHHA.4844@TK2MSFTNGP02.phx.gbl...
> From reading the notes, it may not do what I need.
>
> It looks like this allows me to send request to a different end point.
>
> What I need is a sort of cache.
>
> I will look into it some more.
>
> Thanks
>
> Steve
>
> "Arkady Frenkel" <arkadyf@hotmailxdotx.com> wrote in message
> news:esg%23tjwAHHA.1196@TK2MSFTNGP02.phx.gbl...
>> So you need router which will filter incoming data, look at
>> http://windowssdk.msdn.microsoft.com.../ms751497.aspx
>> Arkady
>>
>> "Steve" <Steve@SPAM.NOT.FOR.ME> wrote in message
>> news:uzx6jgoAHHA.144@TK2MSFTNGP02.phx.gbl...
>>> Hello,
>>>
>>> I can use the IClientMessageInspector to log all messages going in and
>>> out, but I want to intercept the message, I don't want the message to
>>> get to the endpoint, I just want to return some data.
>>>
>>> I am sure this can be done.
>>>
>>> Steve

>>
>>

>



My System SpecsSystem Spec
Old 11-08-2006   #5 (permalink)
Steve


 
 

Re: Intecepting Messagers

So, this means, will have to host the end point in my app, for example

[My App] -- Named Pipes -- [ Router ] -- SOAP -- [ Final end point ]

In my router, I could just send a message back and not bother my end point.

I see how this will work, but it means all my messages get passed via SOAP
and named pipes, this is going to cost.

Is this the only way todo this?

Steve

"Arkady Frenkel" <arkadyf@hotmailxdotx.com> wrote in message
news:%23KVKXczAHHA.4992@TK2MSFTNGP03.phx.gbl...
> Yes, it intermediate layer which resend data to next point ( your end
> point ),
> there you can throw message and not send it to your end point
> Arkady
>
> "Steve" <Steve@SPAM.NOT.FOR.ME> wrote in message
> news:eKNiktxAHHA.4844@TK2MSFTNGP02.phx.gbl...
>> From reading the notes, it may not do what I need.
>>
>> It looks like this allows me to send request to a different end point.
>>
>> What I need is a sort of cache.
>>
>> I will look into it some more.
>>
>> Thanks
>>
>> Steve
>>
>> "Arkady Frenkel" <arkadyf@hotmailxdotx.com> wrote in message
>> news:esg%23tjwAHHA.1196@TK2MSFTNGP02.phx.gbl...
>>> So you need router which will filter incoming data, look at
>>> http://windowssdk.msdn.microsoft.com.../ms751497.aspx
>>> Arkady
>>>
>>> "Steve" <Steve@SPAM.NOT.FOR.ME> wrote in message
>>> news:uzx6jgoAHHA.144@TK2MSFTNGP02.phx.gbl...
>>>> Hello,
>>>>
>>>> I can use the IClientMessageInspector to log all messages going in and
>>>> out, but I want to intercept the message, I don't want the message to
>>>> get to the endpoint, I just want to return some data.
>>>>
>>>> I am sure this can be done.
>>>>
>>>> Steve
>>>
>>>

>>

>
>


My System SpecsSystem Spec
Old 11-08-2006   #6 (permalink)
Arkady Frenkel


 
 

Re: Intecepting Messagers

Hi!

"Steve" <Steve@SPAM.NOT.FOR.ME> wrote in message
news:OVuttl0AHHA.4568@TK2MSFTNGP04.phx.gbl...
> So, this means, will have to host the end point in my app, for example
>
> [My App] -- Named Pipes -- [ Router ] -- SOAP -- [ Final end point ]
>

Usually router use the same binding as final service so that can be http --
http , but if you prefer name pipe--http that is OK.

> In my router, I could just send a message back and not bother my end
> point.
>

If you mean " send message reply back" that exactly what I propose
> I see how this will work, but it means all my messages get passed via SOAP
> and named pipes, this is going to cost.


But without intermediate layer you have to send all to end point , in this
case only part

Arkady

>
> Is this the only way todo this?
>
> Steve
>
> "Arkady Frenkel" <arkadyf@hotmailxdotx.com> wrote in message
> news:%23KVKXczAHHA.4992@TK2MSFTNGP03.phx.gbl...
>> Yes, it intermediate layer which resend data to next point ( your end
>> point ),
>> there you can throw message and not send it to your end point
>> Arkady
>>
>> "Steve" <Steve@SPAM.NOT.FOR.ME> wrote in message
>> news:eKNiktxAHHA.4844@TK2MSFTNGP02.phx.gbl...
>>> From reading the notes, it may not do what I need.
>>>
>>> It looks like this allows me to send request to a different end point.
>>>
>>> What I need is a sort of cache.
>>>
>>> I will look into it some more.
>>>
>>> Thanks
>>>
>>> Steve
>>>
>>> "Arkady Frenkel" <arkadyf@hotmailxdotx.com> wrote in message
>>> news:esg%23tjwAHHA.1196@TK2MSFTNGP02.phx.gbl...
>>>> So you need router which will filter incoming data, look at
>>>> http://windowssdk.msdn.microsoft.com.../ms751497.aspx
>>>> Arkady
>>>>
>>>> "Steve" <Steve@SPAM.NOT.FOR.ME> wrote in message
>>>> news:uzx6jgoAHHA.144@TK2MSFTNGP02.phx.gbl...
>>>>> Hello,
>>>>>
>>>>> I can use the IClientMessageInspector to log all messages going in and
>>>>> out, but I want to intercept the message, I don't want the message to
>>>>> get to the endpoint, I just want to return some data.
>>>>>
>>>>> I am sure this can be done.
>>>>>
>>>>> Steve
>>>>
>>>>
>>>

>>
>>

>



My System SpecsSystem Spec
 

Thread Tools


Similar Threads
Thread Forum
Unread messagers look like read Live Mail


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

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