Hi I am new to jQuery mobile, I am currentle developing an Android App with JQuery Mobile.
I came to the problem that when using a .jsp page the scriptlets are not being processed.
Something like this.
<body>
<h1>Some title </h1>
<hr/>
<div id ="wrapper">
<%
Project test = new Project() ;
String str = test.toString();
%>
</div>
</body>
When I run it in the emulator or an android devide the webpage just shows the text within the <% %> tags. It is not being executed. I assume its because there is not a server like Tomcat or Glassfish processing these kind of request.
What can I do?
Thank in advance