Originally posted by: ahurtt
This is a perfect candidate for a Web Service implementation if you ask me. I'm sure there must be multiple places out there where they offer web services for stock quotes.
If you aren't familiar with web services, here's the link to the Web Services Reference at Sun for Java web services.
http://java.sun.com/webservice...ce/apis-docs/index.jsp
Basically the publisher (provider) of the web service provides an XML file called a WSDL (Web Service Description Language) file that describes the usage of the web service to clients. You donwnload the WSDL file and you can either write the client implementation yourself or have an IDE generate one for you based off the WSDL file. Bam, you're in business.