Tagged Questions

11
votes
12answers
561 views

Which Web based language to learn?

I have a pretty good Java background and about a year's experience with Android. I was looking to learn a Web based language but I am not sure which one to? It's not necessary that it has any thing to ...
11
votes
3answers
2k views

Jetty: To embed or not to embed?

What are the benefits of embedding jetty vs deploying your webapp(s) in jetty? If you are planning on deploying more than one web app, should you strictly stick with deploying a war file for each web ...
2
votes
1answer
110 views

Is Google App Engine's Webapp Framework Open Source? Is it available outside GAE?

Google App Engine includes this minimal framework called "webapp". Google Code does not list a project page for webapp. The only documentation/information from Google on webapp is in the Google App ...
1
vote
2answers
62 views

What language should I learn to perform recurring scheduled tasks for a web application

What I think I want: A language that would run persistently on a server to run recurring events that would be able to respond to html requests and give them tailored data. The scheduled events would ...
1
vote
2answers
4k views

Global vs Universal Active Directory Group access for a web app

I have a SQL Server 2000, C# & ASP.net web app. We want to control access to it by using Active Directory groups. I can get authentication to work if the group I put in is a 'Global' but not if ...
0
votes
0answers
11 views

How to read the region setting of an iOS device from mobile Safari or UIWebView

I want to read out the region setting of an iOS device from either mobile Safari or a UIWebView. Is it possible to readout this setting without native development?
0
votes
1answer
79 views

lightweight website similar to Stack Overflow [closed]

I have been getting help on Stack Overflow over the last 4 days. I am so impressed that I want to create a similar website but lightweight for internal tools in the company where I am working. What ...
0
votes
2answers
65 views

In a Java web app, how can I give the user a “session” after he/she logs in?

After the user has entered name/password, I need to store some sort of session to give the user access to the web app features. I have done something similar in PHP, but how can I achieve this in ...