Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

C++ talking to Unix

Status
Not open for further replies.

scecilia

Programmer
Jul 8, 2002
35
US
Hello,

How can I make a C++ program running on Windows 2000 read data (read from a file for example) located in a Unix system?

Any help will be greatly appreciated.

Thanks.
 
you can use
TCP, FTP, HTTP, SOAP, RPC, CORBA as well as some other protocols like UDP, IPX. I'd say you to use one of RPC, CORBA or SOAP, or at least HTTP. You can use TCP directly, if the functionality of your applications would be small.



Ion Filipski
1c.bmp

ICQ: 95034075
AIM: IonFilipski
filipski@excite.com
 
Thank you Ion. Are there any examples you can point me to to achieve this?

--Cecilia.
 
When I first started at my current job a few years back, we had a tool that mapped unix drives on our system. I forget what it was, but I know it exists. That could be another solution. The big thing to look out for is the endianism of the data you will be transfering. You may need to perform some byteswapping on the data.

Matt
 
Try using Samba on Unix. I think that is what Zyrenthian is referring to.

Corba: a lot of the packages tend to be Java based. There are some which are is C++ based, free, with source code provided. Examples: try TAO or Engine room Corba, possibly even early versions of Visibroker from the Borland museum. I don't know if these are still free.

 
Hi,
Many of tutorials and samples are easy to use and/or to understand. Do a simple search in google and you'll find a lot of them.

Ion Filipski
1c.bmp

ICQ: 95034075
AIM: IonFilipski
filipski@excite.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top