Tagged Questions
The post-method tag has no wiki summary.
3
votes
2answers
378 views
POST method, Ajax and Security?
I use Ajax (jQuery) and the POST method to update data in the database. I do the following:
Get data from the form: user_id, entry_id, content,...
Send them to a URL which will process the data.
If ...
2
votes
4answers
543 views
Why is request method send to web server called GET and POST?
I guessed that the name of each of the request method has a relationship with the operations they performed in some manner. But I can't get it!
Detials:
GET means posted argument are showed in the ...
1
vote
1answer
253 views
Post-methods to integrate Lazy Registration with django-registration
I'm using the tutorial at this link to do my lazy-registration, and I'm trying to combine it with django-registration.
The tutorial at the lazy-registration link simply needs to call one command to ...
1
vote
1answer
3k views
Post Method + WinHttpRequest + multipart/form-data
I'm stumped why this doesn't work can't seem to find any problems.
Here is the code.
Public Const MULTIPART_BOUNDARY = "speed"
Function getBalance() As String
Dim sEntityBody As String
Dim ...
1
vote
5answers
857 views
Is my form password being passed in clear text?
This is what my browser sent, when logging into some site:
POST http://www.some.site/login.php HTTP/1.0
User-Agent: Opera/8.26 (X2000; Linux i686; Z; en)
Host: www.some.site
Accept: text/html, ...
0
votes
0answers
24 views
Capture POST data on squid
Hi i'm wondering if SQUID can send POST DATA on ICAP server,
seems like its not support by default.
I wrote my own simple icap server just dupping RESQUEST from my browser in a log files and still ...
0
votes
1answer
111 views
Qt + search engine API
I need google (or other engine) search in my desktop program.
Could you please give me an example how to send a POST request to API and get the answer.
I use Qt and C++.
For example this code doesn't ...
0
votes
1answer
780 views
How to get a query string for a url using httpUrlConnection , android
I am using HttpUrlConnection to post a query to a webpage. The web page take my request and does another posting. For example: www.unknown.com
URL url = new URL("http://www.unknown.com"); ...
0
votes
2answers
216 views
POST to default page
Why is it not OK to do a HTTP.Post to the default page on ASP.NET
I have a default.aspx file that i want to be accessed when an external utility do a post to the
http://{ip}/WebSiteName
I want ...
0
votes
1answer
867 views
ASP.NET MVC How to specify additional parameters in POST method?
in my MVC application I have a controller (ProjectController) which has an action (create). The create function accepts a projectEntity (custom 3d party datalayer component) as a parameter. The ...
0
votes
1answer
1k views
Apache Commons HttpClient PostMethod support?
I am curios about how one can set the request properties for a PostMethod in Apache Commons HttpClient?
I am refactoring some code written using HttpURLConnection class to post which looks like the ...