Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Processing / .NET interop?

I'd like to call into a .NET assembly for some data and library functions from a Processing user interface. What's the best way to achieve this? Expose a web service? A RESTful API? Some godforsaken processing/Silverlight monstrosity?

Good ideas are welcome.

like image 503
Matt Howells Avatar asked Oct 26 '22 03:10

Matt Howells


1 Answers

One approach might be to expose the desired data and functionality to COM via the REGASM utility and then use a Java-COM bridge to get to it.

like image 61
Michael A. McCloskey Avatar answered Nov 15 '22 04:11

Michael A. McCloskey