Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

8
votes
11answers
487 views

Is GET data also encrypted in HTTPS?

When you GET https://encrypted.google.com/search?q=%s The %s query is encrypted? Or just the response? If it is not, why should Google serve it's public content also with encryption?
8
votes
3answers
2k views

Is querystring parameters secure in HTTPS (HTTP + SSL)?

Do querystring parameters get encrypted in HTTPS while send over the link?
8
votes
6answers
23k views

HTTP GET in VB.NET

What is the best way to issue a http get in VB.net? I want to get the result of a request like http://api.hostip.info/?ip=68.180.206.184
7
votes
2answers
3k views

node.js Writing image to local server

Edit: The accepted answer was good for last year but today I would use the package everyone else does: https://github.com/mikeal/request I'm trying to grab google's logo and save it to my server ...
6
votes
1answer
2k views

What is the difference between [AcceptVerbs(HttpVerbs.Post)] and [HttpPost]?

I can decorate an action either with the [AcceptVerbs(HttpVerbs.Post)]/[AcceptVerbs(HttpVerbs.Get)] [AcceptVerbs(HttpVerbs.Post)] public ActionResult Create(string title) { // Do Something... } ...
5
votes
3answers
326 views

Model binding and GET requests?

There are tons of examples for model binding in html forms, but I'm wondering if its possible to, and if so how to, use model binding for ActionLinks/GET requests. So, given the following model ...
4
votes
1answer
152 views

Spurious jQuery ajax GET parameter

I have this PHP in a while loop: echo "<td><a href='#' class='po'>" . $row['order_no'] . "</a></td>"; and this jQuery: $(".po").click(function(){ var po = ...
4
votes
4answers
475 views

Asynchronous WebRequests using C#

Hi i have a function that passes url Get parameters to a php file on a webserver and waits for a response from the file (normally takes 10-20 seconds). I want to put this inside a loop because I have ...
4
votes
4answers
592 views

how to send HTTP request by GET method in PHP to another website

I'm developing a web application for sending SMS to mobile from website like 160by2. I can prepare the URL required for the HTTP GET request as mentioned in the API provided by the SMS Gateway ...
3
votes
2answers
50 views

HTTP Get: Only download the header? (HEAD is not supported)

In my code I use some Http Get request to download some files as a stream. I use the following code: public String getClassName(String url) throws ClientProtocolException, IOException { ...
3
votes
1answer
116 views

HttpClient will only execute once Android

My HttpClient, HttpPost, or HttpGet method is only working once. I can successfully log in an get html from the response the first time, but when I try and log in a second time, the html is blank and ...
3
votes
1answer
489 views

Methods with Nullable Types not working in ASMX Web Service using GET

I have an ASMX Web Service set up to use the HTTP GET method. Simple methods which take basic String and Int parameters are working ok, and I can call MyService.asmx/MethodName?Param=Value and get a ...
3
votes
1answer
544 views

How to HTTP GET or POST with Matlab or Octave?

In Matlab Function Alphabetical Reference I only found the following function: web - Open Web site or file in Web or Help browser Isn't there a way of accessing a web resource without opening a ...
3
votes
3answers
355 views

Is it wrong to return 202 “Accepted” in response to HTTP GET?

I have a set of resources whose representations are lazily created. The computation to construct these representations can take anywhere from a few milliseconds to a few hours, depending on server ...
3
votes
2answers
91 views

Can GET and POST requests from a same machine come from different IPs?

I'm pretty sure I remember reading --but cannot find back the links anymore-- about this: on some ISP (including at least one big ISP in the U.S.) it is possible to have a user's GET and POST request ...
2
votes
3answers
96 views

Redirect Loop MVC3 Search Form Using HttpGet

hope someone can help because I've been racking my brains for the best part of yesterday evening! Basically, I'm trying to get a search form working using HttpGet so I can potentially retrieve ...
2
votes
1answer
307 views

WP7: can't get img from httpget url using webclient.OpenReadAsync

I need to get image from this API on Windows phone7 appplication, getvmsimg Description : API for get variable message sign (VMS) as img URL: ...
2
votes
0answers
208 views

How to set the progress of a ProgressBar for an HttpClient.execute(HttpGet)? [closed]

Possible Duplicate: Android - Displaying a progress bar while downloading a file I do some http get request with HttpGet and HttpClient. What should I call as the parameter for ...
2
votes
1answer
289 views

Facebook Graph API: Any constrains to the query string length when making a GET request to https://graph.facebook.com/?

Does anybody know if there are any constraints to the query string length when making a GET request to Facebook graph API? So far I've not encountered any problems but it's very important to know if ...
2
votes
1answer
359 views

401 Unauthorized while using Pinboard API for add post in Android

Hey all, I am using the Pinboard API for adding a post from my Android App. Each time I send the GET request with the required credentials and arguments, I get the 401 Unauthorized response code. I ...
2
votes
1answer
716 views

Pass one parameter in a Tornado HttpGet with several parameters

I want pass one parameter in a Url (to update one of many paramaters contained by my URL) like this: httpGet.setURI(new URI(url/user?"nickname"="John") ServerSide in Python: class ...
2
votes
2answers
841 views

Exception when using HttpClient to execute GET after POST

I use Apache's DefaultHttpClient() with the execute(HttpPost post) method to make a http POST. With this I log on to a website. Then I want to use the same Client to make a HttpGet. But when I do, I ...
2
votes
4answers
412 views

OS X: equivalent of Linux's wget

How can I do an HTTP GET from a Un*x shell script on a stock OS X system? (installing third-party software is not an option, for this has to run on a lot of different systems which I don't have ...
2
votes
3answers
720 views

Simple GET request with PHP cURL to send SMS text message

I'm creating quick web app that needs to send a php-created message from within php code. cURL is apparently the tool for the job, but I'm having difficulty understanding it enough to get it working. ...
2
votes
2answers
373 views

Parsing HTTP Get requests into constituent fields

I have fields like: "GET /?blahblahblah HTTP/1.1" 200 43 "http://www.thesun.co.uk/sol/homepage/" 1 blahblah - "en-gb" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB0.0; ...
2
votes
1answer
89 views

Is there a way to merge get parameters? - HTML/Javascript

often I find myself suprized about simple things, I'm not sure but I believe that this might be one of them. Often I find myself needing to merge get attributes, especially within filters and search ...
2
votes
2answers
233 views

Safe Data serialization for Plain HTTP GET & POST communication

I'm using the client's browser to submit HTTP request. For report generation the securityToken is submitted as POST, for report download the same token needs to be submitted by the user browser, this ...
2
votes
3answers
351 views

AJAX requests hang when served in quick succession

On my laptop I have an app that makes 7 AJAX GET requests to a single PHP script at about the same time (millisecond difference). They all return successfully with the result I want. Then I moved ...
2
votes
3answers
923 views

How to detect a firewall in Windows?

My app needs to make a GET request to a website and I'd like to be able to know if it's being blocked by a firewall, and ask the user to add an exception. How can I find out that my get request ...
1
vote
2answers
54 views

HTTP methods in phonegap

What is the best way to make HTTP GET in phonegap? I don't want to use java for this, so now the question is whether it should be done in jQuery, or in js. I read that js in phonegap is mostly used ...
1
vote
1answer
42 views

Using GET for a non-idempotent request

Simply put, I have a website where you can sign up as a user and add data. Currently it only makes sense to add specific data once, so an addition should be idempotent, but theoretically you could ...
1
vote
2answers
86 views

Security implications of HTTP GET with REST web service

I have used an approach very similar to the one to implement an Api Key approach to identifying which clients use a web service: ...
1
vote
1answer
101 views

JSoup skipping elements Android

JSoup seems to be skipping some elements in my HTML string. I am 100% positive everything is in the HTML String, but JSoup is only reading some of the elements when I select them to be parsed, or none ...
1
vote
3answers
206 views

Post Redirect Get Hide URL Parameters

Let me try to set the scenario here first. This is done using ASP.NET 4.0, MVC3, and C#. I have a picture gallery. I have a manager for the albums in the picture gallery. Each gallery has a set of ...
1
vote
1answer
93 views

Android HttpGet not working on Android 4.0?

I am using a code that retrieves and shows the Changelog if its the first startup, simple as that :). This works well on Android 2.3 and lower, but when trying on Custom ICS-ROM and on Emulator, it ...
1
vote
1answer
60 views

Getting images with HTTP Request in C

I am writing a program in C that acts like a proxy server in a Linux system: Client asks it for a web page, it sends an HTTP GET Request to a distant server, and it gets the servers response (web ...
1
vote
2answers
77 views

HTTPClient - HTTP GETs broken with a # anchor in a redirect URL

This is a bit of a weird one. I'm using HTTPClient 4.1.2, and it seems that whenever it finds are URL with something like a '#' in it, it does a full get with the # in the URL. For example, trying ...
1
vote
0answers
95 views

webmethod with optional C# arguments appear to be required when invoked as a RESTful URI - gives InvalidOperationException: Missing parameter

I have a webmethod which works and I've added some optional parameters (because I don't want to burden all callers with providing these values; they are primarily for my development needs since my ...
1
vote
2answers
119 views

UnknownHostException (webservice http-get)

I have this simple code, that makes a get to a webservice. For some reason it cant connect and gives the error in the log unknownHostException This is the code: String URL = ...
1
vote
1answer
35 views

Can I flip the HTTP Method from GET to POST in some form of JSP redirect?

I've got a JSP redirecting to a URL backed by a servlet just fine - for example, with <jsp:forward page="/myservlet"/> but I'd like to switch the method from the incoming GET to a POST ...
1
vote
2answers
98 views

What does the ? mean in “format(List<? extends NameValuePair>”

I'm following the indications on this post to create a a parametrized URI for an Http GetMethod (http://some.domain/path?param1=value1&param2=value2) and I ran into a new issue. I have this code: ...
1
vote
1answer
281 views

IIS URL Rewrite - Convert POST to GET

In my application there is a client and a WCf REST service. For invoking some wcf service the client is doing an http POST even though the service is a GET. i do not want to do any changes in the ...
1
vote
2answers
262 views

Python Socket and Thread pooling, how to get more performance?

I am trying to implement a basic lib to issue HTTP GET requests. My target is to receive data through socket connections - minimalistic design to improve performance - usage with threads, thread ...
1
vote
1answer
143 views

Uri problems

So Im trying to create a url to use httpget on, to download the page source. But Im having problems every time I run the app it says i have an illegal character in the string/uri. Here's the code Ive ...
1
vote
4answers
266 views

jQuery: how to make the URL called by jQuery.getJSON() visible in the browser address bar?

I use ajax-solr as a front-end for Solr search. In order to get the search results, ajax-solr uses jQuery.getJSON() to GET a specific URL from the server. The relevant code is here: AjaxSolr.Manager ...
1
vote
2answers
139 views

How to extract variable from http_get response

I have successfully completed an HTTP GET request using PHP and cURL. How do I extract a variable from the response? Here is the response I am receiving: <?xml version="1.0" ...
1
vote
1answer
385 views

Incomplete response after httpget on 3g Android

in my Android application i am trying to get a website using the httpclient and the httpget. it is working fine on the emulator and on my HTC Desire HD. but when i disconnect from wifi and try to get ...
1
vote
1answer
220 views

HTTP GET for ASMX Services

I'm trying to enable a webservice to accept HTTPGet. I've done this in the past, but I have a feeling BlogEngine.NET may be interfering somehow. I've added these sections to web.config: ...
1
vote
1answer
1k views

android httpclient and utf-8

I'm trying to connect to a webservice where my querysting holds some data. The bad thing is that this data contains utf-8 charcters, which renders a problem. If I simply call HttpGet with the ...
1
vote
1answer
2k views

Java httpclient to log into website and download file - Session Problems!

I log on to a website using the POST method (httpclient from apache). I let the HttpClient execute the HttpPost, let the connection manager release it and then I want to post a GET message that opens ...

1 2 3 4