473,386 Members | 1,726 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Sockets

How do I send an object from one computer to another?

--
I am a 14 year old C# developer, I am completely self taught, so please
don't get mad if I ask a stupid question. Thanks.
Nov 16 '05 #1
7 2276
Welcome to the world of distributed programming - theres a whole new world of things you have to think abouit. The first one here is what do you want to happen when you pass this object when the recipient calls it? Do you want the call to come back to the sender or do you want the call to stay on teh remote machine?

Regards

Richard Blewett - DevelopMentor
http://www.dotnetconsult.co.uk/weblog
http://www.dotnetconsult.co.uk

How do I send an object from one computer to another?

--
I am a 14 year old C# developer, I am completely self taught, so please
don't get mad if I ask a stupid question. Thanks.

Nov 16 '05 #2
Well if you just want the public fields of an object (say a class is an
abstract db record) then you can just use XmlSerializer to serialize the
class to an xml string. Now that you have the string you can easily get the
bytes using Encoding.UTF8.GetBytes(), etc. Now you have the bytes, you can
send in a UDP datagram or send via TCP stream. If using TCP, you probably
want to append a len ushort to the byte[]. Then the receive side will read
the first two bytes, convert to a ushort and then read that many bytes to
know it got all the bytes. Then close or wait for more data. The receiver
will also convert the bytes back to a string, and deserialize string to an
object. Both sides need to know what "object" looks like, so you can
include the same class code at both sides. One way to do that is create a
shared dll. This dll may be nothing more then all the "shared" objects or
data tranfer objects (DTOs). In a sense, I guess the class defines the
shared schema or contract of what both sides expect to send and receive in
terms of object data. Like Richard said, this is a big topic with various
ways to go and can get complex. Today, you have many techs to choose from
to do this. You have WSE, web services, Remoting, and native sockets using
your own "wire" protocol (and others). Using xml over sockets is probably a
good way to start as you get a handle on it from ground up, and get a feel
for why and how the others work the way they do. The other techs are
variations on their own xml over socket technologies. Remoting does not use
xml, but you could think of it as its own propriatary binary markup
language. All of them output byte[] of some kind that must be sent over a
udp or tcp socket. Indigo will be MSs next version of xml over sockets that
will combine ~all the others into one api set.

--
William Stacey, MVP
http://mvp.support.microsoft.com

"Bill English" <nu****@comcast.net> wrote in message
news:CB**********************************@microsof t.com...
How do I send an object from one computer to another?

--
I am a 14 year old C# developer, I am completely self taught, so please
don't get mad if I ask a stupid question. Thanks.


Nov 16 '05 #3
The class I want to send is already on both computers, however, I just want
to know how to Asyncronously send an instance of the class back and forth
from computer to computer.

"William Stacey [MVP]" wrote:
Well if you just want the public fields of an object (say a class is an
abstract db record) then you can just use XmlSerializer to serialize the
class to an xml string. Now that you have the string you can easily get the
bytes using Encoding.UTF8.GetBytes(), etc. Now you have the bytes, you can
send in a UDP datagram or send via TCP stream. If using TCP, you probably
want to append a len ushort to the byte[]. Then the receive side will read
the first two bytes, convert to a ushort and then read that many bytes to
know it got all the bytes. Then close or wait for more data. The receiver
will also convert the bytes back to a string, and deserialize string to an
object. Both sides need to know what "object" looks like, so you can
include the same class code at both sides. One way to do that is create a
shared dll. This dll may be nothing more then all the "shared" objects or
data tranfer objects (DTOs). In a sense, I guess the class defines the
shared schema or contract of what both sides expect to send and receive in
terms of object data. Like Richard said, this is a big topic with various
ways to go and can get complex. Today, you have many techs to choose from
to do this. You have WSE, web services, Remoting, and native sockets using
your own "wire" protocol (and others). Using xml over sockets is probably a
good way to start as you get a handle on it from ground up, and get a feel
for why and how the others work the way they do. The other techs are
variations on their own xml over socket technologies. Remoting does not use
xml, but you could think of it as its own propriatary binary markup
language. All of them output byte[] of some kind that must be sent over a
udp or tcp socket. Indigo will be MSs next version of xml over sockets that
will combine ~all the others into one api set.

--
William Stacey, MVP
http://mvp.support.microsoft.com

"Bill English" <nu****@comcast.net> wrote in message
news:CB**********************************@microsof t.com...
How do I send an object from one computer to another?

--
I am a 14 year old C# developer, I am completely self taught, so please
don't get mad if I ask a stupid question. Thanks.


Nov 16 '05 #4
Is this a peer to peer application then?

if it is client to client then some issues of scaleability don't come into play.

Regards

Richard Blewett - DevelopMentor
http://www.dotnetconsult.co.uk/weblog
http://www.dotnetconsult.co.uk
Nov 16 '05 #5
I just told you one way. You can use Remoting or sockets. As you talked
about sockets, I told you how to use XmlSerializer to do it. I assume you
know how to send bytes, so all you need to convert your class instance into
bytes using xmlserializer and an Encoding to convert the string to bytes.
Check the XmlSerializer doco. It is really helpful. If you have specific
questions, please reply.

--
William Stacey, MVP
http://mvp.support.microsoft.com

"Bill English" <nu****@comcast.net> wrote in message
news:0E**********************************@microsof t.com...
The class I want to send is already on both computers, however, I just want to know how to Asyncronously send an instance of the class back and forth
from computer to computer.

"William Stacey [MVP]" wrote:
Well if you just want the public fields of an object (say a class is an
abstract db record) then you can just use XmlSerializer to serialize the
class to an xml string. Now that you have the string you can easily get the bytes using Encoding.UTF8.GetBytes(), etc. Now you have the bytes, you can send in a UDP datagram or send via TCP stream. If using TCP, you probably want to append a len ushort to the byte[]. Then the receive side will read the first two bytes, convert to a ushort and then read that many bytes to know it got all the bytes. Then close or wait for more data. The receiver will also convert the bytes back to a string, and deserialize string to an object. Both sides need to know what "object" looks like, so you can
include the same class code at both sides. One way to do that is create a shared dll. This dll may be nothing more then all the "shared" objects or data tranfer objects (DTOs). In a sense, I guess the class defines the
shared schema or contract of what both sides expect to send and receive in terms of object data. Like Richard said, this is a big topic with various ways to go and can get complex. Today, you have many techs to choose from to do this. You have WSE, web services, Remoting, and native sockets using your own "wire" protocol (and others). Using xml over sockets is probably a good way to start as you get a handle on it from ground up, and get a feel for why and how the others work the way they do. The other techs are
variations on their own xml over socket technologies. Remoting does not use xml, but you could think of it as its own propriatary binary markup
language. All of them output byte[] of some kind that must be sent over a udp or tcp socket. Indigo will be MSs next version of xml over sockets that will combine ~all the others into one api set.

--
William Stacey, MVP
http://mvp.support.microsoft.com

"Bill English" <nu****@comcast.net> wrote in message
news:CB**********************************@microsof t.com...
How do I send an object from one computer to another?

--
I am a 14 year old C# developer, I am completely self taught, so please don't get mad if I ask a stupid question. Thanks.



Nov 16 '05 #6

"Bill English" <nu****@comcast.net> wrote in message
news:CB**********************************@microsof t.com...
How do I send an object from one computer to another?

--
I am a 14 year old C# developer, I am completely self taught, so please
don't get mad if I ask a stupid question. Thanks.

Nov 16 '05 #7
..Net remoting is a good place to start. I would start your research there.
If you go this way, you may also want to try copying your object from one
application to another first. Many of the same skills are required and you
wont have to hassle with two machines at first.

More information:

I always find it helpful to think of networking in terms of the layering of
increasing complex protocols. You need to make sure that your communication
is established properly at the lower levels before moving to the higher
levels. The first thing you need is a physical connection between the two
machines (like a network cable). Then you need a way to pass generic
information between machines like tcp/ip. Then you will want to layer more
complex protocols on top of this to accomplish your task. The complexity of
each layer has resource and performance costs that need to be weighed
against available resources and performance requirements. Lower level
protocols will most likely be faster, less resource intensive, and more
versatile, but require more effort to implement and are harder to read when
revisited.

That being said it is important to understand your problem space. You want
to send an object from one computer to another. However, you are really not
sending an object from one computer to another. You are making a copy of an
object from one computer on another computer. If you have the class
definition on both machines then you can create an object instance on both
machines. Then you need to transmit the state of the source object from one
machine to the other and update the state of the destination object with
that state information. You will need to take your source object and
serialize its state into a data stream. You are basically packaging it in a
compact form for transmission across the wire. When it goes across the wire
you will then want to reassemble it into a usable form, i.e. your object.
You would have to perform a similar operation even communicating from one
program to another. Obviously you wouldn't be sending object state across
machine boundaries, but you would be sending it across process boundaries.

There are technologies that perform this type of action in one form or
another depending on the needs of the application and the environment in
which your objects will communicate. .Net remoting is one of those
technologies. It provides you the ability to work on a copy of an object or
to appear to act on one object from different machines by updating the
original when the copy is acted on. There are a lot of problems inherent in
working on remote objects as if they were local. It is appropriate in
certain situations especially if you are in control of all aspects of the
system in which the objects are contained and there are not a ton of users
accessing the object. However, if the system is more spread out and the
environment not so controlled you may want to work with copies or consider
other alternatives. An evolving school of thought is Service Orientation or
SOA (Service Oriented Applications)

"Bill English" <nu****@comcast.net> wrote in message
news:CB**********************************@microsof t.com...
How do I send an object from one computer to another?

--
I am a 14 year old C# developer, I am completely self taught, so please
don't get mad if I ask a stupid question. Thanks.

Nov 16 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Tero Saarni | last post by:
Hi, I have several threads communicating with each other using events stored in Queues. Threads block on Queue.get() until somebody publishes an event in thread's event queue. I need to add...
1
by: Dmitry Akselrod | last post by:
Hello everyone, I have a vb.net application that wraps the TCPListener object in a class. The server connects to the local interface and establishes itself on port 9900. It then polls for...
0
by: mrpolitics | last post by:
So I'm working with PureIRCD (http://sourceforge.net/projects/pure-ircd) and everything was fine untill yesterday when the server crashed. So I did a cold restart and staretd the server back up...
3
by: Logan McKinley | last post by:
I have a C# program that uses blocking sockets and want to allow the user to stop the server. The problem I am having is the socket blocks on...
1
by: Adam Clauss | last post by:
I am (attempting) to move an existing socket application to use raw sockets. Right now, my application is essentially a port forwarder. Upon receiving a connection, it will open a connection to...
4
by: BadOmen | last post by:
Hi, What is the different between 'System.Net.Sockets.Socket' and 'System.Net.Sockets.TcpClient'? When do I use System.Net.Sockets.TcpClient and System.Net.Sockets.Socket?? Yours, Jonas
3
by: Michael Maercker | last post by:
hi! i'm really not into networking at all and have now been asigned the task of porting a vb6-code into vb.net (compact framework, in this case) and the code uses the winsock-control. i quickly...
3
by: J C | last post by:
Hi, I'm using UDPClient to make a simple DNS server. I notice that intermittently and unpredictibly I get: Unhandled Exception: System.Net.Sockets.SocketException: An existing connection...
7
by: Adam01 | last post by:
Im using cygwin to test the code of a server I am writing. I've included sys/types.h, sys/socket.h, netdb.h, and arpa/inet.h. And this is the output.. ../../../sockets.cpp: In constructor...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.