A .net wrapper for Google App Engine?

前端 未结 3 1473
长情又很酷
长情又很酷 2021-01-20 20:16

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

Any help appreciated // :)

相关标签:
3条回答
  • 2021-01-20 20:31

    I don't believe this is even conceivable (if I understand what you're asking about): App Engine will run code on a Python virtual machine or a Java one, never on a .NET one, so where would this "wrapper" run? If your need is for .NET "in the cloud", consider Azure (you could run .NET on Amazon Web Services, I guess, given AWS's flexibility -- but if you're married to MS's platform anyway, why not use their cloud...?).

    0 讨论(0)
  • 2021-01-20 20:42

    Python has a .NET alternative called IronPython. But I don't think it will work in GAE as it supports only pure python. I am also facing a similar problem trying to port a source written in C#.net into GAE compatible code. I'm going to work around it by re-inventing the spokes of the wheel (not the wheel itself) by re-doing the UI using SVG or some other method. Have you considered that?

    0 讨论(0)
  • 2021-01-20 20:47

    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.

    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.

    0 讨论(0)
提交回复
热议问题