web

help required for an acadamic project i need suggessions to start with?

“Web Answers” – Web facilitates searching is the project In this project, we aim to facilitate content searching. For example, you are browsing a website and/or you are reading some article and you need certain information that is not explicitly available. In general practice, people try to browse for that information over Internet, th...

Controlling a USB device from a web application

I would like to be able to control a USB device from a web application. I was hoping to use Adobe Flex but I don't think that Flex can support access to USB devices. Is this possible using Java applets, or a similar approach using .NET? Thanks. ...

apache mod-rewrite removing www from url

I want to remove www. from my site url. I have added this to .htaccess: RewriteCond %{HTTP_HOST} ^www.mydomain.com$ [NC] RewriteRule ^(.*)$ http://mydomain.com/$1 [R=301,L] It works if I type www.domain.com/x but not if I type www.domain.com/x/y. The rewrite "eats" the x value. Thanks for your help. ...

Sliding menu problem

I have a navigation menu that has submenus slide down on hover. The menu is structured like so: <ul class='nav'> <li><a href='#'>About</a></li> <ul class='submenu'> <li><a href='#'>Stuff</a></li> </ul> </ul> etc.. What I did to create slideouts was the following: $('ul.nav li').hover(function(){ $el = $(this); $el.nex...

Check how many times file downloaded?

I have a zip file on website running on a Windows 2008 / IIS7 server. Is there a way to check how many times that file was downloaded? ...

HTML5 Sequential execution

Hi, I have created a web storage for product details (productId, name, quantityonhand) and have populate records into it from the server. I have to validate whether the required quantity is available to accept the order. The Product form has checkboxes (with name="product") for every product available in the web storage and a corresp...

Looking for a free current road traffic information web service (think XML/SOAP/RSS..)

Hello, I'm looking for a web service that provides traffic information (accidents, all clear (if poss?), congestion etc..) for roads in the UK, specifically around Portsmouth (south east England.) Service must be free to use Non-commercial license is OK I had a look on google and found the Highways agency does an RSS feed.. however ...

where to find example of logIN and logOUt operations in web service?

Hi, I looking for a web services tutorial using Jax-ws wherein it has login/logout methods. for the login it will return the session id. for the logout it will end the session. any help will be greatly appreciated. Thanks, winston ...

what is the difference among these terminologies in web applications?

i wanna to ask what is the difference among these terminologies? in details 1-Post back 2-auto post back 3- submit 4- refresh(F5) 5- request the same URL 6- AJAX call thanks ...

Get Javascript test output into hudson

Hi, I'm writing an automation program for a Web Application. I am accessing the Web Application through a javascript API and have wrapper functions with custom assertions that currently just write output to a table in an HTML page. Now I need to get the data output into my hudson (https://hudson.dev.java.net/) automation, where I have a...

Rich Text Editing - designMode vs contentEditable

When creating a cross-browser rich text editor. Which would you use and why? Keep in mind that pasting has to be resilient to stand against multiple sources (notepad, word, other websites) and it should not be dependent on any Javascript libraries. ...

web service start problem

Hi, I want to create bottom up web service. I have configured axis2 and eclipse. But while creating web service it is giving following error IWAB0489E Error when deploying Web service to Axis runtime axis-admin failed with {http://xml.apache.org/axis/}HTTP (502)Proxy Error ( Connection refused ) I searched lot for the error. Onl...

Ajax talking to java webservice - example? JSon, JQuery?

Hi, I've been tasked with making an Ajax (scriptilicious and prototype) front-end 'talk' to a web service. It's been recommended that I use Json and JQuery. I have no experience (Java developer) with either of these technologies. Can someone point me to some documentation or preferrably a tutorial on how to go about creating the 'glue' b...

My code can not find the field (Delphi - Webbrowser)

Hi , i'm using this code to fill out fields of some WebPages , using WebBrowser control : procedure TFrmMain.SetValue(const document: IHTMLDocument2; const formNumber: Integer; const fieldName, newValue: string); var form: IHTMLFormElement; field: IHTMLElement; begin form := WebFormGet(formNumber, document); field := form....

How to set value for checkbox via EmbeddedWB.FillForm ? (Delphi)

Hi , how can i set value for a checkbox via FillForm method ? I tried these but doesn't work : W.FillForm('Chkname', 'True'); W.FillForm('Chkname', '1'); W.FillForm('Chkname', '', 1); ...

Java web app interacts with a COM component in users local machine

Hi All, We are planning to use Java Applet which will be downloaded to users browser and communicate with the com component using JNI. And also the applet will interact with the web page using Java Script. Web page -> Javascript -> Applet -> JNI - > COM The web page would display the data returned by the COM and also It can send the...

Which kind of user's information I can use for create unique user's key?

Hi all. I've next problem: I need create unique user key based on user's information what I can receive from user's request to my web-page (ASP.NET). I'll use this key for auto-login functionality (I know about cookie ^^) What kind of information I can use? Can anybody help me? ...

Data Annotations Silverlight

Hi, I have a webservice that supplies data (Publisher Object) to a silverlight project. I want to bind the Publisher to a dataform and have the dataform handle to validation. I would like to achive this by using DataAnnotations. My question is.. Can I or how do you amend the Publisher object (Generated by the webservice) to add the D...

SoapExtensionReflector issue rewriting response for different domains

Hello, I have a web service deployed on a machine that is attending requests on 2 different domains. One internal (intranet) and another one external (internet). So I can make requests like this: [internaldomain]/myservice.asmx or [externaldomain]/myservice.asmx the external domain works because another machine is resending the requ...

Playing audio files on a website...

Can you suggest a good way to play audio files on a website? ...