1
vote
1answer
34 views
How can I clean _svn folders/files from ‘src/main/webapp’ folder when maven2 builds webapp project in netbeans 6.7?
I have created a webapp using maven2 archetype in netbeans 6.7.
when I do plain build(removing all the plugin configuration), it copies all the required files including the '_svn' …
0
votes
2answers
27 views
How to deploy a Spring Integration app in Tomcat?
I've gone through the "Spring Integration in 10 minutes" tutorial for setting up a basic Spring Integration application. I'd like to deploy this application in Tomcat and have the …
3
votes
5answers
74 views
Best practices in modelling user constraints in a webapp?
I'm building a webapp with role based access control using Acegi (Spring) security. So i have different users with roles: ROLE_ADMIN, ROLE_USER and etc.
However, i need to implemen …
0
votes
1answer
14 views
Using NSUserDefaults from javascript webapp
Hi!
I need to store and access preferences (like colour, etc.) from a javascript webapp.. Is there some webkit access to the NSUserDefaults? (or maybe CFPreferences ?)
1
vote
4answers
126 views
How do I display real-time python script output on a website?
I have a Python script that outputs something every second or two, but takes a long while to finish completely. I want to set up a website such that someone can directly invoke the …
0
votes
1answer
22 views
WebKit on th iPhone: is it possible to copy text to the clipboad with JavaScript
The iPhone 3.0 software added copy/paste, and native application can programmatically copy content to the clipboard. Is it possible to do the same, i.e. copy text to the clipboard, …
1
vote
5answers
122 views
Are there any web apps that do user stories cards?
We do distributed agile development and could really us a solution like story cards on a wall/board, only on a webpage where you could easily drag and drop them. Any suggestions? …
1
vote
4answers
72 views
Is it ok to return application/octet-stream from a REST interface ?
Am I breaking any laws in the REST bible by returning application/octet-stream for my responses ? The REST endpoint receives 5 image urls.
{ "image1": "http://ww.o.com/1.gif",
" …
2
votes
6answers
177 views
Browser download complete event
We've been looking for a while for an answer to this, but haven't found a solution.
We have a web server, which allows the user to download files (pdfs), which are dynamically-g …
1
vote
3answers
99 views
shutdown hook for java web application
I need to save some data preferrably when the java web application is stopped, or when tomcat is stopped. how can this be done?
Edit:
any drawback if I use the jvm shutdown hook?
0
votes
2answers
45 views
webapp vs. CMS - the same or not
I understand the classical definition of a CMS: it's a "webapp" the main purpose of which is to handle "content", probably that's generated by its users (kind of like all of us her …
3
votes
6answers
100 views
What are the implications of deleting a user account?
Most of the websites I've used in the past (including this one) do not offer an option to delete your own account.
I think the main reason is to avoid the orphanage of the items c …
3
votes
4answers
92 views
GPL and Webapp sources
Does GPL require to open source the (commercial) web application?
Please, give the expanded answer, not just "Yes"/"No" but why.
3
votes
3answers
109 views
Python/WebApp Google App Engine - testing for user/pass in the headers
When you call a web service like this:
username = 'test12'
password = 'test34'
client = httplib2.Http(".cache")
client.add_credentials(username,password)
URL = "h …
1
vote
2answers
117 views
Where do I put static files for GWT app? war folder or public folder?
I have some JavaScript files, a main HTML file, a main CSS file, and some CSS files that get imported into the main one.
I understand that I can put static files in two places: a) …
