Sharing a com port across a network

Posted: 06-23-2004, 02:22 PM
I've got a good one for ya. We're running a sign software on one machine
(machine A) that connects to a cutting machine via the COM port. This
machine is connected to another machine (machine B) by a crossover cable so
we can share files and hopefully cutting functions. The machine the cutter
is connected to (machine A) doesn't have the cutter installed as a printer
but rather the software actually looks for the connection at the com port
and loads the drivers upon being opened. Is there a way to share a com port
on machine A so I can tell my software on machine B that the cutter is
connected remotely?

Thanks for any insight you can provide.


Reply With Quote

Responses to "Sharing a com port across a network"

Peter R. Fletcher
Guest
Posts: n/a
 
Re: Sharing a com port across a network
Posted: 06-23-2004, 03:42 PM
COM Ports cannot be shared. You would need to create and run a program
on the machine with the COM port with which a remote machine could
communicate and to which the instructions for the cutting machine
could be transferred acoss the network.


On Wed, 23 Jun 2004 09:22:20 -0400, "Blankman" <none@microsoft.com>
wrote:
>I've got a good one for ya. We're running a sign software on one machine
>(machine A) that connects to a cutting machine via the COM port. This
>machine is connected to another machine (machine B) by a crossover cable so
>we can share files and hopefully cutting functions. The machine the cutter
>is connected to (machine A) doesn't have the cutter installed as a printer
>but rather the software actually looks for the connection at the com port
>and loads the drivers upon being opened. Is there a way to share a com port
>on machine A so I can tell my software on machine B that the cutter is
>connected remotely?
>
>Thanks for any insight you can provide.
>

Please respond to the Newsgroup, so that others may benefit from the exchange.
Peter R. Fletcher


----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption =---
Reply With Quote
Blankman
Guest
Posts: n/a
 
Re: Sharing a com port across a network
Posted: 06-23-2004, 03:56 PM
How would I create such a program?

"Peter R. Fletcher" <pfletch(at)fletchers(hyphen)uk.com> wrote in message
news:785jd0li1pkcppue4p49igrhkhp437pd2s@4ax.com...
> COM Ports cannot be shared. You would need to create and run a program
> on the machine with the COM port with which a remote machine could
> communicate and to which the instructions for the cutting machine
> could be transferred acoss the network.
>
>
> On Wed, 23 Jun 2004 09:22:20 -0400, "Blankman" <none@microsoft.com>
> wrote:
>
> >I've got a good one for ya. We're running a sign software on one machine
> >(machine A) that connects to a cutting machine via the COM port. This
> >machine is connected to another machine (machine B) by a crossover cable
so
> >we can share files and hopefully cutting functions. The machine the
cutter
> >is connected to (machine A) doesn't have the cutter installed as a
printer
> >but rather the software actually looks for the connection at the com port
> >and loads the drivers upon being opened. Is there a way to share a com
port
> >on machine A so I can tell my software on machine B that the cutter is
> >connected remotely?
> >
> >Thanks for any insight you can provide.
> >
>
>
> Please respond to the Newsgroup, so that others may benefit from the
exchange.
> Peter R. Fletcher
>
>
> ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet
News==----
> http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000
Newsgroups
> ---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption
=---


Reply With Quote
Peter R. Fletcher
Guest
Posts: n/a
 
Re: Sharing a com port across a network
Posted: 06-23-2004, 04:35 PM
In the computer language of your choice! It would not be a trivial
application.

Another approach would be to modify the original cutter driver
application to allow sequences of instructions to be written to a file
and subsequently read back in and sent to the cutter when needed.
Depending on exactly how the application works and is designed this
might not be quite such a big deal to code. With this approach, you
would run the application in "write to file mode" on the remote
machine, transfer the instruction file across the network to the
machine with the cutter attached, and then run the application in
"live mode" from the file.

I don't think that there is a solution to your problem that does not
require access to the source of the cutter driver application and a
substantial amount of programming.

On Wed, 23 Jun 2004 10:56:13 -0400, "Blankman" <none@microsoft.com>
wrote:
>How would I create such a program?
>
>"Peter R. Fletcher" <pfletch(at)fletchers(hyphen)uk.com> wrote in message
>news:785jd0li1pkcppue4p49igrhkhp437pd2s@4ax.com.. .
>> COM Ports cannot be shared. You would need to create and run a program
>> on the machine with the COM port with which a remote machine could
>> communicate and to which the instructions for the cutting machine
>> could be transferred acoss the network.
>>
>>
>> On Wed, 23 Jun 2004 09:22:20 -0400, "Blankman" <none@microsoft.com>
>> wrote:
>>
>> >I've got a good one for ya. We're running a sign software on one machine
>> >(machine A) that connects to a cutting machine via the COM port. This
>> >machine is connected to another machine (machine B) by a crossover cable
>so
>> >we can share files and hopefully cutting functions. The machine the
>cutter
>> >is connected to (machine A) doesn't have the cutter installed as a
>printer
>> >but rather the software actually looks for the connection at the com port
>> >and loads the drivers upon being opened. Is there a way to share a com
>port
>> >on machine A so I can tell my software on machine B that the cutter is
>> >connected remotely?
>> >
>> >Thanks for any insight you can provide.
>> >
>>
>>
>> Please respond to the Newsgroup, so that others may benefit from the
>exchange.
>> Peter R. Fletcher
>>
>>
>> ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet
>News==----
>> http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000
>Newsgroups
>> ---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption
>=---
>

Please respond to the Newsgroup, so that others may benefit from the exchange.
Peter R. Fletcher


----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption =---
Reply With Quote
Blankman
Guest
Posts: n/a
 
Re: Sharing a com port across a network
Posted: 06-23-2004, 05:52 PM
Well that's not what I wanted to hear.

Thanks for your help though!
Buster

"Peter R. Fletcher" <pfletch(at)fletchers(hyphen)uk.com> wrote in message
news:288jd0d6188laj9or2ca7tg4abct4dfdqn@4ax.com...
> In the computer language of your choice! It would not be a trivial
> application.
>
> Another approach would be to modify the original cutter driver
> application to allow sequences of instructions to be written to a file
> and subsequently read back in and sent to the cutter when needed.
> Depending on exactly how the application works and is designed this
> might not be quite such a big deal to code. With this approach, you
> would run the application in "write to file mode" on the remote
> machine, transfer the instruction file across the network to the
> machine with the cutter attached, and then run the application in
> "live mode" from the file.
>
> I don't think that there is a solution to your problem that does not
> require access to the source of the cutter driver application and a
> substantial amount of programming.
>
> On Wed, 23 Jun 2004 10:56:13 -0400, "Blankman" <none@microsoft.com>
> wrote:
>
> >How would I create such a program?
> >
> >"Peter R. Fletcher" <pfletch(at)fletchers(hyphen)uk.com> wrote in message
> >news:785jd0li1pkcppue4p49igrhkhp437pd2s@4ax.com.. .
> >> COM Ports cannot be shared. You would need to create and run a program
> >> on the machine with the COM port with which a remote machine could
> >> communicate and to which the instructions for the cutting machine
> >> could be transferred acoss the network.
> >>
> >>
> >> On Wed, 23 Jun 2004 09:22:20 -0400, "Blankman" <none@microsoft.com>
> >> wrote:
> >>
> >> >I've got a good one for ya. We're running a sign software on one
machine
> >> >(machine A) that connects to a cutting machine via the COM port. This
> >> >machine is connected to another machine (machine B) by a crossover
cable
> >so
> >> >we can share files and hopefully cutting functions. The machine the
> >cutter
> >> >is connected to (machine A) doesn't have the cutter installed as a
> >printer
> >> >but rather the software actually looks for the connection at the com
port
> >> >and loads the drivers upon being opened. Is there a way to share a com
> >port
> >> >on machine A so I can tell my software on machine B that the cutter is
> >> >connected remotely?
> >> >
> >> >Thanks for any insight you can provide.
> >> >
> >>
> >>
> >> Please respond to the Newsgroup, so that others may benefit from the
> >exchange.
> >> Peter R. Fletcher
> >>
> >>
> >> ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet
> >News==----
> >> http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000
> >Newsgroups
> >> ---= 19 East/West-Coast Specialized Servers - Total Privacy via
Encryption
> >=---
> >
>
>
> Please respond to the Newsgroup, so that others may benefit from the
exchange.
> Peter R. Fletcher
>
>
> ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet
News==----
> http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000
Newsgroups
> ---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption
=---


Reply With Quote
Si Ballenger
Guest
Posts: n/a
 
Re: Sharing a com port across a network
Posted: 06-24-2004, 04:32 AM
On Wed, 23 Jun 2004 11:52:43 -0500, "Blankman"
<none@microsoft.com> wrote:
>Well that's not what I wanted to hear.
>
>Thanks for your help though!
>Buster
Do a google search. The below might be of interest. You might try
mapping the appropriate drives on the computers, but not quite
sure what you are wanting to do.

http://www.traversix.com/ConnectivitySystem.html

Reply With Quote
Si Ballenger
Guest
Posts: n/a
 
Re: Sharing a com port across a network
Posted: 06-24-2004, 04:14 AM
On Wed, 23 Jun 2004 16:35:20 +0100, Peter R. Fletcher
<pfletch(at)fletchers(hyphen)uk.com> wrote:
>In the computer language of your choice! It would not be a trivial
>application.
AKA... I don't have a clue! ;-)
Reply With Quote
Peter R. Fletcher
Guest
Posts: n/a
 
Re: Sharing a com port across a network
Posted: 06-24-2004, 07:43 AM
On Thu, 24 Jun 2004 03:14:26 GMT, shb*NO*SPAM*@comporium.net (Si
Ballenger) wrote:
>On Wed, 23 Jun 2004 16:35:20 +0100, Peter R. Fletcher
><pfletch(at)fletchers(hyphen)uk.com> wrote:
>
>>In the computer language of your choice! It would not be a trivial
>>application.
>
>AKA... I don't have a clue! ;-)
On the contrary! I have written low-level drivers for various bits of
hardware under a number of OSes in the past. It could be done, but I
didn't think that this approach was likely to be helpful to the OP,
hence my offhand answer.

Please respond to the Newsgroup, so that others may benefit from the exchange.
Peter R. Fletcher


----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption =---
Reply With Quote
Yves Leclerc
Guest
Posts: n/a
 
Re: Sharing a com port across a network
Posted: 06-25-2004, 04:24 PM
There are network enabled devices which place a COM port directly on the
network. Using a Windows device drive will "map" the networked COM port to
a "virtual" COM port.

Check out one such product:

http://www.lavalink.com/products/eth...-232_db-9.html


"Blankman" <none@microsoft.com> wrote in message
news:%23DFmeUSWEHA.212@TK2MSFTNGP12.phx.gbl...
> I've got a good one for ya. We're running a sign software on one machine
> (machine A) that connects to a cutting machine via the COM port. This
> machine is connected to another machine (machine B) by a crossover cable
so
> we can share files and hopefully cutting functions. The machine the cutter
> is connected to (machine A) doesn't have the cutter installed as a printer
> but rather the software actually looks for the connection at the com port
> and loads the drivers upon being opened. Is there a way to share a com
port
> on machine A so I can tell my software on machine B that the cutter is
> connected remotely?
>
> Thanks for any insight you can provide.
>
>

Reply With Quote
 
LinkBack Thread Tools Display Modes
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


Similar Threads
Thread Thread Starter Forum Replies Last Post
network and sharing center vista cannot turn on media sharing HD Windows Vista Networking & Sharing 2 06-14-2008 08:51 PM
MEDIA SHARING IN NETWORK AND SHARING WONT SHOW A GREEN LIGHT John Brutovsky Windows Vista Networking & Sharing 0 04-01-2007 07:08 PM
Serial Port Sharing - SpaceBall Ryan Miller Windows XP Work Remotely 3 05-29-2004 03:36 AM
RDP COM port sharing Isaac Martinez Windows XP Work Remotely 2 01-07-2004 06:10 PM
XP Home Network - print sharing is fine, but file sharing has disappeared Katy Pearce Windows XP Network & Web 0 09-09-2003 02:58 PM