MainSoft Grasshopper, .Net for Java

I just stumbled upon MainSoft Grasshopper , which claims to cross-compile .Net ILM into Java bytecode. It seems to be using an implementation of .Net libraries. All samples relate to web applications, but my requirement would be to cross-compile the API.Net (class library) for the Java API so that Java clients can use the API. Does anyone have experience using Grasshopper and can you see any problems with my plan?

+4
source share
1 answer

I tried it about 12-18 months ago to port an ASPNET site to something that I could run on top of Apache. I know that this is not your goal, but stay with me.

The process was not smooth. There were parts of the .net infrastructure that (at that time) were not implemented in the code base of the grasshopper, and as soon as we assessed the extent of the problem, we decided that targeting the Mono development version would be much easier.

Anyway, try it. They had a demo the same day, so I think they still have it. If you encounter billionth language errors, I would consider the correct port (if the code base is small). If it works, make sure you have test cases to really test it thoroughly.

+6
source

Source: https://habr.com/ru/post/1277368/


All Articles