0
votes
1answer
13 views
why the jmeter not work ?
I use jmeter to record the requests and then perform a performance test.
after i records all the requests with proxy server.
and these requests contain post form.
after that I run the test cases, but …
0
votes
4answers
56 views
How can I do a sort and search using both GET and POST variables?
I am currently using column header's as links that when clicked will sort the results by the column name by adding a get variable to the url. Here is an example:
<a href="
<?php
// Sorts by …
2
votes
5answers
63 views
Escaping user data, without magic quotes
Hey,
I'm taking a look at how to properly escape data that comes from the outside world before it gets used either for application control, storage, logic.. that kind of thing.
Obviously, with the …
0
votes
3answers
27 views
Post the checkboxes that are unchecked
I've got a load of checkboxes that are by default checked. My users will probably uncheck a few of the checkboxes (if any) and leave the rest of them checked. Is there any way to get the checkboxes …
0
votes
1answer
35 views
sending XML file from IPhone to a server using Post Method
I am trying to send the data to server from my Iphone client. It works fine for most values but when itry to send a string like "IPhone+Cocoa" the server shows the string as "IPhone Cocoa". I have …
0
votes
2answers
33 views
(ruby) ruby sockets: how to create a POST request?
How does one create a POST request using TCPSocket in Ruby? Is there a special format to making a post? I have the following but I get a parse error (it's for a rails server):
require 'socket'
s = …
0
votes
3answers
34 views
Cross-site tomcat form post not working
Hi,
For a customer, I need to write a Servlet which can print values in a form post. The form is hosted on another server and looks somewhat like this:
<form action="http://myserver/myServlet" …
0
votes
1answer
29 views
URL requests adding POST data to querystring
I am using ExtJS to send an Ajax request to a PHP page on a server, wanting to send the parameters as POST variables rather than in the querystring.
I have included a random token in the querystring …
0
votes
1answer
25 views
iphone table view delete entry and update app engine db
Hi,
I have a tableview with data, that i post to the app engine database.
Whenever i delete an entry in the table, i want to delelte the item in the app engine database as well. How do i know which …
0
votes
3answers
26 views
Strange x & y POST values being sent in form
What are these x & y values that are being sent back with seemingly random values?
After submitting my form, I output the _POST array using print_r() to make sure my form is being submitted …
0
votes
0answers
11 views
How to post data to Webinvoke method and how to handle the data in webinvoke method?
I dont know how to take the requested data in webinvoke method. I dont want to sent it in Uri template because data maybe large. How is the webinvoke method should look like?
0
votes
2answers
74 views
PHP - Dealing with GET and POST arrays
In my webapp I have a page called display.php. The script in this page behaves in different ways depending on POST and GET array content/existence, let's say: If I call this page and GET array isset, …
0
votes
1answer
26 views
How to load data from HTTPPOST request in server side?
I have a WebInvoke method like this;
[OperationContract]
[WebInvoke(
Method = "POST",
UriTemplate = "/go",
BodyStyle = WebMessageBodyStyle.Bare,
RequestFormat = …
1
vote
1answer
33 views
When I send a post request in python…how do I…
Have a "check"?
For example...
I would have a dictionary with the parameters to sent to the POST.
params = {'text':'how are you?', 'subject':'hi'}
then I would have
…
0
votes
0answers
2 views
Apache ab POST parameters
Hi, I'm running apache ab on a server using the following command
ab -n 500 -c 20 -C 'PHPSESSID=e31c8912b9b53fa6a6e88deb431e276a' -T 'text/html' -p post.txt http://localhost/test/receivePOST
The …
