post

How secure is a HTTP POST?

Is a POST secure enough to send login credentials over? Or is an SSL connection a must? ...

how to determine if a parameter has been "posted" or "geted" from java?

in asp there's request.form and request.queryString attributes, but in java it seems like we have only one collection, which can be accessed via request.getParamaterMap, getParametersNames, getParameterValues, etc... is there some way to tell which values have been posted nd which ones have been specified in the url? -- ps: what I'm...

How do I post a form without the page refreshing in jQuery?

I want to be able to post the following form without the page refreshing in jquery and i need the form to post in information into actions.php can somebody help me please? <div id="postbox"> <form method="post" id="ptowall"> <input name="post" type="submit" value="Post" /> </form> </div> Thank you. ...

Update mysql with $_POST data from while loop

Update mysql with $_POST data from while loop I'm trying to get this round my head, but i am failing quite hard :[ I have 3 rows in a database which i am echoing out in a while() loop. A user can change search_terms and then save the fields in mysql, however i don't quite know how to do this, as there are 3 rows, so i can't just do; <...

WCF Service with Binary Data

I have a unique problem and I would like the capability to process an incoming HTTP POST request that contains arbitrary binary data. I can currently process this data using a standard ASP.NET Page handler or in an ASP web service, but I want to know if its possible to processing INCOMING binary data in a WCF service? Can I drill down ...

how to get the content of a value posted as the body in asp classic?

I've seen a couple of rest examples where the xml message gets posted in the body of the http request, and not in a named parameter... in classic asp I have the request.form object that allows me to get the posted values, but I have to specify the name of the parameter... is there some way to get the whole content of the post? I would...

What's the size limit for a field in a form post?

The title is self-explanatory, if you're using a form field to post text of arbitrary size, what limits are considered relevant? Memory limits, browser limits, application server limits? Update: A form method=post is the case. The form field is being used to submit a file (its contents) to the server. The file is generated on the clien...

How to circumvent SSL/TLS trust validation failure in C# c lient code?

I have written a C# client to make a multipart-form data post to a server on the internet. While testing my code, I started getting exceptions as follows: {System.Net.WebException: The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel. ---> System.Security.Authentication.Authenticati...

How should I post/process 100 checkboxes? HTML+C#/ASP.NET

I have a list of msgs (it could be 24 or 100+). I would need to remove many of these messages. I was wondering, what is the best way? I dont like the idea of building names for 100+ elements and doing something like doRemove = Request["msgId" + i]; I prefer receive a array such as long[] and do something like long[] removeThese = Requ...

Posting data through hyperlinks

I want to post ($_GET as well as $_POST) data by clicking on links (enclosed with <a>) and not the regular form 'submit' button. preferred language : PHP I have seen this in a lot of todays websites, where forms are submitted by clicking on buttons looking like hyperlinks. so was wondering how it could be done. Thanks in advance ...

Sending a HTTP POST request

To implement single sign off, i would like the user to get logged out of application B additionally when ever the user clicks logout on application A. Is it possible to implement this using some form of a POST request to application B? i.e. when the user clicks on logout: Generate existing POST request to logout of application A Genera...

Post a message to a remote JMS queue using JBoss

This looks simple but I can't find a simple answer. I want to open a connection to a remote JMS broker (IP and port are known), open a session to the a specific queue (name known) and post a message to this queue. Is there any simple Java API (standard if possible) to do that ? EDIT Ok I understand now that JMS is a driver spec jus...

How does an XMLHttpRequest response get routed to the right browser-callback?

Hello. I have made webpage that uses Ajax to update some values without reloading the page. I am using an XMLHttpRequest object to send a POST request, and I assign a callback function that gets called when the response arrives, and it works just fine. But... how in the world does the browser know that some data coming from some ip:por...

How to get JSON back from HTTP POST Request (to another domain)

I'm trying to use the API on a website, here's the part of the manual: Authenticated Sessions (taken from here) To create an authenticated session, you need to request an authToken from the '/auth' API resource. URL: http://stage.amee.com/auth (this is not my domain) Method: POST Request format: application/x-www-form-urlencoded Resp...

Does jQuery send cookies in a post?

I want to know if, when I make a $.post(...) with jQuery, does any cookie is sent to the server in the post request? Thanks! ...

POST response taking too long

Hello. Client side Ajax Javascript code is using XMLHttpRequest to send a POST request, but I'm getting like a 0.5 second delay in getting the response and I'm trying to find out why, since I'd like it to be faster, more like 0.2 seconds. Both endpoints are in the same intranet, the client directly connected via ethernet and the server...

How does JSON work? If I do a jquery $.post with a return type of json, how does the data get returned?

Hi, If I do a post from jquery like so: $.post("Row/getRowNames", { currRow: "MyRow", offset: 3 }, function(rowNames) { /* How do I interpret the data to }, "json"); How do I interpret the data rowNames that's passed back from the method in the controller? I need to turn the json result into an array of s...

jquery $post posts page, but Request.Form is null

I have few input fields in a form. after some validation, I use jquery to post the page. $.post("Myproduct.aspx?action=1"); The post appears to go through. But when I debug the server code, the request.form[] is null. Has any one had this problem? ...

ASP.NET: How to redirect, prefilling form data?

i want a handler to redirect to a web-forms page, pre-filling in the values of some controls on the form. i tried setting my current Request.Form data: if (theyWantToDoSomething) { //pre-fill form values context.Request.Form["TextBox1"] = "test"; context.Request.Form["ComboBox1"] = "test 2"; context.Request.Form["TextBox2"]...

PHP AJAX proxy not returning body for POST requests

Hello, I am using this AJAX proxy for cross-domain AJAX requests: http://www.daniweb.com/code/snippet494.html. It works great when I use GET. But when I try to use POST, the body seems to get lost and is never printed out. I tried printing the log and studied the code but I cannot figure out what is going wrong. Thanks, Isaac Waller E...