473,795 Members | 3,167 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.Sock ets 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 2457
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.co m> wrote in message
news:u2******** ******@TK2MSFTN GP12.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.Sock ets 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.mach in AT dot.state.fl.us > wrote
in message news:uc******** ******@tk2msftn gp13.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.co m> wrote in message
news:u2******** ******@TK2MSFTN GP12.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.Sock ets 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.co m> wrote in message
news:%2******** ********@TK2MSF TNGP10.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.mach in AT dot.state.fl.us >
wrote in message news:uc******** ******@tk2msftn gp13.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.co m> wrote in message
news:u2******** ******@TK2MSFTN GP12.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.Sock ets 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.co m> wrote in message
news:%2******** ********@TK2MSF TNGP10.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.mach in AT dot.state.fl.us >
wrote
| in message news:uc******** ******@tk2msftn gp13.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.co m> wrote in message
| > news:u2******** ******@TK2MSFTN GP12.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.Sock ets 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******** ******@TK2MSFTN GP10.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.co m> wrote in message
news:%2******** ********@TK2MSF TNGP10.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.mach in AT dot.state.fl.us >
wrote
| in message news:uc******** ******@tk2msftn gp13.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.co m> wrote in message
| > news:u2******** ******@TK2MSFTN GP12.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.Sock ets 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.co m> wrote in message
news:e6******** ******@TK2MSFTN GP09.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******** ******@TK2MSFTN GP10.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.co m> wrote in message
news:%2******** ********@TK2MSF TNGP10.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.mach in AT dot.state.fl.us >
wrote
| in message news:uc******** ******@tk2msftn gp13.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.co m> wrote in message
| > news:u2******** ******@TK2MSFTN GP12.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.Sock ets 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
9541
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 the google and it seems I have to build in multibyte support for php and mysql. Mbstring (http://us3.php.net/mbstring) claims to support multiple languages with a caution saying it might not work properly. After further research it seems unicode...
10
3178
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 Question ----------- I am looking for a list of popular compilers and/or platforms that *do not* support native C++ exceptions. Any pointers in this
5
3493
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 good tech support?? Thanks in advance for any input. Shaun
5
3316
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 available skillsets, software vendor support, and customer/tech support. I will be facing a decision on migrating our SAP Informix database to either Oracle, DB2UDB, or Sqlserver. I don't think we are going to SqlServer. I have some Oracle...
4
1558
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 http://support.microsoft.com/ph/1249 ..Net Compact Framework Support Site
7
4309
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 OSFeature.Feature.IsPresent(OSFeature.Themes) Then System.Windows.Forms.Application.EnableVisualStyles() End If Application.DoEvents() 'This must be here, otherwise buttons won't stylize System.Windows.Forms.Application.Run(New Form1) End Sub...
1
3867
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 support center for 2K3 and 2K3 R2(http://support.microsoft.com/lifecycle/?p1=3198 and http://support.microsoft.com/lifecycle/?p1=10394 ) but it is unclear to me exactly when mainstream support ends. Both say 'Mainstream support will end two years...
1
2163
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
3185
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. --> I assume "libraries" here to mean DLL's. If that's the case, is there any way to supply both ends of a service (client and host) with the code for the class that describes the contact WITHOUT a duplication in source code? Thanks.
0
9672
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9519
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10213
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10163
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10000
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7538
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5563
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4113
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2920
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 can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.