Windows Vista Forums
Vista Forums Home Join Vista Forums Donate Vista Tutorials Tags

Welcome to Vista Forums we are your forum to discuss Windows Vista x64 and x86 systems. Whether you need help or just want to post an idea you have on Vista, this is the forum for you.
Register at Vista forums...the world biggest Windows Vista resource Join Vista Forums Now

Go Back   Vista Forums > Microsoft Technical Newsgroups > Indigo

Intecepting Messagers

Update your Vista Drivers Update Your Drivers Now!!
 
 
Thread Tools Display Modes
Old 11-07-2006   #1 (permalink)
Steve
Guest


 

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
Guest


 

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
Guest


 

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
Guest


 

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
Guest


 

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
Guest


 

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
Display Modes



Similar Threads
Thread Thread Starter Forum Replies Last Post
Unread messagers look like read Elling Hamso Live Mail 2 06-17-2008 11:03 PM


Update your Vista Drivers Update Your Vista Drivers Now!!

Vistax64.com 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 2005-2008