Is it possible to send byte arrays by RPC in the Web Player? Or has it be deprecated?
It doesn’t seem to let me do it. There is not function RPC(string, RPCMode, byte[ ]) that I can see!
Is it possible to send byte arrays by RPC in the Web Player? Or has it be deprecated?
It doesn’t seem to let me do it. There is not function RPC(string, RPCMode, byte[ ]) that I can see!
Yes it’s possible to send a byte array.
Why don’t you try it? Easy to test and see if it works or not.
I did it said not function not compatible with RCP(string, RPCMode, Object[ ] )
Can you post the relevant code you used so we can check. I’m pretty sure it works.
Ah I think I fixed it. I was testing it with this:
string fileContent=“”;
byte[ ] bytes = System.Text.Encoding.UTF8.GetBytes(fileContent);
Apparently it just didn’t like that fileContent was an empty string. If I change it to fileConent=“xxx” then it works fine.