Jump to content

Recommended Posts

Posted

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

Posted

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>

Posted

Im just looking for a way to get the return without going to the website. I will need the info for an autoit based gui to act on

Hi. Don't understand completely, what you want, but hope this links be useful for you :)

WinINet

HTTP UDF's

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
  • Recently Browsing   0 members

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