vote up 0 vote down star

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

Any help appreciated // :)

flag

1  
Consider rephrasing or clarifying your question. It looks like people may not be understanding. Do you want to run .Net code (e.g. C#) on App Engine, or do you want to run existing App Engine code from an internal .Net server? Or perhaps something else totally? (Both situations I described are nearly hopeless for production by the way.) – jhs Oct 9 at 18:22
I think what I'm looking for is something that lets you write .net and then spits out python web services or java web services that could work with GAE. Does that help? – Spanky Oct 9 at 20:59

2 Answers

vote up 1 vote down check

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 JMV (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 to use JaCIL or jsc. I didn't try those myself, but I'd bet you'll have to get yourself dirty to get something work.

link|flag
Thanks, this is pretty close to what I was after :) – Spanky Oct 9 at 21:00
vote up 2 vote down

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...?).

link|flag
Never say never :) – jhs Oct 9 at 18:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.