Re: Can tapestry run on Android

2013-05-28 Thread Ryan How
On 28/05/2013 8:44 PM, Thiago H de Paula Figueiredo wrote: On Tue, 28 May 2013 09:11:56 -0300, Ryan How wrote: Yes, but the bytecode enhancement that tapestry does, it wouldn't be able to be understood by the Dalvik JVM? As is my understanding. I just don't want to spend a lot of time getting

Re: Can tapestry run on Android

2013-05-28 Thread Thiago H de Paula Figueiredo
On Tue, 28 May 2013 09:11:56 -0300, Ryan How wrote: Yes, but the bytecode enhancement that tapestry does, it wouldn't be able to be understood by the Dalvik JVM? As is my understanding. I just don't want to spend a lot of time getting it set up, then have no possibility of it working :)

Re: Can tapestry run on Android

2013-05-28 Thread Ryan How
On 28/05/2013 7:48 PM, Thiago H de Paula Figueiredo wrote: On Tue, 28 May 2013 00:39:22 -0300, Chris Cureau wrote: Tapestry itself runs on a web container, like tomcat. The served pages will operate in chrome in android and probably firefox as well, though I haven't tested it there. You're

Re: Can tapestry run on Android

2013-05-28 Thread Ryan How
On 28/05/2013 7:49 PM, Thiago H de Paula Figueiredo wrote: On Tue, 28 May 2013 00:44:02 -0300, Ryan How wrote: Sorry, just to clarify a bit I mean hosting it on Android. There is a port of Jetty for Android, so will it run in that, but does Tapestry require some libs that aren't on android?

Re: Can tapestry run on Android

2013-05-28 Thread Thiago H de Paula Figueiredo
On Tue, 28 May 2013 08:22:42 -0300, Ryan How wrote: I didn't actually consider linux on an arm device, but it would work quite nicely. There are many ARM devices that run Linux. Many (most?), such as Raspberry Pi, have Linux as their main operating system. And I'm guessing I should be ab

Re: Can tapestry run on Android

2013-05-28 Thread Thiago H de Paula Figueiredo
On Tue, 28 May 2013 00:44:02 -0300, Ryan How wrote: Sorry, just to clarify a bit I mean hosting it on Android. There is a port of Jetty for Android, so will it run in that, but does Tapestry require some libs that aren't on android? No. Tapestry only needs Java libraries, so, if you have a

Re: Can tapestry run on Android

2013-05-28 Thread Thiago H de Paula Figueiredo
On Tue, 28 May 2013 00:39:22 -0300, Chris Cureau wrote: Tapestry itself runs on a web container, like tomcat. The served pages will operate in chrome in android and probably firefox as well, though I haven't tested it there. You're mixing apples and oranges here. First you talked about w

Re: Can tapestry run on Android

2013-05-28 Thread Ryan How
Thanks for all the help. I'm going to investigate the linux route, failing that then might have to try pre-generating the tapestry enhanced classes. I didn't actually consider linux on an arm device, but it would work quite nicely. And I'm guessing I should be able to run linux on pretty muc

Re: Can tapestry run on Android

2013-05-28 Thread Lance Java
> lets just say id save about $20,000 worth of redevelopment to be able to run it on android :) How about this: 1. Run your app on a standard JVM and with a tweaked version of plastic. The tweaked plastic saves the manipulated class files to an external directory. 2. Run a decompiler (eg JD) on

Re: Can tapestry run on Android

2013-05-28 Thread Dmitry Gusev
dded http://www.oracle.com/technetwork/java/embedded/downloads/javase/index.html > Original Message > From: Muhammad Gelbana > Sent: Tue, 28/05/2013 06:21 PM > To: Tapestry users > CC: > Subject: Re: Can tapestry run on Android > > OT: Why would you want

Re: Can tapestry run on Android

2013-05-28 Thread Ryan How
CC: Subject: Re: Can tapestry run on Android OT: Why would you want to host a web application on android ? Why not just linux ? Also tapestry IoC can be used independently from a servlet container. I've done it on windows but not on android though. On Tue, May 28, 2013 at 11:19 AM, Ma

Re: Can tapestry run on Android

2013-05-28 Thread Muhammad Gelbana
OT: Why would you want to host a web application on android ? Why not just linux ? Also tapestry IoC can be used independently from a servlet container. I've done it on windows but not on android though. On Tue, May 28, 2013 at 11:19 AM, Massimo Lusetti wrote: > On Tue, May 28, 2013 at 10:27 AM,

Re: Can tapestry run on Android

2013-05-28 Thread Massimo Lusetti
On Tue, May 28, 2013 at 10:27 AM, Lance Java wrote: > > https://github.com/apache/tapestry-5/tree/master/plastic/src/external/java/org/apache/tapestry5/internal/plastic/asm > > Didn't mean to hijack the thread, just a note to say the github mirror is ways behind the current repo, the github one i

Re: Can tapestry run on Android

2013-05-28 Thread Lance Java
I see that there is an ASMDEX project, this is probably the easiest option to get plastic working on dalvik http://asm.ow2.org/doc/tutorial-asmdex.html You must be note that the tapestry build includes a repackaged copy of the ASM libraries https://github.com/apache/tapestry-5/tree/master/plasti

Re: Can tapestry run on Android

2013-05-28 Thread Ryan How
That's true. I didn't think of that. I'm running tapestry 5.1 for this particular app (I'm wanting to port an app over to android), I think it uses something else for byte code manipulation, but it is still byte code and hence not dalvik compatible :( And byte code manipulation is pretty core

Re: Can tapestry run on Android

2013-05-28 Thread Lance Java
Tapestry uses ASM under the hood for it's runtime byte code manipulation magic. I'm pretty sure that this would fail on dalvik.

Re: Can tapestry run on Android

2013-05-27 Thread Ken in Nashua
http://powerplayhockey.noip.us:9011/pphl/home my tapestry app runs fine on my droid III kinda cramped though

Re: Can tapestry run on Android

2013-05-27 Thread Ryan How
Thanks. I will try it, just doing some preliminary investigation before investing some time. I haven't done any android development before, so I only know the basic theory. Thanks, Ryan On 28/05/2013 11:53 AM, Kalle Korhonen wrote: On Mon, May 27, 2013 at 8:44 PM, Ryan How wrote: Sorry, ju

Re: Can tapestry run on Android

2013-05-27 Thread Kalle Korhonen
On Mon, May 27, 2013 at 8:44 PM, Ryan How wrote: > Sorry, just to clarify a bit I mean hosting it on Android. There is a port > of Jetty for Android, so will it run in that, but does Tapestry require > some libs that aren't on android? > The bare bones Tapestry should run fine. It's very simple

Re: Can tapestry run on Android

2013-05-27 Thread Ryan How
Sorry, just to clarify a bit I mean hosting it on Android. There is a port of Jetty for Android, so will it run in that, but does Tapestry require some libs that aren't on android? Thanks, Ryan On 28/05/2013 11:39 AM, Chris Cureau wrote: Tapestry itself runs on a web container, like tomcat. T

Re: Can tapestry run on Android

2013-05-27 Thread Chris Cureau
Tapestry itself runs on a web container, like tomcat. The served pages will operate in chrome in android and probably firefox as well, though I haven't tested it there. You can also use jQuery mobile for added capabilities, but a dedicated project like tapestry-jQuery doesn't exist yet as far as I

Can tapestry run on Android

2013-05-27 Thread Ryan How
Hi, I was just wondering before I look too closely if anyone knows if a Tapestry webapp can run on Android? I see there is an Android port of Jetty. Thanks, Ryan - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.o