httprequest

How to use HttpWebRequest (.NET) asynchronously?

How can I use HttpWebRequest (.NET, C#) asynchronously? ...

Ajax requests from xul not working in firefox 2

I'm working on a firefox extension and have been developing it in firefox 3, i went to test it on firefox 2 and for some reason none of my HTTP requests are firing. The format of the requests are below (using prototype): theResponse = function(response){ //some code } new Ajax.Request(url,{ method:'get', parameters : {url: currentURL},...

C# HttpRequest and different encodings

Hello Everybody Here is my problem. I have a website in ASP.NET / C# which receives some data via GET/POST This is "user filled" data, but not through a web page, it's a software that contacts my server. Problem is, this software is sending data encoded in ISO-8859-1 (so Café would be sent as Caf%e9 ) and the rest of my SW/DB is Unico...

Http Request Monitoring Tool

Hi! I would like to know if anybody can recommend an Http Request Monitoring Tool aside from HttpWatch and Firebug. What I want from the tool is for it to show me the time it took the request to arrive at the web server. HttpWatch can show me the network latency and the server times in one result but i want them separately. My goal is to...

Uri.EscapeDataString(Request.Url.AbsoluteUri) is wrong in different environment, What else should I use?

I am generating a return url link so when the user hits the close button on this page they return to this ReturnUrl. ie http://localhost:42605/Search.aspx?ReturnUrl=http%3A%2F%2Flocalhost%3A42605%2FStuff%2FViewStuff.aspx%3FProjectId%3D2246 This works fine in dev environment, but in uat environment I have http://app-uat.com/Search.aspx...

How to fetch HTML in C/C++

How to fetch HTML in C or C++? with Sockets. Can you give me a Example code pls? NOTE - I originally closed this, but reopened. To the poster - Please see: http://stackoverflow.com/questions/400688/fetch-web-page-in-c and http://stackoverflow.com/questions/389069/programmatically-reading-a-web-page#389074 ...

AJAX - Reload a part of a webpage without the use of a separate file to load

Title might be a bit confusing, so let me explain. I have a website that has a side-panel, which contains information about the user, things the user can do, etc. When the user is not logged in, this side-panel becomes the area for logging in or registration. The code for this is: <?php if($user->loggedIn) { ?> <!-- side-panel for log...

Are https URLs encrypted?

Are all URL's encrypted when using SSL(https) encryption? I would like to know because I want all URL data to be hidden when using SSL(https). If SSL gives you total URL encryption then I don't have to worry about hiding confidential information form URLs. ...

Submitting Data via GET with "Snoopy" in PHP

I'm trying to send data to a url via GET in PHP. I've decided to go with the Snoopy Class after receiving an answer to another question here. The thing is, I cannot seem to find very good documentation/examples for the methods in this class. I see the ->httprequest() method, but I don't see where I can add an array of values along with ...

HttpRequest.Files.Count is less than zero

HttpRequest.Saveas saves the following in a file POST /VoicetrustAP/call.aspx HTTP/1.1 Cache-Control: max-age=3600, max-stale=0 Content-Length: 31988 Content-Type: multipart/form-data; boundary=osb_inet_multipart_boundary Accept: */* Expect: 100-continue Host: 172.20.143.166 Referer: http://172.20.143.166/VoicetrustAP/call.aspx User-Age...

Can an ASP.NET HttpRequest ever be null? How about CurrentExecutionFilePath?

We're getting an odd bug in a production server. We have a stack trace, but no line numbers, so I know the method where the bug is, but not the exact line. It's complaining of a "Object reference not set to an instance of an object." Something is null. After looking at the code, the only two potential culprits that I can see are the ...

Calling a webmethod from C++

Hi guys I am calling a webmethod from C++. The [webmthod] is defined as follows [WebMethod] public string UploadFile(byte[] data) Here is how I call it in C++ static TCHAR hdrs[] = "Content-Type: application/x-www-form-urlencoded"; static TCHAR frmdata[] = "data=temp.txt"; HINTERNET hSession = InternetOpen("MyAgent",INTE...

iphone http request - how to remove some of the headers in the request

Hi, I need to remove some of the headers, e.g. Accept, Accept-Language, etc. in a http request being sent from iPhone to server. NSMutableUrlRequest and CFHTTPMessageRef don't have a way to over-ride what is being sent in the header. It seems like there is no easy way to approach that. Any suggestions? Any help would be greatly appreciat...

How do you make a HTTP request with C++?

Is there any way to easily make a HTTP request with C++, are there any libraries that do this. Specifically, I want to download the contents of a page (an API) and check the contents to see if it contains a 1 or a 0. Is it also possible to download the contents into a string? Code samples would be good. ...

How to POST multiple "record sets" from an HTML Form to JSP or a Java Servlet?

Does JSP or any related lightweight technology like JSTL perform HTTP POST "data grouping", or support form element "indexing" in the way PHP does? For example, you can create an HTML form with the following inputs: <input type="text" name="person[1][name]" /> <input type="text" name="person[1][age]" /> <input type="text" name="person[...

Question with sending an array from PHP to GWT

Hey everyone, I am using a RequestBuilder in GWT (1.6) that successfully sends a String (formatted as a date) to a PHP script on my web server. My PHP then uses that String to query a MySQL Database. I am then able to echo a result, which is successfully interpreted by GWT. My issue is that I don't just want to "echo" back a String. I ...

Reasons not use Winsock for HTTP request?

I currently use a simple winsock solution (WSAStartup, socket, connect, send, recv, closesocket) for HTTP-requests to get a 32 byte response of our own server. Is there a performance or security reason to switch to WinHTTP or another library? ...

accessing remote url's in Google App Engine

I don't know the correct terminology to do a google search. What I want is to make a POST http request to other url, for example twitter, from within mi app in google app engine. If the question is unclear please comment. Thanks! Manuel ...

Can I change the value of a POST value without re-POSTing?

This is using ASP.NET 2.0 in an IIS 6 world. I have a user submitting a form that sends the data to be via POST. The page receiving the data does some simple validations. If validation passes, then a black-box code routine runs that basically reads the data using Request.Form("NameHere"). I'd like to be able to change the value of the ...

How to get HTTP response through socket in java?

I have written a code to send a HTTP request through a socket in java. Now I want to get the HTTP response that was sent by the server to which I sent HTTP request. ...