Web applications are applications that are accessed over the "web", which can be over Internet, or Intranet i.e. an internal network
0
votes
0answers
3 views
How to show images in folder using Glassfish
I am trying to show some images in my web application with Glassfish 3.1.2.
I found that I can achieve that using alternate document roots:
...
0
votes
0answers
3 views
how to convert a local webapp to a standalone webkit app?
I have a webapp that is designed to run locally (it doesn't need an internet connection to run, it just connects to a local websocket server). I would like to detach this app from the browser and have ...
0
votes
0answers
8 views
Is there a cloud-based web app platform for desktop apps similar to appery.io
I am looking for a cloud-based web app platform for developing a desktop app that uses either Twitter bootstrap or jQuery UI. However, I also want back end services for data (preferably NoSQL) I ...
0
votes
2answers
31 views
` (backtick) appearing in Cakephp view
A backtick appears in my rendered view in my cakephp application. They sometimes appear in two places:
At the very start of the body
After echo $this->Form->create();
I can't see a pattern that ...
0
votes
4answers
3k views
iPhone WebApp opens links in safari
When I add my 'web app' to my home screen on my iPhone, then open it and click a link, it opens Safari.
I've found a couple of solutions to my question but they don't seem to work:
iPhone Safari Web ...
0
votes
1answer
18 views
Twitter Bootstrap Template with Spring MVC
I'm trying to setup twitter bootstrap with spring mvc. I moved all the bootstrap (bootstrap.css and bootstrap-responsive.css) into the resource folder and linked it to the jspx page. I copied/pasted ...
0
votes
1answer
24 views
Detect which IP use in ASP.NET site with multiple bindings
I have an ASP.NET application setup in IIS 7 that uses two HTTP bindings on port 80, each with a different IP address.
This web server is behind a load balancer which could forward traffic on to the ...
0
votes
0answers
4 views
Using common resources for mobile version and full version of website
How to use common resources for mobile version and desktop version
Suppose domain for website is www.domain.com and I have created a sub domain m.domain.com for the mobile version. Here is the ...
0
votes
2answers
11 views
No method error with form_for()
Having some issues setting up a form for my worker active record. I have a user has_many workers relationship and had nested routes for the workers. my form code is below in my new.html.erb file in ...
2
votes
1answer
24 views
If webBrowser URL equals a certian link, change it
I'm trying to create something that when the webBrowser lands on a certain URL, such as www.badsite.com, it takes the person to www.goodsite.com. My idealistic code would be :
if (webBrowser1.URL == ...
0
votes
2answers
21 views
choosing java ee web application framework
I have studied making java ee web applications in my course.
For interface we used html+css+jquery+ajax
and for bindings we used knockout.
On the server side we implemented restful services using ...
1
vote
3answers
2k views
Store user's images in a web application
I have a web application currently being developed in JSP/Servlets.
The application allows users to upload image files for each user account.
What is the best way to store the images?
Please ...
0
votes
2answers
21 views
Ruby on Rails(3.2) Routing Error when route exist
Having an issue with my routes that is confusing me. Basically I have a user Has_many workers and a worker belongs_to a user active record setup. So I wanted to do nested routes. Below is my routes ...
-1
votes
0answers
10 views
Best Language / Libraries for web based data collection and reporting [closed]
I'm looking for experienced programmers opinions on what code language best suits a web based data collection and reporting application. When I say "experienced" I'm hoping for programmers with ...
0
votes
0answers
33 views
Accessing pseudo css and changing it using JQuery [duplicate]
I have this:
#popup:after, #popup:before {
top: 100%;
}
How would I change top from 100% to 0% and add bottom:100% using JQuery?