03-10-2008 09:43 AM
03-31-2008 11:26 AM
04-01-2008 04:47 PM
05-01-2008 04:50 PM
05-02-2008 02:20 PM
If this code snippet does not throw an error, then the problem is that the server that is running your ASP.NET application is throwing an exception when converting from a string into a double array. This could be some kind of limitation or misconfiguration on the web server as your tests indicated that it worked on your local machines. If that is the case, we will need to determine a different way to convert the string that is returned to a double array, instead of using the default type casting that you are utilizing now.string webData;webData = NetworkVariableDataSource1.Bindings[0].GetValue();
05-02-2008
03:46 PM
- last edited on
11-13-2024
12:13 PM
by
Content Cleaner
object obj = NetworkVariableDataSource1
double [] data = new double[4];
data = (double[])obj;
and the last statement throws a InvalidCastOperation, this means that there is a network communication error whether its happening on the web server or on a computer on my LAN with the ethernet cable unplugged.
In TCPView, a Windows Utility, I see that VarMan.exe (Variable Manager version 8.2.1) is listening for TCP connections on port 1544, and when I connect to the Network Variable over my LAN, I see a TCP connection over port 1544 . This socket connection behavior is different than that described in
My question to National Instruments is this: what (TCP or UDP) ports do I need to tell my network administrator to open for my Network Variable web application to run correctly on a remote web server?
06-28-2008 05:49 PM
06-30-2008
02:38 PM
- last edited on
11-13-2024
12:13 PM
by
Content Cleaner
Hello Ben,
What version of Measurement Studio do you have? As of Measurement Studio 8.5, our controls are AJAX compatible. Refer to http://www.ni.com/mstudio/whats_new.htm for more information on what's new in Measurement Studio 8.5.