post

How to call a servlet from a jQuery's $.ajax() function

I am trying to call a servlet from jQuery's .ajax() function. At the moment I don't think I am even calling the servlet or passing paramaters to it, however lots of Googling doesn't seem to have helped. Any ideas? This is my html: <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <script type="text...

How do we pass parameters when doing HTTP Post?

I am working on an app where we have to pass specific web api parameters to a web app using HTTP POST. eg: apimethod name parameter1 value parameter2 value So do I use a string or URLEncodedPostData to send that data? It would be good if u help me with a code eg. I am using something like this but it doesnt post the data to the server. T...

php associative array and switch

My associative array. $money = array("Nickels" => $_POST["nickels"], "Dimes" => $_POST["dimes"], "Quarters" =>$_POST["quarters"]); My html form set up to handle Quarters, Dimes and Nickels are not shown in this case for brevity. <label><b>Quarters:</b></label> <select name="quarters" > <option value=".25">25c</option> <option value="...

Help to convert this PHP code to VB.NET code

Hi I have a code to send XML via POST. But this code is in PHP and I need it in VB.NET. Any help to convert this code? $XMLFile= (here i have created the xml file. XML is encoded ISO-8859) $ch = curl_init(); curl_setopt($ch, CURLOPT_URL,"URL WHERE I SEND XML"); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch,CURLOPT_RETURNTRANSFER...

Delete (MediaWiki) Page with C# (HTTP POST)

Hello. I try to delete a page like this: WebClient wClient = new WebClient(); wClient.UploadStringCompleted += new UploadStringCompletedEventHandler(client_UploadStringCompleted); string str_post = "action=delete" + "&title=Vorlage:" + str_zuloeschendeVorlage + "&token=" + str_token + "%2B%5C"; wClient.UploadStringAsync(new Uri(@"http:...

PHP: transfer a large array between two sites

I'm trying to transfer a large array between two sites in PHP. I'm the admin in both. The array is created on one site, and after its creation I wish to automatically redirect the user to the other site, and pass the processed array along. I cannot use the SESSION superglobal, as it is limited to a specific domain. GET is not suitable...

Sending String Data to MVC Controller using jQuery $.ajax() and $.post()

Hi all, There's got to be something I'm missing. I've tried using $.ajax() and $.post() to send a string to my ASP.NET MVC Controller, and while the Controller is being reached, the string is null when it gets there. So here is the post method I tried: $.post("/Journal/SaveEntry", JSONstring); And here is the ajax method I tried: $....

Struts2 +JSON RPC

I have developed a native client interface which calls struts2 JSON RPC using post method. I have set content type, content length as suggested in the spec. The request body looks like as follows : {"method": "uploadTxpAssignment","id": "txpUploadRequest", "params":{"addressByDestAddrId":{"addrLine1":"test home","addrLine2":"7th ave","...

post data to iframe on javascript load for widget

I have a little widget which has quite a few customizable options. The widget is currently retrieved by a combination of javascript creating an iframe, and the iframe contains a bunch of javascript and jquery to build the page. I can't add the complexity of conflicting javascript to the embed page, that is why i build an iframe, and ru...

PHP $_POST variables are sometimes empty

Hi All I am a PHP novice and I am having a problem with POST variable sometimes being empty when I submit them. The part which is making this difficult for me to figure out is that this doesn't happen every time, and I can usually get the post data in my PHP program by simply refreshing the page. Sometimes it will take a few times, but ...

how to call ajax method when I select a data in a selection then perform a SELECT query from it

how can I call jquery ajax method when I select a data in a selection then perform a SELECT query from the selected data .... then i want to show the result from the query in the #info div Can someone help me? html looks like this <form action="details.php" method="post" > <select> <option value="volvo">Volvo</option> ...

Mocking raw POST data

Hi everybody, I am writing PHPUnit test cases for a web application. As the tests are run within a command line environment, I am mocking a number of predefined variables such as $_POST, $_GET,$_SERVER, etc.. My test has to make sure that my controller class parses properly JSON input (which is sent as raw POST and red through php://in...

Filter results with Jquery

Hi, I've created a search form for a script in php. Basicaly this form have some checkboxes and a submit button. Each checkbox is a category, if I check one or more checkboxes the result is filtered by thoose categories. Here is the html code: <?php if ($_POST['do_search'] == 'true') { $results = 'Do the query and store results in the ...

jQuery AJAX Post not working

I cant not figure out why this script doesnt work. It has to do with something within the AJAX POST script/function. Right now, when I hit submit on my form it runs the php code on the same page. What it should do it is send the values of the form to project_ajax.php, then at page will return a var of success that will be true or false. ...

POST an mp3 file using CURL

Hey all, I have been searching and trying different configurations for POSTing mp3 files via CURL for a few hours, but none seem to work. The most recent form I have settled on looks like this: curl -F "[email protected];type=audio/mpeg" -A "Mozilla/5.0" http://65.173.255.180:8000/accounts/user/songs/ This format seems to have...

Is there a site that does nothing but spit out whatever POST form parameters were sent to it?

Is there a site online available to the general public that does nothing but display whatever form variables (name-value pairs) were sent to it via POST? Yes, it's very simple and I have already made one myself, the question is to see if there is something generally available in case my box is down or I am working with someone else and ...

Mechanize submit login form from http to https

I have a web page containing a login form which loads via HTTP, but it submits the data via HTTPS. I'm using python-mechanize to log into this site, but it seems that the data is submitted via HTTP. My code is looks like this: import mechanize b = mechanize.Browser() b.open('http://site.com') form = b.forms().next() # the login form...

GET vs POST in AJAX?

Why are there GET and POST requests in AJAX as it does not affect page URL anyway? What difference does it make by passing sensitive data over GET in AJAX as the data is not getting reflected to page URL? ...

Determine REST POST/PUT request format

Hi, I'm developing a REST CodeIgniter Controller and need to POST and PUT to a URL in multiple formats. The main formats I can think of would be: XML JSON HTML Form data There will be a response format defined in the URI e.g. /format/xml or /format/csv. I don't want to have to define the request format in the URI as well. I was w...

WebRequest POST with both file and parameters

Hi guys, I'm trying to upload a file and a send along a few parameters to my site using .NET / C#. Having read a few tutorials that do either a few parameters or a file, I've tried, unsuccessfully, to combine them. Here is how I try doing it: WebRequest req = WebRequest.Create(baseURL + "upload"); req.Credentials = new NetworkCredentia...