Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am wondering if there are limitation stopping Dalvik VM work as a Server VM? A Previous discussion already stats that most of java code should work. Since Dalvik VM uses less memory, which would be very useful for VPS users.

Are there anything similar being done? I Did a google search and found Zero things. Am i missing something? That is can not be used this way?

share|improve this question

1 Answer

DalvikVM is not a "standard"(pdf) JVM. It's a JVM explicitly geared towards operating on a mobile device and it runs a modified version of Java. Using this as a webserver would be a bad idea, particularly on the grounds that it doesn't fully support JavaSE (wikipedia) and it doesn't even mention having support for J2EE.

share|improve this answer
Well according to another question on StackExchange, stackoverflow.com/questions/230193/… – user982438 Oct 7 '11 at 9:41
Yes, however, see stackoverflow.com/questions/230193/… answer in the question. Dalvik was designed with mobile as its primary market, not being a general JVM. – FloppyDisk Oct 7 '11 at 12:57
Of course it would not be a drop in replacement for JavaSE, but I would like to see a Dalvik server. – Prof. Falken Aug 5 '12 at 22:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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