The postmethod tag has no wiki summary.
2
votes
1answer
109 views
automate submitting a post form that is on a website with vba and xmlhttp
I'm using xmlhttp via vba in excel 2010. I need to programmatically add an item to a shopping cart on a website. I have the code below so far, it uses the POST method
A couple of things I think ...
2
votes
1answer
735 views
jQuery post respond with readyState:0, status:0
all. I am using a jquery version 1.6.2.
I do a ajax call like this:
var jqxhr = $j.post(myPHP, function() {
alert("success");
})
.success(function() { alert("second ...
2
votes
1answer
144 views
What alternative is there to the recycle method in Java's HttpMethod?
We're using the PostMethod in org.apache.commons.httpclient.methods and noticed that the recycle method from the HttpMethod interface has been deprecated.
Is there an alternative to this method?
1
vote
2answers
28 views
inserting checkbox data into mysql database via POST method
I have a problem inserting the values from checkboxes in an html document into a database as a comma separated string (I know this is usually considered being bad style but in this case that is what ...
1
vote
0answers
172 views
Serve Static Files from Node.js with POST data
I run a node.js server, and use node-static to serve static HTML files.
var nodeStatic = require('node-static');
var file = new nodeStatic.Server('./public');
..
file.serveFile('/file.html', 500, {}, ...
1
vote
2answers
100 views
Java URL / HttpURLConnection how to avoid InputStream while posting?
Is it possible to do a POST method request to some URL and avoid reading the response?
No matter how hard I try to avoid reading the response the data never seems to reach the server unless I read ...
1
vote
1answer
1k views
HttpClient problem with redirect handle and facebook login without browser
I spent three weeks to find a solution to login on facebook home without browser. I wrote this example code but it return an error:
org.apache.commons.httpclient.HttpMethodDirector ...
1
vote
3answers
117 views
Having problem to log into gmail?
i want to login to gmail using asp.net ,however when i use the http post method with ....
it returns your browser is not accepting cookies?...and in the internet explorer its sign's in ..whats the ...
1
vote
2answers
869 views
Java HTTP Post Raw Data
I'm looking to make an HTTP post request given the raw data that I have. I've spent a while looking for the solution, made a handful of attempts and I'm looking for a little bit of help. The PHP code ...
1
vote
2answers
383 views
PostMethod: How to make request to a given address?
I would like to reate a POST request to a given address, let it for example be
...
0
votes
2answers
77 views
How to copy or post an entire table in html code to another page?
I'm trying to make an Invoice Table, later when the customer finishes, I want them to see the same product they ordered in another page!
I tried using HTML post method, but that doesn't work, because ...
0
votes
0answers
251 views
Get all Facebook feeds from my wall and using POST method using FBConnect
I'm trying to implement Facebook features in android Application.
I'm using FBConnect.jar
i have two questions
I can post something to wall using following code
String response = ...
0
votes
2answers
252 views
Java HttpClient or PostMethod truncating return data to 64k
I'm using Apache Commons HttpClient to grab some data from a server. My problem is that the returned XML data is always truncated to the first 64k. I was hoping this might just be a case of setting a ...
0
votes
1answer
65 views
HttpPost not sending params once over a certain size
Here is the code:
HttpClient client = new HttpClient();
PostMethod method = new PostMethod(SERVER_URL);
NameValuePair[] data = {
new NameValuePair("html", html)
};
...
0
votes
2answers
1k views
Java PostMethod with xml
I am trying to post XML data as a body to a REST api.
I have a method that creates the request called doREST.
String url = null;
HttpMethod method;
LOG.info("QUERY: " + query);
...
0
votes
1answer
120 views
Spoofing postMethod (apache in java)?
Im fairly new to this so please dont slam me down.
I'm trying to mock a Postmethod so that I can set the status it returns. For instance I want to set my PostMethod to 200.
The reason for doing ...
0
votes
1answer
167 views
Help. Getting exception executing PostMethod.getStatusCode()!
Couldn't figure out why I'm getting Null pointer here : System.out.println(method.getStatusCode()); !?
method initialized and successfully executed!
Any ideas?
Sample code here. I'm using ...
-2
votes
2answers
63 views
how to deal with delete buttons in php?
I want to know what is the best way to handle delete or edit buttons? So let's say from a comment box, should I use post or get method for this and then make some validations in the page that is ...