一个.NET包装谷歌应用程序引擎?

一个.NET包装谷歌应用程序引擎?

问题描述:

有谁知道周围Python或Java的谷歌应用程序引擎服务.NET包装的?

Does anyone know of a .net wrapper around either python or java Google App Engine services?

任何帮助AP preciated //:)

Any help appreciated // :)

我不认为这是不可能的,在GAE上运行.NET。至少,这不是不可能的运行是从.NET源或跨$ P $点它们在运行时所产生的东西。试想想,Ruby或Python,在(使用JRuby和Jython)的JVM两个工作。你可能要寻找类似的东西,或尝试交叉编译你的.NET code到Java类文件。

I don't think it's impossible to run .net on GAE. At least, it's not impossible to run something that was generated from .net sources or interprets them at runtime. Just think about Ruby or Python, both work on the JVM (using JRuby and Jython). You'll probably have to look for something similar or try to cross-compile you .net code to Java class files.

下面是一个相关的问题:Why没有太阳做一个C#为Java字节code编译器?。有些人建议使用 JaCIL 或的 JSC 。我没有尝试那些我自己,但我敢打赌,你必须让你的手脏得到的东西的工作。

Here is a related question: Why doesn’t Sun do a C# to Java byte code compiler?. Some people suggest using JaCIL or jsc. I didn't try those myself, but I'd bet you'll have to get your hands dirty to get something to work.