web

Getting Session is not a memeber of My while converting a web site to web application

Currently I have a web site project having refernces to many other projects. I am converting the website to Web Application. I am keep getting Session is not a member of My, Cache is not a member of My, Logon is not a member of My. Any one has any idea how to get rid of these errors ...

What is the difference between referring to image file in src of img tag and referring to embedded image directly in image tag?

Is there any difference between using <img src=pathto.png /> and <img src=data:image/png;base64,encodedpngdata... /> from the perspective of the server? In the case of src=pathto.png will the server just encode the image and send it to the browser? ...

Is this a valid strategy for generating then including html into jsp file?

Hi all, I need a sanity check on my strategy to best fulfill the requirements of a project. Basically I have an xml file that will need to be parsed periodically and html output displayed (xslt is not an option). My thought is that I can use a single .jsp page to check an application variable that stores the last parsed date to know if ...

Anyone NOT using a Web Framework? Why?

I'm well aware of the many reasons to use a web framework. I'm just wondering whether anyone out there is using absolutely no web framework whatsoever to develop their web projects. I would really love to know the reason(s) why you're not using a web framework. For the sake of this discussion, your programming language of choice does n...

Advice on a DB that can be uploaded to a website by a smart client for collecting survey feedback

Hello, I'm hoping you can help. I'm looking for a zero config multi-user datbase that my winforms application can easily upload to a webserver folder (together with 1 or 2 classic asp pages) and am looking for some suggestions/recommendations. The idea is that the database will be used to collect feedback entered by people filling in ...

Storing Videos in Web Application or Otherwise

Hello All, I'm looking to let users of my web application upload videos to my site, however i believe i will be constrained by how much storage i will actually have. Is there any alternatives such as being able to store videos on Youtube via the api and recall them when needed. Any help for the design of how videos should be stored woul...

The future of web-development (RIA vs. traditional HTML)

How do you see the future of the web development? will HTML, CSS and Ajax continue to lead the web-development or do you see a shift towards Rich Internet Applications (flex, silverlight & JavaFX)? I am not looking for a clear cut answer, and I know you are programmers and not prophets, but a smart analysis of how do you see the current...

Where does Google Ad Planner demographic info comes from?

Google Ad Planner show some site visitors demographic data, like the visitors gender. Take a peek at Stackoverflow's Google Ad Planner. As a Web Developer I'm concerned where we are leaking this data to Google. This has anything to do with our use of Google Analytics or it is unrelated? There is anything we can do to prevent Google to...

"Convert web page to image"

I wonder if there is any way to convert a web page (from any given URL) into an image? this is basically equivalent to taking a "screenshot" of the page after opening it. There is a method to do it in firefox, using an extension; I can draw the DOM contents onto a Mozilla Canvas. But I'm wondering if there is any way to do it as a sta...

Rest URL design - multiple resources in one http call

From what I understand, a good REST URL for getting a resource would look like this: /resource/{id} The problem I have is, that I often need to get a large number of resources at the same time and don't want to make a separate http call for each one of them. Is there a neat URL design that would cater for that or is this just not suit...

Update Item attribute in sharepoint using web services

I got this code in VB. and it doesn't do anything.Can anyone help me under stand why and give me a solution? Dim updatestr As String = "<Method ID='1' Cmd='Update'>" + _ "<Field Name='Title'>Ficha_router</Field>" + _ "<Field Name='ID_Cliente'>0000</Field>" + _ "</Method>" Dim xmlDoc = Ne...

Links in Ramaze with a/r helpers

In ramaze (2009.06.04) the link helper has changed and I have some problems to use it. I want to create a link to the MainController -> test action #{a('Testlink', r(:test))} This works if the URL is not in a specific controller. If the user is in a other controller like http://site/othercontroller/testtwo, the Testlink are linked to ...

Flex spark web browser problem

am using spark web in flex its working fine in IE6 where as in IE7 , Firefox, opera and other browser its not working. on login to spark web its giving error: Problem authenticating with the server or you are not authorised to perform this operation. Please help me out regarding this Thanks n regards Sheela ...

proper design of web service and associated queries

hi, I am setting up a web service and i'm unsure about the most efficient design.. The web service is going to be called to populate a remote website with a list of people and their associated information. So, in the database there will be a "Person" table, then other tables for nicknames, addresses, phone numbers, etc. There may be ...

How to give cname forward support to saas software

I have a webapp where users can create their account and use the service. Now I want to give them a custom domain facility where app.customer1web.com points_to myservice.com with userid customer1 once he sets up the custom domain, for the world it looks like my service is running on his machine. Many services like blogger, wp.c...

Python web frameworks, an honest opinion required.

Possible Duplicates: Recommendation for straight-forward python frameworks Python Webframework Confusion I am starting two projects for my company that will eventually become linked together. The first is an in-house reservations and management system for arranging exhibitions and conferences for delegates and the second a web...

Map virtual directory to another web server in apache

Is it possible to configure Apache web server to map a directory to a path on another web server? For example, can I make requests for http://server1/resource/ return http://server2/resource/. If this is possible, how do I go about setting this up? ...

Multiple Browser Windows Synchronization

Hello, I am trying to create an inline chat. The problem arrives when two windows of my site are open. Because then my script sends the new message to the the window which requests it for (for the time being i am using simple polling, will move to comet later). Is there any good technique that I haven't thought of, so that I can send a...

Offline web application

I’m thinking about building an offline-enabled web application. The architecture I’m considering is as follows: Web server (remote) <--> Web server/cache (local) <--> Browser/Prism The advantages I envision for this model are: Deployment is web-based, with all the advantages of this approach Offline-enabled UI (html/js) synchronizat...

Javascript timing problem.

I wont to run a block of code in a certain amount of time and then when done, carry on with another block of code. ...