Tagged Questions
0
votes
1answer
23 views
How to reject and HTTP Posts based on content length without parsing the request stream in C#? [duplicate]
Some third party is posting data to our webpage via HTTP Post. I want to set a limit say 1 Kb for HTTP posts, if it is above 1 Kb I need to reject the HTTP post. I don't want to read the whole request ...
0
votes
1answer
28 views
translate curl to .net web request
Here is a curl command from documentation:
curl -g "http://ip.ip.ip.ip/test/xyz.jpg?attributes=size"
Can i just translate it to HttpReqeust like this?
UriBuilder builder = new UriBuilder("http", ...
2
votes
1answer
158 views
Make an http post request to send a JSON file in WP7
I would like to send a JSON file from my WP7 device to my local server. On iOS I used the ASIHttpRequest library and what I did was :
//send json file , using ASIHttpClass
NSURL *url = [NSURL ...
0
votes
0answers
23 views
DigestAuthFixer Throwing Exception (Header nonce not found)
I'm working on a project where I do a Webrequest.
Because of a problem I had a ' 401.1 Authorization required' problem and I used a DigestAuthFixer (Found on the internet) which solved that problem.
...
0
votes
0answers
53 views
C#,C++ web requests/responses trackable?
I been developing C#,C++ web request/response applications for quite a while now, usually software related to tasks such as automated website testing and similar sorts of functionality.
I'm curious ...
-1
votes
1answer
95 views
passing headers into file_get_contents() for a json request [duplicate]
I need to pass these headers into the $context variable, i tried using putting the values into an array and then passing it into stream_context_create() function but i get http warnings from the ...
0
votes
0answers
216 views
Android http client protocol exception
I am developing small android application in which i tried to send simple image to my server. My problem is that when i tried to add header content-length it gives me error http client protocol ...
1
vote
0answers
74 views
how to send Image to server with content length and image data as body?
I am developing one android application and in my application i want to send image data to my server. So I am using put request. I dont want to send image data with json object. I just want to send ...
1
vote
1answer
226 views
Where do the request headers for initial GET HTTP / 1.1 requests originate?
edit: I'm also not convinced HttpListener does anything
So response headers != request headers for the next post.
Why does a browser begin with correct request headers, but a simple GET HTTP / 1.1 ...
0
votes
1answer
62 views
How to specify that a file should be fetched if either its content length is greater than the local copy or it has been modified since?
I know how to make a request that says "fetch the file only if it has been modified since a specific date".
HttpWebRequest request = (HttpWebRequest) WebRequest.create(url);
request.IfModifiedSince = ...
0
votes
1answer
78 views
what's the meaning of “q=0.9,*/*;q=0.8”
i am studying http protocol. when i use fiddler to catch a request, i find some arguments special.
part of http request:
Content-Type: multipart/form-data; ...
1
vote
0answers
79 views
Why my programatically pulled webpage is different from what i see in the browser?
I am using crawler4j to pull some data from Google play store (https pages). However, I checked my downloaded html content and found that it is slightly different from the page source I see in the ...
0
votes
1answer
102 views
Don't know which file I'm downloading
I'm trying to download a file, from a link that looks like:
www.sample.com/download.php?id=1234231
I don't know which file I'll get from this link.
First I tried webclient.downloadfile(link,path) - ...
-1
votes
1answer
140 views
How to use browser cookies programmatically [closed]
I have a crawler that automates the login and crawling for a website, but since the login was changed it is not working anymore.
I am wondering, can I feed the browser cookie (aka, I manually ...
0
votes
1answer
131 views
Omit images from webpage requested through HttpWebRequest
I fetch webpages in order to feed data to my application. However, the pages contain a lot of images which I don't require at all. I only need the text data.
My problem is that the web requests take ...
0
votes
2answers
91 views
How to differentiate between different http requests by how they are initiated
I am working on a networking program that monitors network traffic. I would like to separate all http requests based on how they are initiated. I am considering the following four types of request.
...
2
votes
1answer
241 views
Is to possible to find filename from http headers
Usually when downloading files, suppose using QNetworkAccessManager, the filename is not present at the end of link. How to get proper file names in that case. Even if link doesn't contain a hint of ...
0
votes
0answers
179 views
Get a video's Header.length (File Size) in Windows Phone SDK
I am trying to get the Video size in MB for Windows Phone. This video is streamed to a given Windows Phone and I want to display the size of the video. I'm using MediaElement to play the video inside ...
1
vote
2answers
126 views
Access YouTube with ASP.NET and YoutubeFisher but gets HTTP Error 403
I'm trying to use YoutubeFisher library with ASP.NET. I make an HttpWebRequest to grab html content, process the contest to extract the video links and display links on the web page. I managed to ...
0
votes
2answers
457 views
How to set a custom variable in HTTP header while POSTing a request
I want to add my Machine Name to the http request header as a custom
variable in JAVA .
Here is my code :
private void sendIssuesToWebService(Issue issue) {
// TODO Auto-generated ...
0
votes
0answers
1k views
How to construct a soap service request using C# for HTTPWebRequest?
I'm writing here with query in consuming a soap service with HTTPWebRequest for Windows Phone application. I'm following the below to steps to construct the request and pass to the server. But i was ...
0
votes
1answer
107 views
Configuring Request Headers in BITS (Microsoft Background Intelligent Transfer Service) in C#
I am trying to download a file through BITS and the job is failing ( giving me a error) as i failed to mention "referer" in http header in the GET request.
BitsManager manager = new ...
1
vote
2answers
763 views
Customizing Header of a Web API Requests via JQuery/JavaScript (AJAX) or WinForms
I am learning and using Web API and need to implement following Authentication mechanism:
Very First call to Web API will be a Handshaking (Login and token
sharing). Login Method of the Web API ...
0
votes
1answer
999 views
Why do I receive this error: The remote server returned an error: (417) Expectation Failed
A friend show me this sample code to implement HTTP POST in C# and did work out in a WINFORM App:
http://www.terminally-incoherent.com/blog/2008/05/05/send-a-https-post-request-with-c/
And ...
1
vote
1answer
2k views
How to send variables using HttpRequest using method post?
First, check this message which I was trying to do:
Login
To log on to Windows8 service is through the URL: http://app.proceso.com.mx/win8/login
This URL HTTP Request Method receives POST variables ...
0
votes
1answer
3k views
Using HttpRequestHeaders in WinRT & C#
I'm using HttpWebRequests to contact an API and need to add a header but the compiler tells me that the method does not exists.
Yet, when I check MSDN, it tells me that the method already exists.
...
2
votes
2answers
545 views
Truncated response received using HttpWebRequest
I'm using the following code to make HttpWebRequests to a web site:
public static HttpWebResponse SendGETRequest(string url, string agent, CookieContainer cookieContainer)
{
HttpWebRequest request ...
4
votes
1answer
4k views
How can I retrieve IP address from HTTP header in Java
I am curious if there is any library that handles already this kind of stuff, or I have to do it by myself once again. So, the thing is I want to get IP address field from the visitors HTTP header ...
3
votes
2answers
127 views
How to detect a prohibited file download?
Internet explorer has a security setting, which allows enable/disable file download. There is a button in our application which which opens the file (e.g. .xls) with window.open("fileurl"). Is it ...
0
votes
1answer
272 views
Changing absolute URI to relative in HTTP POST header
I have the following POST request:
POST http://blah/Request HTTP/1.1
Host: blah
Content-Length: 322
Proxy-Connection: Keep-Alive
<?xml version="1.0"?>
<Envelope>
<Header>
...
1
vote
3answers
954 views
405 - Method Not Allowed HttpWebRequest
I have a problem when trying to send a POST request. The sending method looks like this:
Public Sub SendXML(ByVal file As String)
Dim reader As New StreamReader(file)
Dim data As String = ...
4
votes
4answers
1k views
How to get only the response code from a HTTP Request in Ruby
I have a list of urls, I need to check which of the following urls are valid.
The code I used is
require 'net/http'
url = 'http://mysite.com'
res = Net::HTTP.get_response(URI.parse(url.to_s))
puts ...
2
votes
1answer
510 views
ETag not being returned by WebResponse Header in c#
I am trying to extract the ETag from the response header. It does exist in the response. I can see it using firebug and I can see it in the response object using the inspector:
Status: 200 OK
...
2
votes
2answers
2k views
How to send KeepAlive header correctly in c#?
I need to send a request like this using HttpWebRequest:
POST ...
2
votes
1answer
890 views
Difference between set-cookie2 and set-cookie
Is there any advantage of using set-cookie2 over set-cookie.
And is there any difference in how they affect the functionality on server and client side.
0
votes
1answer
503 views
Changing http request header
I just wanted to know. Is it possible to change the http request headers sent to servers? like ip, remote address.. etc... I'm aware that I can change user-agent...
2
votes
1answer
712 views
What is content data format of HTTP response when content-type header is image/jpeg?
Just curious, what is the content data type format of HTTP response body when content-type header is image/jpeg, binary? Was unable to see the raw content of HTTP response when viewing via Mozilla ...
0
votes
0answers
39 views
Difference between request types?
I'm developing an HttpLitener C# application that receive requests from client & count them.
But the problem is there is some automatic requests are sent from the user which he didn't click them ...
1
vote
1answer
529 views
Symfony2 basic http auth, works with curl but not on Android
I'm trying to authenticate a user on my symfony2 server.
The authentication works with curl in cli :
curl "http://localhost:8080/app_dev.php/app/user/profile.json?id=4" -u foo:bar --basic
But with ...
0
votes
1answer
419 views
HTTP Post To Self To Test Handler
I am currently working with a generic handler in asp.net. I believe it is currently in a sort of "listening" state awaiting POSTs. I am expecting a POST with a filename Header, and once received the ...
1
vote
1answer
703 views
HTTP protocol deep understanding? how does it affect best practices in web programming? [closed]
Understanding HTTP/TCP protocol is a bonus point for a web developer.
But does it really matter for a better client/server programmer?
core of the web is HTTP but my question is, is it worth to read ...
0
votes
1answer
707 views
Get Cookie issue after login to website using C# HttpWebRequest (Cookie is generated by javascript)
I am doing a project to login a website by C#.
This website's cookie is created by Javascript, I. can't get it. Do you have any ideas?
Only after logined I can read resources I need from that ...
0
votes
1answer
138 views
What are the defaults, if any, for HTTP POST request headers when uploading a file?
What I mean is for example when you send a form that includes a file upload via POST, the POST request contains certain information like "Content-Disposition", "Content-Type", ...
0
votes
1answer
245 views
file upload fail using HTTP POST through C++
I am getting HTTP/1.1 500 Internal Server Error what i am trying to do is i am sending a http packet though socket the http packet contains data and a file here is my packet
POST /my/service ...
1
vote
2answers
395 views
Ways to find out source of a HTTP request?
What are the various ways through which I can find out the source from which a HTTP request is generated? I know only one, i.e. HTTP referrer field. Is there any other way also?
EDIT: Here I am only ...
1
vote
4answers
441 views
How can I get the name of a HttpResponseHeader?
I am able to loop through a response.Headers collection and display the value for each header like this.
HttpWebRequest req = (HttpWebRequest)WebRequest.Create(postDest);
//Set up the request with ...
1
vote
1answer
172 views
PHP How detect randomly genarated IP from HTTP Request?
I have created one web application using PHP.I want know the IP randomly generated or not from proxy or client side application.Our application only allow one click per IP address.
I had checked the ...
1
vote
1answer
535 views
X-MicrosoftAjax: Delta=true - specify - web request
I need to enclose this X-MicrosoftAjax: Delta=true in web request. Can you tell me related property to this.
thanks !
1
vote
1answer
71 views
Get last update date and time from head request
From this array I need the date and time according to GMT+1. First question is how do I get the ' date ' from the headers array. Second, how do I format it to 2011-10-09 08:40 (which is the format, ...
5
votes
1answer
3k views
HttpWebRequest keep alive - how is the connection reused by .net?
Hy,
I am using HttpWebRequest in 10 concurent threads to download a list of images. I sorted the images after the hostName so each of this threads are getting an image from the same Hostname.
...

