I'm new to WebSocket and HTML5. Before today, I thought that all the HTML5 standards affect only the clients(broswers); so assume that users have upgraded their broswers, its ready. But after some reading on WebSocket, it seems to me that I need to install something on the server to support it. Am I understand it right?
As an example, i...
Does anyone how to display the last HTTP response in the Blackberry browser? One would think there would be a menu option in the browser app, but I can't find one.
...
I have a custom HTTP server that implements the HTTP 1.1 protocol.
I have no problem using persistent connections, however, I never receive 'Connection: Close' from IE ( I haven't tested other browsers. ) Instead, the 'receive' times out because it seems IE closes the connection.
What header from IE should I look for to gracefully clo...
I'm just learning to code in C, and I wan't to know if anyone can point me in the right direction, or give me an example for a simple HTTP Get request in C.
Thanks :)
...
I want to send a GET web Request to a WCF service:
for example to:
http://TheirServerIP:PortNumber/TheirService/TheirServiceName.svc?op=theirWCFmethod
i want to write a C# code in my page (web aplication) that send HTTP GET request to their service (without WCF Client)
can i do that ?
...
I have a site with audio files in a mySQL database, all of which are available for playback. That works fine by using the headers:
header("Content-length:". $audioLength);
header("Content-type: ". $audioMime );
echo $audio;
Where the $audioLength and $audioMime are stored with the file in the database and $audio is the actual data.
...
I need to resolve a weird issue with Safari playing back mp3 files as streaming files although the entire length of the content and all of the content is provided to the browser...
Apparently, I will have to address Range headers, which is a new topic for me.
How would I monitor the headers being sent and received in Safari? Is there ...
I'm a Lift newbie and I can't digest it's HTTP request/response cycle yet. Handling REST is thoroughly explained in Lift docs but what I'm looking for is much simpler: how do I access HTTP request body/params in my web service (in Scala code of course) ?
...
Hi,
I am trying to automate a few things in wordpress blog, using HttpWebrequest.
i have tried to get the login page "http://mywebsite.net/wp-admin"
and then try to post with login data on page "http://www.mywebsite.net/wp-login.php"
data = "log=admin&pwd=mypassword&wp-submit=Log+In&redirect_to=http%3A%2F%2Fmywebsite.net%2Fwp-admin%2...
I want to get the size of an http://.. file before I download it.
I don't know how to use http request.
Thanks!
...
If a site has php session's in place to enforce authentication/authorization to pages on the site which are implemented in php, how does the same logic enforce access to certain files.
Lets say a repository of files in a directory. So /var/www/html/ is protected via authentication however, this PHP authentication logic won't prohibit...
Hey guys,
Just a quick question,
when I do
request = Net::HTTP::Post.new(path)
Can I do
path = '/api/v1/baskets?apiKey=' + api_key + '&sig=' + sig + '&time=' + time
Where api_key sig and time are some string
or do I need to do
path = '/api/v1/baskets'
request.set_form_data({'apiKey' => api_key, 'sig' => sig, 'time' => time})
...
First of all, Android phone is connected both 3G network and wifi.
At this time I'd like to send http request through 3G network without using wifi.
How can I do it?
Possible Duplicate: http://stackoverflow.com/questions/3605643/id-like-to-send-http-request-through-3g-network-when-wifi-is-connected-in-androi
...
As I understand this can be done by either changing the CNAME record in the DNS. Or this can be done using HTTP redirects. I am wondering what is a recommended way of doing this and pros and cons of each approach. What would be friendlier option for search engine like Google?
...
I'm trying to patch RestSharp for it to be able to POST XMLs with non-ASCII characters as POST request body.
Here's how it gets written:
private void WriteRequestBody(HttpWebRequest webRequest) {
if (HasBody) {
webRequest.ContentLength = RequestBody.Length;
var requestStream = webRequest.GetRequestStream();
...
Hi all,
Generally when we are using GPRS connection , the request will be sent to appropriate host as a http(s) request . In receiving side ( PHP ) , we are able to get the IP address using $_SERVER or $_REQUEST variable . Like that is there any way to get the mobile number that means from which mobile number request being given. Ca...
Hi,
I have got msmdpump.dll set up on a windows 7 machine pointing to an SSAS instance on another server and every request I send is being logged in the event viewer with the following error.
Event ID:
10
Qualifiers:
16653
Message:
Message-handling subsystem: The message manager for the default locale cannot be foun...
Hi, I am running a high volume web service and want to track the number of times the service gets called (per customer). However, I want the logging/writing of this data to have minimal impact on the overall time taken to process the service request.
I have thought of three ways:
Write to file (would need to open the file, read the 'h...
I want to send a http, and get the response result, how can I do so ? Thank you.
...
Hello All,
I have a concern in passing complex objects/any other types: because I always get a bad request...Code snippet below:
Service:
[OperationContract]
[WebInvoke(UriTemplate = "saveXML/", Method="POST", BodyStyle= WebMessageBodyStyle.Bare)]
bool saveXML(XElement xmlString)
{
return true;
}
=========
Client:
private H...