Thanks for the reply.
The problem is to read the data with nsbasic from the web. That part has to to be fixed!!!
To parse the data is no problem, that part I have fix.
Still open the question " how can I read the data ftom the http as I mentiod before.
My original program is written in Python. This is a simple aproache. I have also done this in thechbasic. Open a stream and read the file with line input.
Thanks for the response.
But still I will stay by my question “Is it possible to read the file line by line from the URL”
Is that posible?
I have several apps on my IPAD who read from these files!!
This is a sample as I use in TechBasic, running on my IPAD
It’s opens a stream (1) from the web, and read line by line.
Comm.readHTTP(1, “http://www.celestrak.com/NORAD/elements/stations.txt”)
WHILE NOT EOF(1)
LINE INPUT #1, a$
PRINT a$
WEND
PRINT "Status code: "; Comm.statusHTTP(1)
CLOSE #1
FUNCTION statusHTTP (channel AS INTEGER) AS INTEGER
This simple connection I need. If this is not possible please let me know.
When you pass the url to your web browser the file is opened, and displayed.
I have read all posible items about Ajax to understand how it works, and how it can be used
for reading the data from the web.
But I have total no experiance wit web programming! So for me it is hocus pocus.
To get succesfull started my privet tool I need the access to this file.
Please, please can someone provide me with a solution to it get started.