Please advice technology

  • Thread starter Thread starter Jesper, Denmark
  • Start date Start date
J

Jesper, Denmark

Hi
I would like to write 2 applications. 1st app sends arguments across network
to 2nd app that returns a result, just as you would if it was within same
application.
The argument sent could be some kind of struct e.g.

What technology should I learn/ apply for being able to do this? SOAP?

regards
JEsper
 
Jesper said:
I would like to write 2 applications. 1st app sends arguments across
network
to 2nd app that returns a result, just as you would if it was within same
application.
The argument sent could be some kind of struct e.g.

What technology should I learn/ apply for being able to do this? SOAP?

Since you are asking in a .Net programming group, I assume that you have
..Net on both ends. You may wish to use Windows Communication Foundation
(WCF) which will let you select various communication options (including
SOAP) from a single source code by means of configuration files.
 
Hi
I would like to write 2 applications. 1st app sends arguments across network
to 2nd app that returns a result, just as you would if it was within same
application.
The argument sent could be some kind of struct e.g.

What technology should I learn/ apply for being able to do this? SOAP?

regards
JEsper

I think you can use web services in this case...

Alcides.
http://alsql.blogspot.com.
 
Jesper said:
I would like to write 2 applications. 1st app sends arguments across network
to 2nd app that returns a result, just as you would if it was within same
application.
The argument sent could be some kind of struct e.g.

What technology should I learn/ apply for being able to do this? SOAP?

If both ends are in .NET and you expect them to stay that way, then
remoting is more efficient than SOAP/HTTP.

(or WCF with endpoint binding="netTcpBinding" and
binding="NetNamedPipeBinding" which I think is doing
approx. the same)

Arne
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top