Click here to Skip to main content
15,878,970 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to take stock market data from their databases to my page on another server in asp.net?
Posted

In order to pull data from any other server, you have to do HTTP Requist to that server.
There are 2 types of HTTP requests
1. Post request
2. Get request

To pull data from server A to server B, server A should authenticate server B and provide a XML format input which is nothing but a Post request input for server A. In response server A will send responce to server B in the format of XML which will contain required information.

Hope this will help you.

~Amol
 
Share this answer
 
Hello friend..

For accessing a stock market data you need to find the web service that will provide that data fro you...

mostly this type of service's are paid and you need to pay money on their basis to use that service..

and after getting that service reference you can directly call their web method that will ask you some parameter if it takes and in response it will give you the data of their database..

after getting data you can use that in you manner as you need to use that data..

this is so simple to do......
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900