web

Displaying Camera footage through a web service / web site - How?

I would like to somehow feed by camera feed through a web service / site to be viewed over the web. Can someone please point me in the right direction? I have C#, ASP.NET, Silverlight, and WCF experience already. How does one hook into cameras? ...

What ways are there for web developers to collaborate when building a web app/site?

After much planning we're going to be building on, and heavily modifying some CMS software. There are going to be three to four developers working on the project with myself overseeing work. They will be working from a single document listing features to be made. How do we go about bringing these developers together, ensuring they col...

web services return type as complex

Hi all, I have return a web services which return "Instances" from a datamining api. Now the problem is obvious web services by default cannot handle "Instances" as return type. What should be my approach. Or I may have to say User defined data types, please guide me of any documentation where I can implement this. //////////////...

How to design a web api for mobile app usage?

We are building a mobile app, specifically an android app, and it needs to connect to the server to get data. It is not like twitter, we do not need to expose some kind of public apis. We just need to keep it simple and safe because user will exchange some private data with the server. My questions is mainly on authentication. Our serve...

IPad keyboard hides selection list

Hi, I've got a web page targeted to iPad. It contains a textarea followed by a dropdown. The problem is when a user moves focus from the textarea to the dropdown the keyboard does not hide and overlaps with opened drop down list hiding it (or the list appears too short because of the keyboard). Did anybody face it? What do you suggest?...

Wicket excel Page expired

Hi; After using WebResponse to export excel then clicking a Link gives Page expired error. Any suggestions ? Thanks. ...

ASP.NET 4 VS2010 Web Application Deployment

I must be missing something quite basic here... Trying to release my site to a test server... click on the publish option... and off it goes. The site is 'successfully' to the webserver... the odd thing is none of the code behind files have been copied. Should they be there? Why aren't they? What have I done wrong!?? I've looked for ...

Cant access website/images under /var/www/

About a year ago I placed some media and some web pages under my /var/www/ on my server(I am using ubuntu-server). I was able to access these web pages by going to http://myipaddressgoedhere/pagename recently, I have a need to store media in a folder in /var/www/images when I went to go see if I could still access these web pages s...

How to display xml data in OWC 10 component in ASP.net?

Hi We are using Office Web component V10.0 in ASP.NET 3.5 website. The rquiremetn is to display xml data in OWC Pivot table component. How can I acheive that? Thanks ...

Generate pure HTML documentation with Sandcastle (no ASP.NET)

I am using Sandcastle with the Sandcastle Help File Builder on a very large project. This works really fine, but I wanted to upload the generated documentation to my project page, and the documentation generated by Sandcastle contains ASP.NET code while I only own a Linux-based webserver. Is it possible to generate pure HTML documentati...

What Google API do I use to find search popularity

I want to know how many people have searched for a specific term in a specific period of time (say, 1pm-2pm on September 14, 2010). Is there a google API that can return this data? ...

Should my clients expect their websites to work on iPhone without paying for a mobile version?

I make websites. Should my clients expect their websites to work on iPhone/iPad without paying for a mobile version? ...

Exception with WebClient.DownloadFileAsync

I am trying to download a zip file on my server by doing WebClient.DownloadFileAsync(new Uri(DownloadLink), Path.GetFileName(DownloadLink)); I have events linked to download completed and progress changed and when the download gets to 99%, it stops. So I give it a minute and then it gives me an exception: ...

How to iterate through all components displayed on the screen

I have a highly dynamic single page interface where various user events trigger new fields to display on the screen. I am using jsf 1.1 and basic ajax without the ability to use partial submit. Because of these limitations I have marked all of my fields required false and immediate false. The idea is to validate ONLY when the user att...

web application development frameworks in 1995

I want to know what full web application development framework(s) existed in 1995 if any in the sense that a book on that topic could be bought? Like if I were to go back in time and walk into Barnes n Noble bookstore in 1995, what books about dynamic web application development framework I would see on the bookshelf containing web pro...

Exception while starting application using CouchDB

Hi! I'm starting learning some about CouchDB by the Definiteve Guide. There is example - blog system Sofa. I'm downloading it, but when I try push it, I catch exception.2010-09-19 14:38:15 [CRITICAL] 'str' object has no attribute 'update' Traceback (most recent call last): File "C:\Program Files\python\27\lib\site-packages\couchapp\d...

What do session enabling and cookieless have to do with authentication?

Ok, we're stuck on this one for like 2 days and don't have a clue yet. We have a .asmx web service (configured as cookieless="true"): [WebMethod(EnableSession =true)] [ScriptMethod(ResponseFormat = ResponseFormat.Json)] public string SimplestWebService() { return "Simplest web service works"; } And ...

asp.net web application request timeout

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? ...

Web Setup Project - 'special folder' for working folder

Hi I'm currently building a web setup project and need to include some executables for the initial installation process. I need to include vsdbcmd + libs for creating an update script when installing my web application. My question is whether or not it is possible to include and extract additional files in the 'working folder' (temp fol...

Haskell: A problem with the simplest wai example

I'm a Haskell newbie, and I'm trying to get the wai package working (because I'm interested in using Haskell for web applications). I tried to start with the first, simplest example from the wai homepage: [ 1] {-# LANGUAGE OverloadedStrings #-} [ 2] import Network.Wai [ 3] import Network.Wai.Enumerator (fromLBS) [ 4] import Network.Wai....