How to port a TCP based Java application to C# ?

G

Guest

Hi,

1. i can't use .net remoting because the new .net ported app have to
communicate with the java app. (so i have to use sockets and TCPListener ? )
2. does the JLCA (java to c# convertor) does all the work for me ?

Thanks.
 
Y

Yunus Emre ALPÖZEN [MCSD.NET]

my advice u to use xml webservices for the communicaton between different
platforms. Your needs can change in time, and web services has an extensible
structure which will help u to extend it easily...

--
HTH

Thanks,
Yunus Emre ALPÖZEN
BSc, MCSD.NET
 
G

Guest

Hi Yunus,

the java and .net clients are high performance application so i can't use
abstraction layers and soap based protocols, so i think web services will not
give me high performance.

i just need to port an existing java application which use TCP sockets to
it's .net equivalent.

Thanks.
 
P

Peter Bromberg [C# MVP]

No, the JLCA won't "do all the work" for you, but it should still get you to
"first base". The easiest way to find out what you are up against is to run
it and examine what you've got to work with.
Peter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top