Jump to content

convert code to autoit script


John117
 Share

Recommended Posts

Hey guys, I am looking for the cleanest, shortest, way to produce the same results as this webpage. I would like to avoid webpage attaches as speed is the key. Any help would be greatly appreciated!!! Thanks.

The test on the page is what I am looking to build. I dont need input boxes, just a string that is sent and something like a msgbox to show the return.

Anyone showing me where to begin, I am not helpless and am willing to work toward it, just need a starting point! Thanks!

http://api.efxnow.com/DEMOWebServices2.8/S...RatesServerAuth

Link to comment
Share on other sites

Since we don't have the code available for the webpage, we can't very well translate it.

say waaaa???

HTTP GET

The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.

GET /DEMOWebServices2.8/Service.asmx/GetRatesServerAuth?UserID=string&PWD=string&Brand=string HTTP/1.1

Host: api.efxnow.com

HTTP/1.1 200 OK

Content-Type: text/xml; charset=utf-8

Content-Length: length

<?xml version="1.0" encoding="utf-8"?>

<string xmlns="https://api.efxnow.com/webservices2.3">string</string>

HTTP POST

The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.

POST /DEMOWebServices2.8/Service.asmx/GetRatesServerAuth HTTP/1.1

Host: api.efxnow.com

Content-Type: application/x-www-form-urlencoded

Content-Length: length

UserID=string&PWD=string&Brand=string

HTTP/1.1 200 OK

Content-Type: text/xml; charset=utf-8

Content-Length: length

<?xml version="1.0" encoding="utf-8"?>

<string xmlns="https://api.efxnow.com/webservices2.3">string</string>

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...