05-03-2011 04:51 PM
Hi all,
Is there a way to write a program in labview that will access a website, sign into an accout, select some options, and grap some information from the website automatically?
05-03-2011
08:52 PM
- last edited on
11-06-2024
05:15 PM
by
Content Cleaner
Short answer is yes. This will require some knowledge of the HTTP Protocol and how the target web site is organized.
Connect to the target web site with TCP/IP. Use HTTP POST and HTTP GET methods to send and fetch from the site.
The HTTP Client Vis may provide enough functionality to do what you want. If not, you can form the queries with the TCP/IP primitives and strings. Refer to the World Wide Web Consortium Web site atwww.w3.org for more information about HTTP method definitions. There are some examples on the NI web site.
JohnCS