Join the 80,000 other DTN customers who enjoy the fastest, most reliable data available. There is no better value than DTN!

(Move your cursor to this area to pause scrolling)




"There is no doubt that IQFeed is the best data provider. I am very satisfied with your services. And IQFeed is the only one that I would recommend to my friends. Now, most of them are using your product in China." - Comment from Zhezhe
"I just wanted to let u know that your data feed/service is by far the best!!! Your unfiltered tick data is excellent for reading order flow and none of your competitors delivers this quality of data!" - Comment from Peter via Email
"I am very pleased with the DTNIQ system for quotes and news." - Comment from Larry
"I cannot believe what a difference it makes trading with ProphetX!" - Comment from Bruce in Los Angeles
"Its working FABULOUSLY for me!! Holy cow...there has been so much I've been missing lately, and with this feed and Linnsoft software...I'm in the game now." - Comment from Chris R.
"IQ feed is brilliant. The support is mind-bending. What service!" - Comment from Public Forum Post
"Everything is working amazing now. I'm already impressed with the true-tick feed of IQFeed and it's ability to support my 480 symbol layout." - Comment from Tyler via Email
"I've never had DTN go out on me since switching. ******* would go down a couple times every month when I was using them." - Comment from Bryce in AL.
"I am keeping IQFeed, much better reliabilty than *******. I may refer a few other people in the office to switch as well." - Comment from Don
"After all the anxiety I had with my previous data provider it is a relief not to have to worry about data speed and integrity." - Comment from Eamonn
Home  Search  Register  Login  Recent Posts

Information on DTN's Industries:
DTN Oil & Gas | DTN Trading | DTN Agriculture | DTN Weather
Follow DTNMarkets on Twitter
DTN.IQ/IQFeed on Twitter
DTN News and Analysis on Twitter
»Forums Index »Archive (2017 and earlier) »IQFeed Developer Support »We don't need RegisterClientApp anymore
Author Topic: We don't need RegisterClientApp anymore (3 messages, Page 1 of 1)

CBrauer
-Interested User-
Posts: 32
Joined: Aug 18, 2004


Posted: Feb 13, 2010 06:11 PM          Msg. 1 of 3
In the last email announcing the new release it said that IQ32.dll was depreciated and would eventually be removed. I thought to myself "If that's so, how do we do RegisterClientApp?" The answer is we don't. It is not needed anymore.

Here is a console application built with Visual Studio 2008. It is in C#:

using System;
using System.IO;
using System.Net.Sockets;

namespace Fundamentals {
class Fundamentals {
StreamReader streamReader;
NetworkStream IQStream;
TcpClient socket;

private void Run() {
Int32 portNumber = 5009;
try {
socket = new TcpClient("localhost", portNumber);
Console.WriteLine("socket has been initialized.");
} catch (Exception ex) {
Console.WriteLine("Error: " + ex.Message);
return;
}

DownloadFundamentals("IBM");
Console.WriteLine("Done.");
}

private void DownloadFundamentals(string sSymbol) {
try {
IQStream = socket.GetStream();
streamReader = new StreamReader(IQStream);

string quoteString = "w" + sSymbol + "\n\r";
byte[] outputBuffer = System.Text.Encoding.ASCII.GetBytes(quoteString);
socket.GetStream().Write(outputBuffer, 0, outputBuffer.Length);
socket.GetStream().Flush();

string data = streamReader.ReadLine();
while (data.IndexOf("!ENDMSG!") < 0) {
if (data.Length > 0) {
if (data.IndexOf("..SYNTAX_ERROR..") < 0) {
if (data[0] == 'F') {
Console.WriteLine("Data: " + data);
return;
}
} else {
Console.WriteLine("Error: " + data);
}
}
data = streamReader.ReadLine();
}
return;
} catch (IOException ex) {
Console.WriteLine("DownloadFundamentals error: " + ex.Message);
}
return;
}

static void Main(string[] args) {
Fundamentals go = new Fundamentals();
go.Run();
Console.ReadKey();
}
}
}

I hope this helps.

Charles

Charles Brauer
CBrauer@CypressPoint.com

DTN_Steve_S
-DTN Guru-
Posts: 2093
Joined: Nov 21, 2005


Posted: Feb 15, 2010 10:45 AM          Msg. 2 of 3
Hello Charles, you are correct that with the current version of IQFeed, as long as the feed is already running, it is not absolutely required to call RegisterClientApp anymore. However, as I'm sure you are aware, the code posted above will not launch the feed. Furthermore, the feed must be initialized with a productID and version number (by any of the current methods) upon initial launch before it will allow any connections for data retrieval.

We also recommend that before any client connects to the feed, that you first register with the feed (even if it is already running and not absolutely required). Doing so will reduce the likelyhood that your app will break with future versions of the feed.

CBrauer
-Interested User-
Posts: 32
Joined: Aug 18, 2004


Posted: Feb 15, 2010 11:20 AM          Msg. 3 of 3
I'm aware that my example code does not launch the feed. I do that elsewhere. You said that IQ32.dll is depreciated. In the past I did:

[DllImport("C:\\Program Files\\DTN\\IQFeed\\IQ32.dll")]
public static extern int RegisterClientApp(
IntPtr hClient,
string szProductName,
string szProductKey,
string szProductVersion);

and I used RegisterClientApp. As I mentioned before, if IQ32.dll is no longer available (in future releases), and if you say that we still need to do RegisterClientApp, then how do we do that.

Some sample code would be greatly appreciated.

Thanks

Charles

Charles Brauer
CBrauer@CypressPoint.com
 

 

Time: Thu April 25, 2024 11:59 PM CFBB v1.2.0 9 ms.
© AderSoftware 2002-2003