web-applications

iPhone: Is there any way to execute iPhone func like camara frome web app

Hi, I just start to develop web app for iPhone with jQtuch..and its fun! Q: is there some way to invoke some iPhone func like capturing image from the web app? ...

Java Web Application Error - Can't understand why it's happening now

I am using eclipse and I can build the webapp and deploy it to Jboss4.2.1. It was working previously and I haven't changed anything really extensively to make this error come about. When I go to the webapp thru my browser, I previously have been signing in with a generic username and then I could use my webapp as usual. Now when I go t...

apache httpclient and spawning a browser that will share the session

I'm have a java program that uses Apache httpclient api. This is used to login to and communicate to a webapp. Once logged in, there's a situation in which the program issues an execute process to open up firefox to hit the webapp and allow the user to see data in the browser. Since the java program is already logged in, is there a way...

Web Application that receives images, videos, and text via Text Message

I've seen many examples of this (clickatell.com among them) that only support text in the USA. I need my application to receive images/videos from text messages (MMS?) from users. The web app needs to receive a way to identify the user (phone number) and the actual files (in the same fashion facebook has implemented for sharing photos vi...

How to connect to remote web application running on JBOSS server?

I am running an application on my system on JBOSS server which i can run in any browser by giving link http://localhost:8080/. But i want to run the same application on another machine, how to do that. I have tried with http://systemName:8080 and http://systemIP:8080 but didnt work. need help ...

compilation error in eclipse IDE for a java program.

i have following code for which eclipse giving following compilation error Multiple markers at this line - The hierarchy of the type TutorialsApplication is inconsistent - The type com.vaadin.terminal.Terminal$ErrorListener cannot be resolved. It is indirectly referenced from required .class files - The type com.vaadin.terminal.URIHan...

is there a CMS / web-app / API that allows building of searchable forms without coding, like with a template?

suppose a web application requires some people to create a page with info they fill in as a form and other people to search for such pages using keywords or enumerated values for various form fields. Well, for instance it could be like Craigslist sales postings only structured as a single form - you specify the town, the category, the pr...

Django: Is there a safe and robust way to allow account-holders to have separate domains on your app?

If I want my account holders to be able to have their own sub-domains and even their own domains altogether. Using NGINX as my proxy server, should I create domains for each one in my NGINX conf and have my clients point their domains there or is there reasons why this would be bad? Also, if I do that, how can I pass account-specific (ac...

Host web application on a desktop

Hi, Just want to wrap a page inside a desktop window on Windows, Linux and Mac. The user see standard (for the given OS) look (window, close/minimise buttons etc). But it would basically just be a browser inside that window. Additional things I want to achieve (apart from the ones every browser has): Application should be able to r...

System.Web.AspNetHostingPermission Exception on New Deployment

I have a friend that is moving a web application from one server over to another. The new server has the same settings as the first server, however, he's running into a Security issue. Here's the error details: Request for the permission of type 'System.Web.AspNetHostingPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToke...

language for a simple web app

i want to write a simple web app that can connect to databases and display simple text and images. I know a bit of programming - mainly C. Also i have a very short time frame for learning the language and technologies associated with it. Which language would be good/ also what would be a good starting point ...

GDataRequest for fusion tables in web application returning gibberish

This code private final String SERVICE_URL ="http://tables.googlelabs.com/api/query"; private final Pattern CSV_VALUE_PATTERN = Pattern.compile("([^,\\r\\n\"]*|\"(([^\"]*\"\")*[^\"]*)\")(,|\\r?\\n)"); private GoogleService service; service = new GoogleService("fusiontables", "fusiontables.ApiExample"); service.setUserCredentials("my...

Would Pyhon be the best language to use to create a program to run a search on a website every x minutes, parse the results, and send out the parsed information via email?

What program language would be best to create a program that would query a website every x minutes on a windows system? Also, after getting the information, I would like to parse it and send the parsed information via email. I had asked a similar question yesterday and it seemed like Python was the way to go but some also suggested wget...

How can you sell or auction your code?

Say you write some python code using your expertise in some knowledge-domain that could be used to perform some sort of Web Service for a wider set of people. (ie. you take their data and do something magic with it and return something of more info value.) So you get the code to work -- you get to the proof of concept stage by deployin...

Error moving JSP file into WEB-INF directory with Stripes

I have the following Stripes ActionBean: package myapp; import net.sourceforge.stripes.action.*; public class WelcomeActionBean extends MyAppActionBean { @DefaultHandler public Resolution view() { return new ForwardResolution("/welcome.jsp"); } } When I load /myapp/Welcome.action in a browser, the contents of welc...

Internationalization and localization in an AJAX application

Overview I'd like to hear feedback on my approach for internationalizing an AJAX application. Is this a sound approach? What kind of other approaches would be worth considering? Here's a summary of the app: AJAX app running from a single HTML page generated server-side with i18n HTML page imports JQuery and plugins Uses XHR to load se...

Which technology to use for making YouTube like application

Hello friends, I want to create a website something similar t YouTube. It will have large number of videos but yet it should be fast. Could someone tell me which technologies i should use? ...

JQuery: Compact version of Slider control for mobile use?

I have mobile web app and want to use the JQuery Slider control. http://docs.jquery.com/UI/Slider However, to do so, it requires the entire JQuery core (29kb compressed & gzipped). Is it possible to just use Sizzle (4kb) + the JQuery Slider (4kb) control to have a working slider without the need for JQuery core (29kb)? (I'm trying to...

ASP.NET HttpModules & Server.Transfer / Server.TransferRequest / RewritePath problems...

Hey guys / gals, I will try to be as specific as I can be. I inherited a very antiquated C++ ISAPI filter that secures a classic ASP website and was tasked with the job of creating an HTTPModule to directly replace it. First I hooked into the OnPreRequestHandlerExecute event. I then successfully recreated the calls to the stored proc...

Can I turn off the HttpSession in web.xml?

I would like to eliminate the HttpSession completely - can I do this in web.xml? I'm sure there are container specific ways to do it (which is what crowds the search results when I do a Google search). Thanks, LES P.S. Is this a bad idea? I prefer to completely disable things until I actually need them. ...