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
57 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
136 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
308 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
269 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
496 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
131 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 ...