I've been successful in configuring the DotNetClientStockListDemo to connect to the prices on the lightstream.com homepage. However, I'm not having any success connecting to the following page:
http://www.igindex.co.uk/pricestream/outside/getMarketList?webSiteId=igi&locale=en_GB&firstTime=true
I can sniff out the requests and can see POST data like:
LS_phase=8403&
LS_domain=igindex.co.uk&
LS_polling=true&
LS_polling_millis=500&
LS_idle_millis=30000&
LS_client_version=4.2&
LS_adapter=InVisionProvider&
or
LS_session=S7475cb8dd943eecbT0429822&
LS_window=0&
LS_win_phase=5&
LS_op=add&
LS_req_phase=73&
LS_mode1=RAW&LS_id1=M___.MGE%7CHPUBROADCAST%20M___.MGE%7CHPUBROADCAST-igien_GBFB%20M___.MGE%7CHPUBROADCAST-igien_GBF_%20M___.MGE%7CHPUBROADCAST-igien_GB_B%20M___.MGE%7CHPUBROADCAST-igien_GB__%20M___.MGE%7CHPUBROADCAST-igi_____FB%20M___.MGE%7CHPUBROADCAST-igi_____F_%20M___.MGE%7CHPUBROADCAST-igi______B%20M___.MGE%7CHPUBROADCAST-igi_______%20M___.MGE%7CHPUBROADCAST-___en_GBFB%20M___.MGE%7CHPUBROADCAST-___en_GBF_%20M___.MGE%7CHPUBROADCAST-___en_GB_B%20M___.MGE%7CHPUBROADCAST-___en_GB__%20M___.MGE%7CHPUBROADCAST-________FB%20M___.MGE%7CHPUBROADCAST-________F_%20M___.MGE%7CHPUBROADCAST-_________B%20M___.MGE%7CHPUBROADCAST-__________%20&
LS_schema1=&
LS_snapshot1=true&
LS_requested_max_frequency1=1&
LS_unique=1
LS_session=S7475cb8dd943eecbT0429822&LS_window=1&
LS_win_phase=5&
LS_op=add&LS_req_phase=74&
LS_mode1=MERGE&LS_id1=V2-F-BID%2COFR%2CUTM%2CCPT%2CHIG%2CLOW%7CIX.D.FTSE.DAILY.IP%7C1%20V2-F-BID%2COFR%2CUTM%2CCPT%2CHIG%2CLOW%7CDW.D.DOW.DAILY.IP%7C2%20V2-F-BID%2COFR%2CUTM%2CCPT%2CHIG%2CLOW%7CCS.D.GBPUSD.TODAY.IP%7C3%20V2-F-BID%2COFR%2CUTM%2CCPT%2CHIG%2CLOW%7CCS.D.EURUSD.TODAY.IP%7C4%20V2-F-BID%2COFR%2CUTM%2CCPT%2CHIG%2CLOW%7CCS.D.USCGC.TODAY.IP%7C5%20V2-F-BID%2COFR%2CUTM%2CCPT%2CHIG%2CLOW%7CEN.D.CL.Month2.IP%7C6%20V2-F-BID%2COFR%2CUTM%2CCPT%2CHIG%2CLOW%7CXK.D.UKBP.DAILY.IP%7C7%20V2-F-BID%2COFR%2CUTM%2CCPT%2CHIG%2CLOW%7CIX.D.DAX.DAILY.IP%7C8%20&LS_schema1=&
LS_snapshot1=true&
LS_requested_max_frequency1=1&
LS_unique=2
or
LS_session=S7475cb8dd943eecbT0429822&LS_phase=8404&
LS_domain=igindex.co.uk&
LS_polling=true&
LS_polling_millis=500&
LS_idle_millis=30000&
What do I need to specify in the DotNetClientStockListDemo to succesfully connect to this data? How much of this stuff is taken care of by the Client itself (ie: phase, session etc) and how much needs to be sents as POSTs or parameters?
Thanks.