Hello everybody,
I'm using the "bindingRedirect" element in my web.config to allow updates of my referenced assembly without recompiling my website. But I still receive the same error:
Could not load file or assembly 'Oracle.DataAccess, Version=2.111.6.20, Culture=neutral, PublicKeyToken=89b483f429c47342' or one of its dependencies. Th...
I've been using Django and Django passes in a request object to a view when it's run. It looks like (from first glance) in Flask the application owns the request and it's imported (as if it was a static resource). I don't understand this and I'm just trying to wrap my brain around WSGI and Flask, etc. Any help is appreciated.
...
Im building a simple web app in Python using web.py - and was wondering what best practices are in terms of securing the application.
I had two main questions at this stage:
I want the application to be able
to send email - its not hosted on
GAE, but I thought a simple
solutions might be to write / find a
s script tha...
Good evening. I found a few questions that seemed to ask the same thing I am asking, but none of the answers seems to work for me. Basically, I have a few generic PHP files (mostly classes, but some are not) that I want to be usuable by multiple PHP sites.
Here is an example of my folder structure:
Site A Root
C:\Personal\WebSites\S...
Hi All,
I have two web application which are deployed in the same J2EE Application server. I need to redirect from one web application to another. Also I need to set some information in the Header from web application 1 so that it is available in web application 2.
When I try to access the information which set in the header of Web App...
Greetings,
I'm looking for some more experienced insights into my current problem; a short description:
The setup and a simplified model.
The goal of the web application is to provide a platform for posting, searching and reacting on ads. The ads themselves fall into roughly 3 large categories:
Real estate
Cars
Various (basically a...
I have a problem with my asp.net web application. During the test process, there was no problem but after a lot of users started to use application, it gets timeout.. Where should i check for this problem?
...
I don't know whether race condition is the best word, but I didn't find a better word.
In some situations I send a mail to the administrators of my application. They can then log in, verify some data and then automatically send an email to all the users of the application. How do I prevent the situation where two or more administrators ...
I'm developing a JEE application (JSF2 + richfaces+ Facelets + Tomcat).
What's the best way to perform authentification ?
Or should i make my own ?
...
Hi,
I'm developing a very sensitive application for a client that needs to have 99.9999999999% uptime guarantee.
It's a Rails application with MySQL database. I am thinking of hosting it on EngineYard due the low maintenance requirements and easiness to run.
Heroku does not seems to be the perfect solution due to uptime problems.
EC2...
So I am running exchange 2007 and up until yesterday there was a menu that allowed for the user to open other mailboxes through the Outlook Web Application. You would click on the name of the mailbox and it would let you type in the name of the mailbox you wish to open. I have full access to these boxes, yet the button that has the mailb...
I have a java web service through which I upload images to a file server. I want to access these images from my java web app. How can I make the image files (and eventually other static files) available from this file server?
The only thing I could think of was to use Apache Http server as a proxy to my web app for these images, but th...
Hi i am trying to make a simple application which will be used to point a web browser control to some of our web applications at my work. I would like to have only one exe file but also have an admin window to change some of the settings and have them persist when the application is closed. is that possible? i have looked at the applicat...
I'm building a webapp that will need to provide some real-time tracking information overlayed on to some maps. My requirements are fairly simple:
I need to take a series of lat/long co-ordinates, and overlay simple markers at those positions with a small bit of associated textual information (ie, just a label and/or tooltip at the mark...
Hi,
How can I code once and deploy on Windows, Mac, Web and Mobile?
App Titanium does not deploy on the Web.
Thanks
...
Back in the day there were only Active X and JavaScript.
Users would turn them off, disabling my apps, or would edit the JS code (usually breaking it). So I switched to strictly server-side, where I have complete control.
Now I am thinking that I might be misisng out on half of the possibilities for browser-based apps.
We are talking ...
I have the following two classes and I am starting to see a pattern that even with my little Java background is screaming for a fix. Every new Object is going to require a set of Actions and the number of classes could grow out of hand. How do I refactor this into a generic DeleteAction class?
I know some of the answers will be use H...
I know that you have to install plugins before you could use them in the web browser.
Will it always be like this for plugins like Silverlight?
Or do you think major browsers (Firefox, Safari, Chrome etc) be shipped with it in the future?
...
Is there any general standard that defines what is a SaaS and what is a PaaS. The 2 seems to be used interchangeably? My guess is that everything is SaaS, so is there something about PaaS that makes it different from SaaS and better called PaaS?
...
So here's my working code to upload a file:
class UploadFormHandler(webapp.RequestHandler):
def get(self):
upload_url = blobstore.create_upload_url('/upload')
path = os.path.join(os.path.dirname(__file__), r'templates/upload_form.html')
self.response.headers['Content-Type'] = 'text/html'
self.response...