473,513 Members | 2,263 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

X.25 support?

Hi all,

I need to receive and connect using X25 protocol in .Net Framework 2.0 and
I'm trying to find the correct address and protocol enumeration in
System.Net.Sockets but with no success.
Is there a way to do it? Or I need some 3rd party libraries.

Any help will be apreciated.
TIA,

--
Andre

Feb 24 '06 #1
6 2424
Hi,

X25 ??

Where r u man, it's a very old protocol not longer used .
You cannot use TCP, as a matter of fact it's a completely different
communication format.

There is no support for it in the framework, and I believe it will very hard
to find a card that support X25 that runs on a current computer (I may be
wrong on this though) the alst X.25 card I saw was in Cuba and it was a HUGE
ISA card.
--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation

"Andre Azevedo" <xp**@xpto.com> wrote in message
news:u2**************@TK2MSFTNGP12.phx.gbl...
Hi all,

I need to receive and connect using X25 protocol in .Net Framework 2.0 and
I'm trying to find the correct address and protocol enumeration in
System.Net.Sockets but with no success.
Is there a way to do it? Or I need some 3rd party libraries.

Any help will be apreciated.
TIA,

--
Andre

Feb 24 '06 #2
Hi Mr Machin,

I'm in Brazil and most bank communication uses X25.
My plan B is using some TCP/X25 Gateway.

Thanks,

--
Andre

"Ignacio Machin ( .NET/ C# MVP )" <ignacio.machin AT dot.state.fl.us> wrote
in message news:uc**************@tk2msftngp13.phx.gbl...
Hi,

X25 ??

Where r u man, it's a very old protocol not longer used .
You cannot use TCP, as a matter of fact it's a completely different
communication format.

There is no support for it in the framework, and I believe it will very
hard to find a card that support X25 that runs on a current computer (I
may be wrong on this though) the alst X.25 card I saw was in Cuba and it
was a HUGE ISA card.
--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation

"Andre Azevedo" <xp**@xpto.com> wrote in message
news:u2**************@TK2MSFTNGP12.phx.gbl...
Hi all,

I need to receive and connect using X25 protocol in .Net Framework 2.0
and I'm trying to find the correct address and protocol enumeration in
System.Net.Sockets but with no success.
Is there a way to do it? Or I need some 3rd party libraries.

Any help will be apreciated.
TIA,

--
Andre


Feb 24 '06 #3
Hi,
Note that TCP over X25 is a transpotrt encapsulation, so your program should
need do nothing about that.

No idea if X25 can be used from .NET , as I said before you needed a special
card (modem) to connect to the X25 network
You need to check with the manufacturer of that card.
--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation

"Andre Azevedo" <xp**@xpto.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
Hi Mr Machin,

I'm in Brazil and most bank communication uses X25.
My plan B is using some TCP/X25 Gateway.

Thanks,

--
Andre

"Ignacio Machin ( .NET/ C# MVP )" <ignacio.machin AT dot.state.fl.us>
wrote in message news:uc**************@tk2msftngp13.phx.gbl...
Hi,

X25 ??

Where r u man, it's a very old protocol not longer used .
You cannot use TCP, as a matter of fact it's a completely different
communication format.

There is no support for it in the framework, and I believe it will very
hard to find a card that support X25 that runs on a current computer (I
may be wrong on this though) the alst X.25 card I saw was in Cuba and it
was a HUGE ISA card.
--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation

"Andre Azevedo" <xp**@xpto.com> wrote in message
news:u2**************@TK2MSFTNGP12.phx.gbl...
Hi all,

I need to receive and connect using X25 protocol in .Net Framework 2.0
and I'm trying to find the correct address and protocol enumeration in
System.Net.Sockets but with no success.
Is there a way to do it? Or I need some 3rd party libraries.

Any help will be apreciated.
TIA,

--
Andre



Feb 24 '06 #4
Plan B should be your plan A :-).
You can use the socket class to bind a TCP socket to an X25 end-point, all
you need is an X25 PC card that support TCP (Winsock) over X25 and you are
done.
Another option is to use a TCP-X25 gateway (mostly load balanced hosting
servers), this is what's been used in most financial institutions here in
europe.

Willy.
"Andre Azevedo" <xp**@xpto.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
| Hi Mr Machin,
|
| I'm in Brazil and most bank communication uses X25.
| My plan B is using some TCP/X25 Gateway.
|
| Thanks,
|
| --
| Andre
|
| "Ignacio Machin ( .NET/ C# MVP )" <ignacio.machin AT dot.state.fl.us>
wrote
| in message news:uc**************@tk2msftngp13.phx.gbl...
| > Hi,
| >
| > X25 ??
| >
| > Where r u man, it's a very old protocol not longer used .
| > You cannot use TCP, as a matter of fact it's a completely different
| > communication format.
| >
| > There is no support for it in the framework, and I believe it will very
| > hard to find a card that support X25 that runs on a current computer (I
| > may be wrong on this though) the alst X.25 card I saw was in Cuba and it
| > was a HUGE ISA card.
| >
| >
| > --
| > Ignacio Machin,
| > ignacio.machin AT dot.state.fl.us
| > Florida Department Of Transportation
| >
| > "Andre Azevedo" <xp**@xpto.com> wrote in message
| > news:u2**************@TK2MSFTNGP12.phx.gbl...
| >> Hi all,
| >>
| >> I need to receive and connect using X25 protocol in .Net Framework 2.0
| >> and I'm trying to find the correct address and protocol enumeration in
| >> System.Net.Sockets but with no success.
| >> Is there a way to do it? Or I need some 3rd party libraries.
| >>
| >> Any help will be apreciated.
| >> TIA,
| >>
| >> --
| >> Andre
| >>
| >>
| >>
| >
| >
|
|
Feb 25 '06 #5
Hi Mr Denoyette,

The scenario it's the same here. Thanks!
Can you help about some questions?

In both cases you describe all the communications is made with stream/tcp
connection, right?

So, if I use a X25 pc card that support TCP over X25 the card software will
create some kind of X25 host server and all my tcp communication is made
through it. If I have more than 1 virtual link with this card, the host will
split in different port numbers? or different IP numbers?

In the case of using a Gateway, afaik, the server will do the conversation
of 2 kind of networks and probably the software take care of X25 Cards
(which in fact it's the same scenario of item 1). Is this right?

Thanks in advance,

--
Andre

"Willy Denoyette [MVP]" <wi*************@telenet.be> wrote in message
news:OC**************@TK2MSFTNGP10.phx.gbl...
Plan B should be your plan A :-).
You can use the socket class to bind a TCP socket to an X25 end-point, all
you need is an X25 PC card that support TCP (Winsock) over X25 and you are
done.
Another option is to use a TCP-X25 gateway (mostly load balanced hosting
servers), this is what's been used in most financial institutions here in
europe.

Willy.
"Andre Azevedo" <xp**@xpto.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
| Hi Mr Machin,
|
| I'm in Brazil and most bank communication uses X25.
| My plan B is using some TCP/X25 Gateway.
|
| Thanks,
|
| --
| Andre
|
| "Ignacio Machin ( .NET/ C# MVP )" <ignacio.machin AT dot.state.fl.us>
wrote
| in message news:uc**************@tk2msftngp13.phx.gbl...
| > Hi,
| >
| > X25 ??
| >
| > Where r u man, it's a very old protocol not longer used .
| > You cannot use TCP, as a matter of fact it's a completely different
| > communication format.
| >
| > There is no support for it in the framework, and I believe it will
very
| > hard to find a card that support X25 that runs on a current computer
(I
| > may be wrong on this though) the alst X.25 card I saw was in Cuba and
it
| > was a HUGE ISA card.
| >
| >
| > --
| > Ignacio Machin,
| > ignacio.machin AT dot.state.fl.us
| > Florida Department Of Transportation
| >
| > "Andre Azevedo" <xp**@xpto.com> wrote in message
| > news:u2**************@TK2MSFTNGP12.phx.gbl...
| >> Hi all,
| >>
| >> I need to receive and connect using X25 protocol in .Net Framework
2.0
| >> and I'm trying to find the correct address and protocol enumeration
in
| >> System.Net.Sockets but with no success.
| >> Is there a way to do it? Or I need some 3rd party libraries.
| >>
| >> Any help will be apreciated.
| >> TIA,
| >>
| >> --
| >> Andre
| >>
| >>
| >>
| >
| >
|
|

Feb 25 '06 #6

"Andre Azevedo" <xp**@xpto.com> wrote in message
news:e6**************@TK2MSFTNGP09.phx.gbl...
Hi Mr Denoyette,

The scenario it's the same here. Thanks!
Can you help about some questions?

In both cases you describe all the communications is made with stream/tcp
connection, right?

So, if I use a X25 pc card that support TCP over X25 the card software
will create some kind of X25 host server and all my tcp communication is
made through it. If I have more than 1 virtual link with this card, the
host will split in different port numbers? or different IP numbers?

It depends on the type of card, basically you get a single physical X25 port
and IP address and a TCP/UDP port per virtual channel (X25) for the cheapest
solutions. More expensive cards can support multiple X25 ports and IP
addresses with again multiple ports per VC. All configuration settings like
IP/X25 address and VC/port mapping is done by software, all cards I know do
support RAS dialing and PPP.
In the case of using a Gateway, afaik, the server will do the conversation
of 2 kind of networks and probably the software take care of X25 Cards
(which in fact it's the same scenario of item 1). Is this right?

Same as above because these hosting Gateway servers are equiped with the
same PC cards supporting load balancing options and failover facilities
(multi-hosted). This is a quite expensive solution, but for a financial org.
this should not be an issue.

Willy.
Thanks in advance,

--
Andre

"Willy Denoyette [MVP]" <wi*************@telenet.be> wrote in message
news:OC**************@TK2MSFTNGP10.phx.gbl...
Plan B should be your plan A :-).
You can use the socket class to bind a TCP socket to an X25 end-point,
all
you need is an X25 PC card that support TCP (Winsock) over X25 and you
are
done.
Another option is to use a TCP-X25 gateway (mostly load balanced hosting
servers), this is what's been used in most financial institutions here in
europe.

Willy.
"Andre Azevedo" <xp**@xpto.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
| Hi Mr Machin,
|
| I'm in Brazil and most bank communication uses X25.
| My plan B is using some TCP/X25 Gateway.
|
| Thanks,
|
| --
| Andre
|
| "Ignacio Machin ( .NET/ C# MVP )" <ignacio.machin AT dot.state.fl.us>
wrote
| in message news:uc**************@tk2msftngp13.phx.gbl...
| > Hi,
| >
| > X25 ??
| >
| > Where r u man, it's a very old protocol not longer used .
| > You cannot use TCP, as a matter of fact it's a completely different
| > communication format.
| >
| > There is no support for it in the framework, and I believe it will
very
| > hard to find a card that support X25 that runs on a current computer
(I
| > may be wrong on this though) the alst X.25 card I saw was in Cuba and
it
| > was a HUGE ISA card.
| >
| >
| > --
| > Ignacio Machin,
| > ignacio.machin AT dot.state.fl.us
| > Florida Department Of Transportation
| >
| > "Andre Azevedo" <xp**@xpto.com> wrote in message
| > news:u2**************@TK2MSFTNGP12.phx.gbl...
| >> Hi all,
| >>
| >> I need to receive and connect using X25 protocol in .Net Framework
2.0
| >> and I'm trying to find the correct address and protocol enumeration
in
| >> System.Net.Sockets but with no success.
| >> Is there a way to do it? Or I need some 3rd party libraries.
| >>
| >> Any help will be apreciated.
| >> TIA,
| >>
| >> --
| >> Andre
| >>
| >>
| >>
| >
| >
|
|



Feb 25 '06 #7

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

Similar topics

4
9513
by: Aditya Ivaturi | last post by:
We have a CMS which is written is based on php & mysql. Recently we received a request to support multiple languages so that sites in that particular laguage can be created. I did some search on...
10
3127
by: Bill Davidson | last post by:
Hi there, Please forgive me for posting this article on multiple groups. Being new in the newsgroups, I was not sure which group would have been appropriate for my question. Sorry. My...
5
3478
by: shaun.mostashari | last post by:
Hello all, I am working on a trade study and one of the criterias is how easy it is to get DB2 technical support from IBM. I appreciate if you guys share your experience with me. Does DB2 have a...
5
3288
by: NormaJean Sebastian via DBMonster.com | last post by:
Hi, I almost read all of the "DB2 vs Oracle" thread... The summary I got from that was all databases essentially do the same things, the decision of which one you use primarily depends on...
4
1543
by: Juan T. Llibre | last post by:
ASP.NET 1.0 Support Home http://support.microsoft.com/ph/6350 ASP.NET 1.1 Support Home http://support.microsoft.com/ph/6351 ..Net Framework 1.1 Support Site...
7
4296
by: Terry Olsen | last post by:
I paste the following code into each project to get XP theme support. 'Add this at the beginning of any program to enable Windows XP Visual Styles <System.STAThread()> Public Shared Sub Main() If...
1
3838
by: =?Utf-8?B?QW5kZXJ3IE1pbGxlcg==?= | last post by:
Apologies for posting in this forum, I don't see a more appropriate group... I'm trying to understand the timeline for Window 2003 ending mainstream support. I have consulted the MS lifecycle...
1
2151
by: =?Utf-8?B?QmlsbHkgWmhhbmc=?= | last post by:
I have a web server 32 bit and SQL server 2005 64bit . Does msdtc support SQL server 2005 64bit with web server 32 bit?
8
3143
by: Bill McCormick | last post by:
<!-- When deploying the service library project, the content of the config file must be added to the host's app.config file. System.Configuration does not support config files for libraries. --> ...
0
7265
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7388
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7547
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...
1
7114
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
5693
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
3240
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3230
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
807
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
461
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.