|
We have a Web Application (WebApplication A) which is in place and serving fine, we are working on another WebApplication which will use the Engine of Existing Web Application (WebApplication B) to some extent.
Problem: WebApplication A responds when ...
Started by Asad Butt on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Create a ....
These are commonly accessed with a .ashx extension (LatestPost.ashx in your case) .
You will need to create a class which implements IHttpHandler and register it in the <httphandlers> section of the web.config file .
Use an HttpHandler.
|
|
Lets say I have several web sites on my web server, all as applications under one domain. How could I register other domains to point to the same web server, and redirect requests to, e.g. a web site linked to the requesting domain?
I know I'll have to...
Started by ProfK on
, 3 posts
by 2 people.
Answer Snippets (Read the full thread at stackoverflow):
Hi!
On Apache you could do something like this:
NameVirtualHost *:80 <VirtualHost *:80> ServerName acme.net DocumentRoot C:/www/ </VirtualHost> <VirtualHost *:80> ServerName acme.root.net DocumentRoot C:/www/ </VirtualHost>
I hope... .
|
|
When requesting data with:
<param value="data-file=http://url-to-my/json.script" name="flashvars">
via an SWF file, what request type would "http://url-to-my/json.script" receive. It doesn't seem to be a "xmlhttprequest". Is it the same as a request...
Started by ed209 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
In the above scenario I assume that a simple GET-Request is made....
XmlHTTPRequest uses the same Request-Architecture as the Browser is the User-Agent submitted in the header of the HTTP-Request.
It should be a HTTP GET request.
|
Ask your Facebook Friends
|
LAST EDITED ON 01-29-12 AT 08:31 AM (EST)
Started by PepeLePew13 on
, 27 posts
by 26 people.
Answer Snippets (Read the full thread at realitytvworld):
A friend of mine went through that a few years back, only thought from that is if she isn't getting enough mobility once she's healed, it may... .
Good luck keeping the satellite dish collar on her once you get her home and she's separated from her new BFF .
|
|
Is there a good way of requesting only specified columns from the database using LINQ? I want to be able to select only certain columns depending on arbitrary conditions from code.
Started by seanlinmt on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Are you maybe wanting to pull different columns based on a conditional?
Something like this?
if(condition) { table.Select(x => x.ColumnA); } else { table.Select(x => x.ColumnB); }
You can create anonymous types for... .
Not sure exactly what you mean.
|
|
What's the latency to GET an object from S3 from an EC2 Instance.
For example, how many ms before the actual data stream for that object starts streaming back when requesting a object by it's full path.
If the object exists on S3 If the object does not...
Started by The Unknown on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Unfortunately,....
If you want to get an idea of how well S3 performs in practice, check out http://www.cloudstatus.com/ .
I don't think AWS makes guarantees about latency, but using S3 from EC2 is definitely going to be faster than doing it over the web .
|
|
I don't necessarily need to see real time plots or anything but as I understand it if you attach a USB device it gets like 100 mA then after some negotiation it will bump the power up to 300 mA or 500 mA so on and so forth till the device stops requesting...
Started by Crash893 on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
In Ubuntu Linux, become root and cd to /sys/bus/usb/devices/usb1
root@pjb-desktop:/sys/bus/usb/devices/usb1# ls 1-0:1.0 bDeviceSubClass configuration idVendor speed authorized... .
I found some interesting files under /sys but couldn't get anywhere with it .
|
|
I'm getting weird 404 errors on my site for the following URL:
GET /%27%20+%20item.icon%20+%20%27 HTTP/1.1
I've got some corresponding code in my HTML file:
<script type="text/javascript"> function foo(item) { return '<img src="' + item.icon ...
Started by Tom on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Try to put your code in a CDATA section like this:
<script type="text/javascript"> //<![CDATA[ function foo(item) { return '<img src="' + item.icon + '">' : ''; } //]]> </script>
See ... .
Firefox is interpreting your code as XHTML.
|
|
I test the code in IE7, FF, Chrome, Safari and this problem occurs in Firefox only.
I have checked that the problem only occurs in FF 3.5.x, but not FF 3.0.x.
I want to make an image animation which has 10 images in total.
Currently, I use the following...
Started by Billy on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I'....
Here's my suggestion.
You can either toggle style.display or remove and insert the nodes .
Why would you set the src again? You want to rotate those ten nodes in and out now .
You've already created ten DOM nodes, set their src and loaded the images .
|
|
Hello,
We inherited a new product that we are now supporting. It is a web application that displays chart(s) using SVG.
On my machine, it runs perfectly. It loads and shows the SVG charts using Adobe SVG viewer 3.0. While on the customer machine, the ...
Started by Ian on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Just a hunch, but try installing this
Microsoft XML Parser (MSXML) 3.0 Service Pack 7 (SP7)
http://www.microsoft.com/downloads/details.aspx?familyid=28494391-052B-42FF-9674-F752BDCA9582&displaylang=en
Or the (seemingly) newer version this
Microsoft Core... .
|