Re: What's the difference between Remoting and AJAX?
They aren't at all the same thing, so you'll likely find no article that
compares the two. .Net remoting is an interprocess communication (IPC), a
way to processes to communicate with each other. It's similar to named
sockets, or fifos or signals...howev er it's abstract and protocol
independent (I think). Anyways as I understand it, it lets one .net
application easily communicate with another. Think of it as a private and
efficient webservice.
Ajax, allows you to call server side functions from the client. In a way, it
is like an IPC, because it allows the browser process on the client,
communicate with asp.net on the server. However, it is strictly limited to
this purpose. You couldn't use "remoting" instead.
Now that I think about it, and I hope I get corrected if I'm wrong, they
actually are quite similar, but serve entirely different goals.
Programming blog exploring Zig, Elixir, Go, Testing, Design and Performance
<needin4mation@ gmail.com> wrote in message
news:1127487395 .375834.122820@ g44g2000cwa.goo glegroups.com.. .[color=blue]
> What is .NET remoting versus Ajax? Any links are appreciated. I
> didn't find a straight forward answer. Thanks for any help.
>[/color]
Re: What's the difference between Remoting and AJAX?
you are mostly correct. AJAK is really a design pattern, where .net remoting
is an actual implementation library allowing .net componets to communicate
over the a network.
also there is an old asp technology called "remoting", that has been ported
to .net. this is an implementation of AJAX communication library.
-- bruce (sqlwork.com)
"Karl Seguin" <karl REMOVE @ REMOVE openmymind REMOVEMETOO . ANDME net>
wrote in message news:%23$eV5LFw FHA.1168@TK2MSF TNGP10.phx.gbl. ..[color=blue]
> They aren't at all the same thing, so you'll likely find no article that
> compares the two. .Net remoting is an interprocess communication (IPC),
> a way to processes to communicate with each other. It's similar to named
> sockets, or fifos or signals...howev er it's abstract and protocol
> independent (I think). Anyways as I understand it, it lets one .net
> application easily communicate with another. Think of it as a private and
> efficient webservice.
>
> Ajax, allows you to call server side functions from the client. In a way,
> it is like an IPC, because it allows the browser process on the client,
> communicate with asp.net on the server. However, it is strictly limited
> to this purpose. You couldn't use "remoting" instead.
>
> Now that I think about it, and I hope I get corrected if I'm wrong, they
> actually are quite similar, but serve entirely different goals.
>
> Karl
> --
> MY ASP.Net tutorials
> http://www.openmymind.net/
> <needin4mation@ gmail.com> wrote in message
> news:1127487395 .375834.122820@ g44g2000cwa.goo glegroups.com.. .[color=green]
>> What is .NET remoting versus Ajax? Any links are appreciated. I
>> didn't find a straight forward answer. Thanks for any help.
>>[/color]
>
>[/color]
Comment