How To Send Http Post Request

Let's say if I want to send a http "Post" request to a url, and check the http status code later. How should I write the code? I have found example to use WinHttp to send "Get" request and check the http status code:

======
Set objWinHttp = CreateObject("WinHttp.WinHttpRequest.5")
objWinHttp.Open "GET", strURL
objWinHttp.Send
If objWinHttp.Status <> 200 Then
...
End If
======

How should I write the code if I need to use "POST" to send data in a form, and to check the http status code later?

View Replies


ADVERTISEMENT

Using Http Post With Xml

I created a form for users to sign up for a newsletter our site sends out. The thing is we use a third party that keeps a db of our subscribers and sends the email for us. The signup resides on our site and when the user submits they get poasted to this third party site and then click through and get refreshed to our site again.

We want change that process and keep the user on our site so now thier values need to get posted to the 3rd party behind the scenes. Code:

View Replies View Related

Http Post

i'm tring to send post data using
set objSrvHTTP = Server.CreateObject ("WinHTTP.WinHTTPRequest.5.1")
....
objSrvHTTP.send xmlstring

but the transfer rate is very low(4 min per MB on LAN)..
some ideas?

(with MSXML2.ServerXMLHTTP.4.0 is equal)

View Replies View Related

Http Post, In ASP

i'm trying to find out how to post a file to a URL, using ASP, but I can't seem to track it down.

View Replies View Related

HTTP Redirect With POST

I need to redirect to another web page, but that redirect will include the
submission of form data. So, unlike ServerXMLHTTP which stays on the
originating web page, I need the script to redirect to the page that I'm
submitting the POST data to (without pressing a submit button).

Any suggestions?

View Replies View Related

HTTP Post / XMLHTTP

if i use the example code belpw ; which ip address will the post appear to come from. the ipaddress of the browser or the webserver?

<%
Response.Buffer = True
Dim objXMLHTTP, xml
Set xml = Server.CreateObject("Microsoft.XMLHTTP")

' Notice the two changes in the next two lines:
xml.Open "POST", "http://www.imdb.com/Find", False
xml.Send "select=All&for=The Usual Suspects"

Response.Write xml.responseText

Set xml = Nothing
%>

which ip address will the post appear to come from. the ipaddress of the browser or the webserver?

View Replies View Related

HTTP Post In Vbscript

A site I'm working on has a php form with an asp form processor redirecting to a php thankyou page.

I need a way to output some of the form fields entries in the thankyou page.

Here's my ASP and vbscript: Code:

View Replies View Related

HTTP Post - The Code...

i've got this code...

Dim oOriginalPO, oXMLHTTP, strFileName, strURL

strURL = "url that is required"
strFileName = sXML

Set oOriginalPO = CreateObject("MSXML2.DOMDocument")
Set oXMLHTTP = CreateObject("MSXML2.XMLHTTP")

oOriginalPO.async = False
oOriginalPO.load strFileName 'name of file containing cXML data

oXMLHTTP.open "POST", strURL, False 'strURL is our URL you post to
oXMLHTTP.send oOriginalPO

So on the assumption that the sXML variable has correct information inside it to send out, can anybody see why perhaps this code isn't working properly?

View Replies View Related

HTTP POST From Page

Is is possible and if so would anyone have a brief example of submitting data from an ASP page to another server via HTTP, using a POST method. Essentially duplicating an HTML FORM.

Further details, if availalbe would be the use of username/password (basic) authentication and the HTTP connection is actually and HTTPS (SSL) connection.

View Replies View Related

SQL Parameters From HTTP Post

How do you append parameters to SQL string?

descrip = Request.Form("Description")

strSql = strSql & " AND [SaLTInventory].[Description] LIKE "&descrip

I don't seem to have it quite right?

View Replies View Related

How To Simulate HTTP POST Using Headers?

This is the scenario: I am making a wizard composed of several steps, each
step being a form with the post method. The first steps may be completed
whether the user is logged on to the website or not. But from a certain step
on the user must be logged on to complete the wizard. What I do is post the
data gathered so far to the logon page; the logon page is essentially an ASP
page with an HTML logon form that posts to itself. Once the user logs on he
is taken again to the wizard, to the step where he left off.

Right now I am using the HTML form / approach on the
logon page: after the user is authenticated, the asp page builds a form with
the "saved" data, pointing to the next step of the wizard, and uses the
onLoad event of the body tag to submit the form. And this does what I
intended.

But I believe there must be a more elegant way to do this, and I suspect it
involves setting headers directly using Response.AddHeader but I don't know
how to do it. Am I right? If so, how to do it?

View Replies View Related

HTTP Post To A Remote Server

I have an asp page. There I enter some text. This text needs to go some other web site but as jsp page ( such as http://www.web.com/Link.jsp).

Now, I was told to submit my asp page as HTTP Post to their jsp page. This is completely a new thing for me to do. Code:

View Replies View Related

MS XML HTTP REQUEST

Why ASP's MS XML HTTP request object gets another page's HTML source
without interpreting path differences. For example, if my page is:

www.test.asp/one/two/page1.asp

with XMLHTTP getting source code of page:

www.test.asp/one/page2.asp

and this latter page has a CSS with path ../include/css.css, it won't
be used in page1.asp because path will stay as it is "../include/
css.css", not "../../include/css.css" as needed for page1.asp?

View Replies View Related

HTTP 400 - Bad Request

I have configured XP and IIS according to some security checklist on the internet.
I restarted machine after I renamed and set pw for my admin account.

The IIS isn't working now. I get this:

HTTP 400 Bad Request Error
The parameter is incorrect

In other words, The syntax of the request is badly formulated or is impossible to satisfy
I scanned my system with SPYBOT, no spyware found.

View Replies View Related

HTTP 1.1/400 Bad Request

I have been trying to figure out why I am getting this message.I have an application that is 20 different ASP pages that works in sequential order (step1, step2, step3...). After each step the app writes the entered text to a cookie. This feature is so that if there is a problem, we can still retrieve the data.

This Bad Request error has something to do with the cookie that is written to, because I can go all the way through the app to the last step (step20) and then it gives me a Bad Request. If I clear my cookies then it works fine, until step 20 again.

what may be going on here? I am guessing that it has to do with the size of the cookie, but I am unsure how I can accomplish this task allowing the entered data to be retrieved) without cookies.

View Replies View Related

ASP Http Request

Can someone give the snippet to send a post http request in order to send a
soap request ? I have the complete http request but I don't know how to send
it.

View Replies View Related

Http Request

How can I send an http request to some page e.g. aspx . I mean something like HttpWebRequest in .NET.

View Replies View Related

Collect String From HTTP Form POST

I have a basic form that POSTs data to a web server. The web server then replys with a string response. It goes something like this:

<FORM METHOD=POST ACTION="https://www.mywebserver.com/trans.dll">
<INPUT TYPE=HIDDEN NAME="x_Field1" VALUE="1">
<INPUT TYPE=HIDDEN NAME="x_Field2" VALUE="True">
<INPUT TYPE=HIDDEN NAME="x_Login" VALUE="MyUser">
<INPUT TYPE=SUBMIT VALUE="Click here To Submit">
</FORM>

The response is just a comma separated values string like:
1,0,2,3,0,Transaction Success,Etc

Once I hit the submit button the server returns a string response. I do not want the user to ever see the response, but need the response string to create my own page. How do I retreive that string and use it??

View Replies View Related

ASP, XML HTTP Request & Xml.transformNode(xsl)

I'm trying to USPS Tracking info to my website. To do this I need to make a XML HTTP Request to the USPS server, then format and "print" the response back on our web site. The site uses ASP and we want to avoid using JavaScript. I found this simple script:
Code:

View Replies View Related

Send SMS Thru HTTP

Is it possible to send SMS through a web browser? If it is possbile, has does one go about making it?

View Replies View Related

HTTP 400 Bad Request (Invalid Hostname)

I've been using Dreamweaver Ultra Dev to create a dynamic page and I've been unable to view the page in a browser once the file extension changes to .asp. If I try to open it (in a browser) outside of an editor then nothing happens.

If I try to open it inside an editor, like in DW then I get HTTP 400 Error. DW also has a feature to let you view live data, when I choose that, it gives me "Bad Request (Invalid HostName)" it also mentions: "An error occurred while requesting the document from the app server." I'm running IIS.

View Replies View Related

Marshal An Object In An Http Request?

Let's say I want to use the msxml object to call a web page from
within my script, and on the querystring or "in the header" of that
request I want to include a dictionary object, such that the called
.asp page can then request the object to it's script and use the
dictionary object.

Has anyone seen anything that describes marshaling an object into an
http request header?

View Replies View Related

Post And Send

Is it possible to have a form ON submit. Post data to an access data file at the same time send an email of the data submitted. I have a send mail asp script that will create the email and send it. I have a form that will create a record how are they performed together?

To put a screws in the mix. I am using Front page to create the connection between the form and the MDB file. My hands are tied in having to use Front Page.

View Replies View Related

Functions Can Get The HTTP Request And Response Headers?

Any ASP functions can get the HTTP request and response headers?

View Replies View Related

What Charset The IIS Uses To Decode POST Request?

I am working on multilingual web-application, and I have to be very sure
about how the international characters are encoded and decoded in the
client-server form requests. Code:

View Replies View Related

Powerful MS HTTP Request Component - Alternative To ServerXMLHTTP!

Having just "discovered" it myself, I thought I'd draw everyone's attention to the fact that the WinHTTP 5.x object (which is used behind the scenes by our good friend the ServerXMLHTTP object) can be used directly in scripts.

This is useful because the ServerXMLHTTP object encapsulates XML-related functionality which is unnecessary for performing most simple HTTP requests, and thus by using the WinHTTP object directly you achieve higher performance, scalability, and reduced memory consumption... AND WinHTTP offers quite a few features that ServerXMLHTTP does not expose - including the ability to specify a proxy (and an exclusion list) from within the script (or to acquire them from Internet Explorer's settings), IPv6 support, and HTTPS/SSL support!

For more information .....

View Replies View Related

How To Get/set And Send The HTTP Headers(user-defined)

How to get/set and send the HTTP Headers(user-defined) coming from another domain/site]

In one SMS gateway project i need a great and urgent help from u all. There,the Service Providers sending the data thru "HTTP Headers" (For ex.sms-Id,sms-source [user defined]).

So i need to get and parse the name value pairs, and need to respond/send the same way as coining the "HTTP Headers" (For ex. sms-Id,sms-destination,sms-msg [user defined]).

View Replies View Related

Send A Variable Via Post Method

sending a variable in this way: temp.asp?num= <% = Var %> creates an error , although i can see in the url that the value is added (e.g temp.asp?num=3) is it because the method is post? what should i do so the variable will come throgh with no error!?

View Replies View Related

Send Mail Before Form Post

I have an asp page that posts to a third-party site. I need to send an e-mail from this page when the user submits the form but before it posts to the other site.

View Replies View Related

Can I Send An Xml Request Using Asp

I'm working on a project that requires me to send an xml request. The problem is that the location I am querying needs to remain hidden so I can't use javascript otherwise they would just view the source and gain access to the database.

This database also has support for html requests, but it would require the username and password are sent in the url so again I would need to somehow make this request using asp so I can keep that hidden.

View Replies View Related

Send Post Method Without Need To Click Submit

is it possible to send info to a page with the post method automaticaly ?
whithout the user having to click the button ?

View Replies View Related

Request All Fields From A Form And Send By Email

i already create a code to request all fields from a previous page form using the next function y separate the fields with the value of each one. Code:

View Replies View Related

Send Url Request At Schedule Time Interval - Asp

I am developing site in asp where I need to call a url at every interval. Is there a way to automate this. I want to call the url every 15 or 30 mins.

Cureently I have written a asp script tp call it using

Set objWinHttp = Server.CreateObject("WinHttp.WinHttpRequest.5.1")
objWinHttp.Open "GET",URL
objWinHttp.Send ' Send it.
strResponse3 = objWinHttp.ResponseText ' Get the response string from the object.

But it is not schedule..I can call it only when I rum the asp script. So is there any way I can schedule this url call for every 15/30 minutes.

Also forgot to mention : the site does not have that much traffic that I can add it in index page...there may be a user visiting the site in 5 hours time or within next 5 mins or for next 2 days there may be no visitor.

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved