Tagged Questions
0
votes
0answers
11 views
Browser Plugin to Limit Query String Length?
We are having difficulties with some browsers cutting off some of our query strings due to their length.
Does anyone know of a Firefox, IE, Chrome add-on/plugin that allows you to dictate a maximum ...
0
votes
1answer
13 views
Server doesn't recognize file with GET
I have a problem with server and too upset and don't know what to do, never met such problem.
The index2.php file is ok and working, but when I add $_GET it doesn't find the file.
For example ...
0
votes
0answers
60 views
To keep flash win projector file top of screen in full screen mode
I am using action script 2 for my flash project and using
onEnterFrame=function(){
fscommand("fullscreen", true);
}
for full screen mode.
In my flash i am using a url link on button to send ...
1
vote
2answers
56 views
Is it valid to combine a form POST with a query string?
I know that in most MVC frameworks, for example, both query string params and form params will be made available to the processing code, and usually merged into one set of params (often with POST ...
1
vote
3answers
135 views
Forward a QueryString to another Server
I have a webapp that accepts a messageid and status as a QueryString from an external server. I am migrating the webapp to a new server, but I need the new server to forward the QueryString to the old ...
1
vote
0answers
50 views
Malformed HTTP Queries
I had an interview question a while back where I was asked to write my own version of PHP's http_build_query function, which accepts a hash of keys and values to encode as parameters in a web request. ...
0
votes
2answers
302 views
What is a valid URL query string?
What characters are allowed in an URL query string?
Do query strings have to follow a particular format?
1
vote
0answers
170 views
HTTP query string semicolon parameters separation
HTML 4.01 specification (B.2.2 Ampersands in URI attribute values) recommends HTTP servers to accept semicolon (;) as a parameter separator (for which ampersand & is in use).
Is any server ...
1
vote
1answer
122 views
HTTP query string and []
PHP uses [] in query parameter names to ensure that multiple occurrences of a parameter are all present in $_GET superglobal variable. (Otherwise only last occurrence is present.) (Any other software ...
0
votes
0answers
215 views
HTTP query string format
Recently I was researching HTTP query strings while wondering about possibilities on web service access interface API. And it seems very underspecified.
In fact RFC 3986 (Uniform Resource Identifier ...
1
vote
2answers
268 views
HTTP query and URI encoding doubts
Recently I was researching HTTP query strings while wondering about possibilities on web service access interface API. And it seems very underspecified.
In fact RFC 3986 (Uniform Resource Identifier ...
2
votes
1answer
493 views
Where's the HttpUtility.ParseQueryString Method in WinRT?
Since HttpUtility is not avalible in WinRT, I was wondering if there's a straightforward way to parse HTTP query strings?
Is there acctually some equialent to HttpUtility.ParseQueryString in WinRT?
1
vote
1answer
130 views
How to send URL variables programmatically with response from my PHP endpoint
I have a basic API endpoint set up on my site, which a 3rd party site will use to verify certain info that is entered into a form by the user.
Here's the flow:
1. User is on 3rd party site.
2. User ...
1
vote
0answers
71 views
PHP: persist specific query strings within a navigable web application [closed]
Need to be able to generate links that don't lose track of where the user is within a site. Would be nice if this could work with forms too, for example with a hidden "redir" input field.
But, only ...
0
votes
1answer
107 views
Is sending query string while using any HTTP method compliant with HTTP protocol?
Are all these combinations compliant with HTTP standard?
GET /entities/?param=value HTTP/1.1
POST /entities/?param=value HTTP/1.1
PUT /entities/?param=value HTTP/1.1
DELETE /entities/?param=value ...
1
vote
2answers
237 views
html forms: checkboxes group for pretty url query
I have the following search form:
each field is a checkbox, so each group is multiselectable
<form action="search">
<fieldset id="type">
<legend>Offer ...
0
votes
2answers
240 views
Http Request Methods, and Parameters
well, out of curiosity, what are the HTTP methods that accept parameters in the query string? they all? which HTTP methods in which the parameters have to be sent via cURL POSTFIELDS?
5
votes
4answers
292 views
What purpose is of “&rnd=” parameter in http requests?
all!
Why some web-applications use http-get parameter "&rnd=" ? What purpose is of it?
What problems are solved by this tag?
0
votes
2answers
1k views
What is the maximum length for a querystring?
I'm using HTTP requests in my program to pass data via a querystring to a web-based status page. The requests are of the form:
...
1
vote
3answers
190 views
Weird query: “equal slash id” (=/id) gives weird error: 501
This is the weirdest problem of my life, and can't even Google it. It's happening on an Apache powered website written in PHP, which uses mod_rewrite (but that's not the issue, I tried removing the ...
1
vote
2answers
139 views
Web applications: should extraneous/unneeded query string arguments just be ignored?
I am still fairly new to web application development, so perhaps this is a n00b question.
It seems like most websites will just silently ignore query string arguments they do not need nor understand. ...
7
votes
3answers
1k views
What is the correct encoding for querystrings?
I am trying to send a request to an url like this "http://mysite.dk/tværs?test=æ" from an asp.net application, and I am having trouble getting the querystring to encode correctly. Or maybe the ...
0
votes
2answers
131 views
Defining a variable as a url in a page source using VB.net?
Im writing a program in VB.net that consists of three main steps:
STEP 1: Display the source code of a webpage that is streaming a movie on it in textbox1.
STEP 2: highlight the URL to that movie in ...
2
votes
1answer
1k views
Query string with keys without values
What drawbacks can you think of if I design my REST API with query strings without parameter values? Like so:
http://host/path/to/page?edit
http://host/path/to/page?delete
...
2
votes
4answers
142 views
Is it a good idea to check the HTTP request query string and indicate an error once there's an unexpected parameter?
My ASP.NET application will have to handle HTTP GET requests that will have the following URL format:
http://mySite/getStuff?id="actualIdHere"
currently the requirement is to validate that there're ...
3
votes
1answer
897 views
Why does Python's urlparse.parse_qs() split arguments on semicolon
I'm writing a test script in Python to check the output of my PHP application and I've got a problem with Python's urlparse.parse_qs() function. GET string delimiter (AFAIK) is an ampersand. The ...
11
votes
2answers
7k views
4
votes
1answer
383 views
Lift Web Framework query string generator
How do you create a link with query string parameters:
/path/to/view?param=358&name=Something+with+spaces
in Lift? I know you can simply write it, I am looking for a wise approach, which encode ...
2
votes
3answers
5k views
How to pass query string parameters to the PHP binary?
I am developing a webserver that invokes the PHP binary (via CGI) to process a script.
Here's the problem:
The PHP script isn't picking up the command line parameters. For example, if the client ...
19
votes
1answer
4k views
Semicolon as URL query separator
Although it is strongly recommended (W3C source, via Wikipedia) for web servers to support semicolon as a separator of URL query items (in addition to ampersand), it does not seem to be generally ...
8
votes
3answers
7k views
What is the limit on QueryString / GET / URL parameters
What is the limit on QueryString / GET / URL parameters
13
votes
1answer
3k views
What characters must be escaped in an HTTP query string?
This question concerns the characters in the query string portion of the URL, which appear after the ? mark character.
Per Wikipedia, certain characters are left as is and others are encoded (usually ...
0
votes
1answer
776 views
Is it possible to fire an onclick event in an url or query string?
I have a web page with a off-site links whose onclick events are handled by jQuery. The jQuery fetches the content of the page the link points to and inserts it into a div.
What I would like to do is ...
4
votes
3answers
204 views
is a query string with a / in it valid?
Due to a miscommunication with an affiliate partner we're working with the URL they call on our server has been mixed up.
This is the URL they are supposed to call on our server :
...
0
votes
2answers
89 views
There is any WCF binding that accepts the data in a HTTP query string?
There is any WCF binding that accepts the data in a HTTP query string?
0
votes
2answers
335 views
What is the query string of a BlazeDS request?
I have a Tomcat service running on localhost:8080 and I have installed BlazeDS. I created and configured a simple hello world application like this...
package com.adobe.remoteobjects;
import ...
4
votes
4answers
2k views
Multiple params in http get request
Are urls of the form http://asdf.com/something.do?param1=true?param2=false valid?
I don't think the second ? is allowed in valid urls and that it should instead be an ampersand (&), but I'm ...
5
votes
3answers
689 views
How should I encode dictionaries into HTTP GET query strings?
An HTTP GET query string is a ordered sequence of key/value pairs:
?spam=eggs&spam=ham&foo=bar
Is, with certain semantics, equivalent to the following dictionary:
{'spam': ['eggs', 'ham'], ...
7
votes
2answers
551 views
RESTifying URLs
At work here, we have a box serving XML feeds to business partners. Requests for our feeds are customized by specifying query string parameters and values. Some of these parameters are required, but ...