The query-parameters tag has no wiki summary.
2
votes
1answer
20 views
How to mod_rewrite a query parameter to a path folder name?
I'm doing my first steps with url-rewriting and can't get the following to work:
In my application, a skin can be loaded by applying query parameter ?skin=some_id to any page in the application. I ...
0
votes
0answers
26 views
Filter Tastypie resource using OR logic
I'm trying to come up with the best way to express an OR query for a ModelResource filter.
I'm pretty sure I'll have to override ModelResource.build_filters() or ModelResource.apply_filters() with ...
-1
votes
0answers
9 views
Append query paramters to outbound links on wordpress site [closed]
I was wondering if anyone knew how to do the following operation in wordpress.
1) If a link is built in wordpress, check to see if it matches www.specificURL.com
2) If it does match that URL, ...
-1
votes
1answer
52 views
Sending a post query with multiple (LOTS) of parameters
We have several tables with 50+ fields that would have to be passed as parameters using RESTful services (RESTeasy), however we want to avoid 50 lines of @QueryParam("field") Object field. Is there a ...
1
vote
1answer
89 views
Using Query String in REST Web Services
I thought one main characteristic and reason for using REST web services was not to use path parameters rather than query parameters. But so many of publicly available REST web services such as this ...
0
votes
1answer
42 views
Apache Camel: Query Params vs Header Params
I'm currently trying out Apache camel (as routing engine). I understand that Camel supports multiple DSLs and that it could be configured using Java (Java DSL) or Spring (Spring DSL).
Question:
I ...
1
vote
2answers
96 views
Is there any way to get the “full” URL of jquery jqGrid to maintain state of filters?
I am using jqGrid and I have used the advanced column search dialog to filter on multiple columns. I now want to "send" this URL to another person so they can see exactly what i see. The issue is ...
0
votes
1answer
36 views
Perl Cant enter a for loop with URI::QueryParam
I have the following piece of code:
use strict;
use warnings;
use URI;
use URI::QueryParam;
open (URLS, "<urls.txt");
open (EXTRAPARAMS, "<extraparams.txt");
my @words = ...
1
vote
2answers
43 views
What would the toQueryParams() will retun when the url http://www.google.com in prototype
I have a senario to get Query Params from the URL.There is a method called toQueryParams() whcih will get all params.
But when the URL is http://www.google.com the same method returning the same url ...
1
vote
0answers
84 views
Active resource param serialization issue
I'm trying to pass the following ruby hash into an active resource(3.0.9) find(:from) call.
my_hash = {
:p => {:s => 100, :e => 2},
:k => "blah",
:f ...
0
votes
0answers
16 views
Not getting all parameters through Restful Webservices
In a Restful webservice using jersey,user is suppose to pass multiple parameters in the URL and they are read through @Queryparam . But when I'm trying to read them the last parameter is always ...
1
vote
1answer
146 views
jsf get key/value parameters from GET request
in my web app I can't get the key values of query parameters with a single validator.
My webpage:
<f:metadata>
<f:viewParam name="version" value="#{myBean.version}"
...
0
votes
2answers
50 views
Fetch query params in a SET in Javascript [duplicate]
Possible Duplicate:
How can I get query string values?
Convert URL parameters to a javascript object
In my application, there is a page where I need to retrieve the page url (from the ...
3
votes
1answer
319 views
How to pass data to Asp.net Web API through Windows Phone 7
I am wondering how do you send data back and forth when using Windows Phone 7 and asp.net web api?
I have this method in my webapi
public HttpResponseMessage Get(VerifyUserVm vm)
{
if ...
0
votes
1answer
793 views
Android HTTP GET parameters
I'm using the apache http library and need to know how to add a parameter to an HTTP GET request. I've looked over How to add parameters to a HTTP GET request in Android? but the accepted answer for ...
1
vote
1answer
228 views
Specifying Multiple Query Parameters in http:outbound endpoint in Mule
In my Mule-config.xml, I do a http post to a service using 2 query parameters...I tried to add 2 query parameters like this:
<http:outbound-endpoint
...
0
votes
2answers
83 views
sending a second query parameter to a servlet
In my web-app the client pings the server (tries to contact a ping servlet on the server) wheere the address / resource locator of the servlet is :
"192.168.43.187/server/ping?" + new ...
0
votes
2answers
64 views
Intersecting arrays based on multiple query parameters
@data, @x, @y, and @z are all arrays of the same type. I use @data in my view to iterate through it and display all the values.
@data = if params[:a] == "1"
@x
elsif params[:b] == "1"
@y ...
0
votes
2answers
169 views
extract value of a query parameter in varnish
I have this url:
http://my.api.com/v1/{api_key}/{user_token}/?someparam=hello&force=true&someotherparam=world
where api_key and user_token are uuids
How do I extract the value of the force ...
0
votes
1answer
1k views
ZF2: using url helper and reuse query parameters
I'm trying to reuse query params using Url helper in a view. This is my current url:
http://localhost/events/index?__orderby=name&__order=asc
I'm using this code in the view:
...
0
votes
0answers
243 views
Entity Framework Oracle and DbSet.SqlQuery parameters
Using Entity Framework 4.3.1.0 connecting to an Oracle database. When trying execute the code below i keep getting the exception below. I have tried changing the parameter in the query to @name or ...
0
votes
1answer
2k views
Ways to access the query parameters JSP, JSTL, Javascript
I have been using the following 3 ways to access the query parameters in the URL.
JSP
String success = request.getParameter("success");
if(success!=null) {
//do something
}
JSTL
<c:if ...
0
votes
0answers
15 views
Is there a way to discover the query params accepted by an undocumented endpoint?
I write a lot of scrapers that mine data from poorly documented or completely undocumented resources. For example, Amazon documents only one of the query params accepted by it's rss feeds "tag", while ...
0
votes
1answer
111 views
Wordpress query string with cpage parameter results in 404 error and wrong redirection [closed]
I have a Wordpress blog and I've discovered some links coming from other sites are going to a 404 page even though they should work. When I first setup the WP site, I didn't use rewritten URLs, but a ...
-1
votes
1answer
37 views
MySQL Order of Operations For IN parameter [duplicate]
Possible Duplicate:
Mysql or/and precedence?
If I have a query that looks like this:
SELECT *
FROM `users`
WHERE 'gen'='0' OR `gen`='1' AND `id` IN ('405','406','407',...),
will it ...
2
votes
1answer
69 views
INSERT query shows data inserted but actually no data is inserted
I run a parameterized INSERT query, it returns 1 (1 row is inserted). But when I view the table in SSMSE, I see nothing. The return statement in the code below returns 1.
Here is the code:
...
0
votes
1answer
155 views
PostGIS query failing due to escape string?
I have this Postgres/PostGIS query:
UPDATE raw.geocoding
SET the_geom = ST_Transform(ST_GeomFromText('POINT(((E'-96.6864379495382')::float8) ((E'32.792527154088')::float8))', 4326),3081)
WHERE ...
1
vote
1answer
177 views
Pass Multidimensional Array in Query String to Controller in Rails
When passing a multidimensional array to a rails controller, it does not seem to parse correctly. Am I doing it wrong?
url: ...
0
votes
0answers
175 views
Set Content-Disposition Filename from GET parameter in htaccess
I have something like this in a .htaccess
<FilesMatch "\.(pdf)$">
ForceType application/octet-stream
Header set Content-Disposition attachment
</FilesMatch>
my requests look like ...
0
votes
1answer
166 views
Is using & as a Query Parameter delimiter valid?
If I have a URL with query parameters, is it valid to "escape" the & query parameter delimiter?
Ex.
<a href="/foo.html?cat=meow&dog=woof">go</a>
vs
<a ...
1
vote
2answers
171 views
Is this Enough to Secure againts SQL Injections?
I'm trying to secure a older classic asp web site (that has about 1,000 (.asp) pages) using MS SQL 2008 R2 (Express Edition).
I found a code (see below) on how to Parameterized Queries and the code ...
1
vote
1answer
110 views
Can I queryparam a string used in a MySQL IN statement using ColdFusion?
I'm running MySQL 5.0.88 and Coldfusion8.
In a form, I'm grabbing a number of record ids from a table and send them to the server. The string will look like so:
...
0
votes
1answer
207 views
Best way to pass a list of key/value pairs in URI query parameter
What's the best method to pass a set of key/value pairs via a HTTP request?
As an example, say, I need to send a sort command to a RESTful service. I need to specify a list of properties to sort by ...
0
votes
1answer
176 views
use url parameter to specify how python handles the request
okay so this seemed like it should be pretty basic but I just can't get it to work. I am getting a 404 error saying that the resource cannot be located, though I am being directed to the correct ...
1
vote
1answer
148 views
Params inside of Warden's strategy is empty when I try to authenticate through ajax
I'm trying to use Warden for authentication in my rails app. And it works fine if I use it with regular form via POST request. But when I moved it to Backbone.js I found that authenticate! method ...
1
vote
3answers
124 views
how to capture the current page url in PHP
I want to get the current page URL with parameters in PHP
the URL is
http://localhost/omni/abc.php#def=S6ZT4b9MEsFGDzo
I want to get the url part after the # sign
2
votes
2answers
148 views
How to process query parameters in form of a list of tuples?
Given a list of tuples for parameter names and values e.g.:
[("foo", 10), ("bar", None), ("baz", "some_string")]
and some url string e.g.:
"/some/url/string"
my function should be able to create ...
2
votes
0answers
322 views
Best way to bind multiple DomainDataSources to a RadGridView selection change
I have a master grid, used for finding items, then a set of 3 grids below it to shown parallel sets of related details for the selected row using simple Name Value pairs.
It looks like this:
When ...
0
votes
1answer
803 views
How to combine a search box and dropdown to output results (php, mysql)
I have created an HTML form with a search box and a drop down list of 50 states in the USA. What I want is to let the user type in a keyword in the search box (email, subject, username, etc.) and ...
2
votes
2answers
164 views
Should I make table-valued functions for common large joins SQL
Using SQL for a few months only(this place has been such a huge help so far, thanks guys!)
but even though Im a beginner DB programmer I already noticed there are many large joins I find myself ...
0
votes
1answer
217 views
Rails 3.2 Limit to length of URL
Is there a limit to the length of a url in Rails apps? I have a bunch of query parameters that I am trying to attach to a URL, and, at some point, I simply get a !! Invalid request error in the logs. ...
1
vote
2answers
415 views
How to reproduce a request via cURL
I want to capture how parameters are being sent. Usually what I do is to make a request and check on Firebug's params tab what are the parameters sent. However, when I try to do this on the following ...
1
vote
0answers
262 views
Launch BlackBerry WebWorks PhoneGap app via URL with parameters?
I have a WebWorks PhoneGap app that I would like to launch from a browser URL, and pass URL query parameters to the app that way. Can this be done? How? I would be happy to use HttpFilterRegistry ...
1
vote
1answer
317 views
How can I overload a method with @QueryParam in Jersey/Spring?
I would like to overload a method with the @QueryParam but everytime I try to execute this code it throws:
SEVERE: Exception occurred when intialization
...
0
votes
2answers
56 views
Rewrite first query
Is it possible to rewrite a url, and still be able to use query?
I mean something like this: http://domain.com/?page=Home&derp=true
and rewrite it to this: http://domain.com/home.htm?derp=true
...
1
vote
6answers
3k views
I call a Stored procedure with 2 parameters (input and output) from C# but value of output parameter does not show
I Wrote a simple program which call a stored procedure with 2 parameters (an input/an output), code executed with no error, but value of output parameter does not show in output window!
My STORED ...
0
votes
0answers
63 views
How can I use “Query by Form” without using too many anti-patterns?
I want to use a "Query by Form" approach (WPF) to allow users to select criteria that will determine the makeup of the SQL statement (parameter values).
I then want to show the results in another ...
0
votes
2answers
434 views
How to stream an image from PHP for tracking purposes
With affiliate marketing and PHP, I know how to make a tracking pixel like this:
<img alt="" src="http://example.com/pixel.php?tracking=43233" />
Then, in pixel.php I do something like:
...
0
votes
3answers
621 views
ASP.NET MVC3 input does GET using query parameters
In asp.net MVC3, how I can implement an input what it does GET using query parameters of source web page? I prefer don“t use hidden inputs.
Update. For example, my page contains a query parameter ...
0
votes
2answers
629 views
Hiding Query String Parameters
I have a GET action for creating records. Because the page is somewhat dynamic, I don't use a model to hold the data. I go off to do some OAuth, only to return to the create screen later on. In order ...


