“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...
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.
...
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.
...
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...
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?
...
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...
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 ...
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
...
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
...
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...
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.
...
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...
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...
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....
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);
...
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...
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?
...
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...
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...
Can you suggest a good way to play audio files on a website?
...