V
VikramSamy
Guest
Hi
I have a VC++ code (Application A which is a "dialog window" using MFC ) that FindWindow a "window S" and then GetWindowText from it, then copies it on a CopyDataStruct and then SendMessage it to another window X....
The "window S" is on a network, running on window embedded OS,i believe it is a tcp client program.
The "Application A" is the code to find the window,get the text string in it and then send it to another window.
So basically i realize i need to write and add a server program to Application A so that the server program able to connect to the Window S and then let application A to find the window S on the network and retrieved the data from it.
so basically i have Application A and SENSOR_B which i refer as window_S above.
Application A is a code to find the SENSOR_B window/process and get the data string from it.
SENSOR_B have a IP address,login & password.
DEVICE A need to connect to sensor B and get some data from it.
SENSOR_B which runs on windows embedded will have a dialog/process process running, referred a window_S above.
DEVICE A will find the Dialog/process running in sensor B using Application A and then get the data as explain above.
so i already have the part of the code (Application A) to find and get the data of the sensor B, but as sensor is on a network, i need access sensor B through network and get the data.
so my question to basically how to architect the software to access the sensor, what are usually concept
used to achieve this?? i think i need a write a server program to connect to the sensor B using it ip address
and its login credentials, and then start the application A software which should be able to find the process running in the
sensor B.
i have no much info on sensor B, other than it runs on window embedded, i have its ip address, i know its login credentials
and i also have a program(application A) that will read the data of the sensor, i just dont have the server program?? how do start to think and write the server program...i just exepecting some hints tips and idea on moving forward with this limited infomation.....
Continue reading...
I have a VC++ code (Application A which is a "dialog window" using MFC ) that FindWindow a "window S" and then GetWindowText from it, then copies it on a CopyDataStruct and then SendMessage it to another window X....
The "window S" is on a network, running on window embedded OS,i believe it is a tcp client program.
The "Application A" is the code to find the window,get the text string in it and then send it to another window.
So basically i realize i need to write and add a server program to Application A so that the server program able to connect to the Window S and then let application A to find the window S on the network and retrieved the data from it.
so basically i have Application A and SENSOR_B which i refer as window_S above.
Application A is a code to find the SENSOR_B window/process and get the data string from it.
SENSOR_B have a IP address,login & password.
DEVICE A need to connect to sensor B and get some data from it.
SENSOR_B which runs on windows embedded will have a dialog/process process running, referred a window_S above.
DEVICE A will find the Dialog/process running in sensor B using Application A and then get the data as explain above.
so i already have the part of the code (Application A) to find and get the data of the sensor B, but as sensor is on a network, i need access sensor B through network and get the data.
so my question to basically how to architect the software to access the sensor, what are usually concept
used to achieve this?? i think i need a write a server program to connect to the sensor B using it ip address
and its login credentials, and then start the application A software which should be able to find the process running in the
sensor B.
i have no much info on sensor B, other than it runs on window embedded, i have its ip address, i know its login credentials
and i also have a program(application A) that will read the data of the sensor, i just dont have the server program?? how do start to think and write the server program...i just exepecting some hints tips and idea on moving forward with this limited infomation.....
Continue reading...