Search found 2 matches

by dmunroe
Sat Sep 24, 2011 3:52 am
Forum: misc
Topic: Third part socket connection
Replies: 1
Views: 13105

Re: Third party socket connection

I was able to finally figure out how to access this data from C# code. I'm posting the solution here, for use by others with similiar issues. I chose not to use XML for simplicity:

using (WebClient client = new WebClient())
{
//manipulate request headers (optional)
client.Headers.Add ...
by dmunroe
Wed Aug 31, 2011 8:51 pm
Forum: misc
Topic: Third part socket connection
Replies: 1
Views: 13105

Third part socket connection

I'm trying to connect to my station from a service that I am creating. I want to store the data, in a SQL database for reporting and analysis.

I've configured my router to forward ports 7777, 5558, and 5559. On any of these ports, I can connect and view the data via a web browser. However, when I ...