New Post: Simple Server - Client problem?
Hello!Here's source for simple Server and Client running in a same win7 PC. Both programs compile nicely, but the client cannotfind the PV. Neither can caget, ca_info, etc. Both the server and the...
View ArticleNew Post: Simple Server - Client problem?
As I don't have the full source code to our app, I couldn't properly replicate the problem. Here is what I've done on a sample console app: staticvoid Main(string[] args) { // A new thread is not...
View ArticleNew Post: Simple Server - Client problem?
using Epics;namespace Epics_NET_console_test{ class Program { static void Main(string[] args) { // A new thread is not necessary, a separate thread is already created by...
View ArticleNew Post: Simple Server - Client problem?
Now that I found the System.Threading.Tasks.Task -class, I tried the exactly same code that you presented in the message #2.Same story. The console just blinks the cursor... And the when I debugged the...
View ArticleNew Post: Simple Server - Client problem?
Yes!!I got it. It is configuration issue. When I added following lines after the client and server instantiation, everything started working: var client = new EpicsClient();...
View ArticleNew Post: Simple Server - Client problem?
From within your application, all your configuration is red from your app.config file thus "EPICS.NET.Library.dll.config" is simply ignored. This is the usual case for any library actually....
View Article