Re: Single Instance Server
Well, i think what you need to do is write the data to a database. This database can then be accessed from ASP, or even better, from a dll that is called from ASP, which is way faster.
First, you will need to determine the format in which you will be writing the data. After that, it's just a matter of getting it out, and showing it.
The getting it out part should be done (as mentioned before) by a dll rather than ASP. This is due to performance issues. Whatever you do, you need to read the data from the database, and output it to the ASP.
What you will be returning is something you must decide, in other words, whatever is suited best for you. Suggestions copuld be HTML, plain text, or XML. If the receiving client is a webbrowser, go for one of the first two. If the client is a custom application, XML could be very handy, since it is quite easy to read XML from an application. Again, this should be something you need to determine yourself.
Tom Cannaerts
[email protected]
Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning -- Rich Cook