ankitg
ankitg

Reputation: 123

How to run Servlet on ipad

heard that iphone/ipad does not support java. Is that true? If yes then how do I run my Servlet on iPad?

Thanks Ankit

Upvotes: 1

Views: 1821

Answers (2)

MozenRath
MozenRath

Reputation: 10040

While you cant run Servlets on iOS as java is not supported, you can always access a web application based on Servlets, that is hosted on a java supported platform, through a browser in your iPad

Upvotes: 2

Óscar López
Óscar López

Reputation: 236112

Short answer: you can't. For running a servlet you'd need a Java web container on top of a JVM, and that's impossible since there is no Java support on any of the iOS devices.

If you really, really need to run a servlet-based application maybe you could do so in the cloud and access it from the iPad.

Upvotes: 6

Related Questions