Migrating data from a java application in C #

I need to pass an array of bytes from my java application to a C # application. One option is to simply save it to a file, but it is not so secure. I was thinking maybe there is a way to use memystream or something, so the data will not be stored anywhere else but memory.

EDIT: just to provide more information. Applications run on the same computer, and C # applications run a java application.

+3
source share
3 answers

You can expose methods so that two applications can talk to each other. Here is a similar question with many answers.

+1
source

, .

, ( ).

.

+1

WebService may be the choice for communication between heterogeneous platforms.

0
source

All Articles