Pergunta

I have a .net application in c# which receives a byte array and I need to send it to a Java Program as an argument, which is the best way to do it?

NOTE: Its all in the same server.

Foi útil?

Solução

Start a Process and redirect the input stream

Outras dicas

Send it over the Looback address (127.0.0.1) via sockets (C# & Java). If it's just a simple byte[], then this will be VERY simple on both ends.

With this, both the C# and Java applications can continue their process without interuption.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top