Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Notifications
Login / Register
Community
Community
Notifications
close
  • Forums
  • Knowledge Center
  • Events & Webinars
  • Ideas
  • Blogs
Help
Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Login / Register
Sustainability
Sustainability

Join our "Ask Me About" community webinar on May 20th at 9 AM CET and 5 PM CET to explore cybersecurity and monitoring for Data Center and edge IT. Learn about market trends, cutting-edge technologies, and best practices from industry experts.
Register and secure your Critical IT infrastructure

Check which server is the main

EcoStruxure Geo SCADA Expert Forum

Schneider Electric support forum about installation, configuration, integration and troubleshooting of EcoStruxure Geo SCADA Expert (ClearSCADA, ViewX, WebX).

cancel
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Home
  • Schneider Electric Community
  • Remote Operations
  • EcoStruxure Geo SCADA Expert Forum
  • Check which server is the main
Options
  • Subscribe to RSS Feed
  • Mark Topic as New
  • Mark Topic as Read
  • Float this Topic for Current User
  • Bookmark
  • Subscribe
  • Mute
  • Printer Friendly Page
Invite a Co-worker
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send Invite Cancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
Send New Invite Close
Top Experts
User Count
sbeadle
Kirk sbeadle Kirk
307
AndrewScott
Admiral AndrewScott
95
BevanWeiss
Spock BevanWeiss
89
AdamWoodlandToo
Lt. Commander AdamWoodlandToo
36
View All

Invite a Colleague

Found this content useful? Share it with a Colleague!

Invite a Colleague Invite
Solved Go to Solution
Back to EcoStruxure Geo SCADA Expert Forum
Solved
CBRBO
Crewman CBRBO
Crewman

Posted: ‎2024-04-15 06:57 AM

0 Likes
4
691
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-04-15 06:57 AM

Check which server is the main

Hi, I would like to find out which node is the main server. I wrote this code but the state (by monitor.GetNodeState) is always null:

 

  static void Main(string[] args)
  {
      var credentials = new NetworkCredential("myusername", "mypw");
      ServerNode mainNode;

      ServerSystemCollection systems = new ServerSystemCollection();
      using (XmlReader reader = XmlReader.Create(@"\\geoscadaweb\c$\ProgramData\Schneider Electric\ClearSCADA\Systems.xml"))
      {
          systems = new ServerSystemCollection(reader);
      }
      ServerSystem system = systems["GEOSCADA"];
      ServerSystemMonitor monitor = new ServerSystemMonitor(system);
      monitor.Start(false);

      monitor.SetProvisionalLogOnCredentials(credentials.UserName, credentials.SecurePassword);
      foreach (var node in system.Nodes)
      {
          var state = monitor.GetNodeState(node);
          if (state != null && state.State == ServerState.Main)
          {
              mainNode = node;
              break;
          }
      }          

      monitor.Stop();
  }

 

Labels
  • Labels:
  • SCADA
  • Tags:
  • C(sharp)
  • english
  • scada
  • SCADA app
  • SCADA software
  • SCADA tutorial
  • Telemetry and SCADA
Reply

Link copied. Please paste this link to share this article on your social media post.

  • All forum topics
  • Previous Topic
  • Next Topic

Accepted Solutions
sbeadle
Kirk sbeadle Kirk
Kirk

Posted: ‎2024-04-18 02:30 AM

0 Likes
1
648
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-04-18 02:30 AM

I suggest you look this up in the Object Browser for the .Net API:

ClearScada.Client.ServerStateDetails GetServerState()
Member of ClearScada.Client.Advanced.IServer

Summary:
Gets the current state of the server.

Returns:
The current server state.

 

See Answer In Context

Reply

Link copied. Please paste this link to share this article on your social media post.

Replies 4
sbeadle
Kirk sbeadle Kirk
Kirk

Posted: ‎2024-04-18 02:30 AM

0 Likes
1
649
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-04-18 02:30 AM

I suggest you look this up in the Object Browser for the .Net API:

ClearScada.Client.ServerStateDetails GetServerState()
Member of ClearScada.Client.Advanced.IServer

Summary:
Gets the current state of the server.

Returns:
The current server state.

 

Reply

Link copied. Please paste this link to share this article on your social media post.

CBRBO
Crewman CBRBO
Crewman

Posted: ‎2024-04-18 10:20 PM

In response to sbeadle
2 Likes
0
591
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-04-18 10:20 PM

Thank you Sbeadle! It works! It's fantastic!

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ClearScada.Client;
using ClearScada.Client.Simple;
using System.Security;
using System.Net;
using System.Xml;


..........


var credentials = new NetworkCredential("myUser", "myPWD");
ServerNode mainNode;

ServerSystemCollection systems = new ServerSystemCollection();
using (XmlReader reader = XmlReader.Create(@"\\geoscadaweb\c$\ProgramData\Schneider Electric\ClearSCADA\Systems.xml"))
{
    systems = new ServerSystemCollection(reader);
}
ServerSystem system = systems["GEOSCADA"];
Connection conn = new Connection("TestApp");

foreach (var node in system.Nodes)
{
    if (node != null && !node.IsWebserver)
    {
        
        ServerNode serverNode = new ClearScada.Client.ServerNode(node.HostName, node.Port);
 
        conn.Connect(serverNode);

        var state = conn.Server.GetServerState();
        if (state != null && state.State == ServerState.Main)
        {
            mainNode = node;

            break;
        }
        conn.Disconnect();
    }
}
//Connected with main Server

 

Reply

Link copied. Please paste this link to share this article on your social media post.

AdamWoodlandToo
Lt. Commander AdamWoodlandToo
Lt. Commander

Posted: ‎2024-04-28 03:17 PM

0 Likes
1
581
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-04-28 03:17 PM

And thank you for providing example code for the next person to use!

Reply

Link copied. Please paste this link to share this article on your social media post.

CBRBO
Crewman CBRBO
Crewman

Posted: ‎2024-05-01 02:42 AM

In response to AdamWoodlandToo
0 Likes
0
571
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-05-01 02:42 AM

You are welcome! That's the goal of a community! 😁

Reply

Link copied. Please paste this link to share this article on your social media post.

Preview Exit Preview

never-displayed

You must be signed in to add attachments

never-displayed

 
To The Top!

Forums

  • APC UPS Data Center Backup Solutions
  • EcoStruxure IT
  • EcoStruxure Geo SCADA Expert
  • Metering & Power Quality
  • Schneider Electric Wiser

Knowledge Center

Events & webinars

Ideas

Blogs

Get Started

  • Ask the Community
  • Community Guidelines
  • Community User Guide
  • How-To & Best Practice
  • Experts Leaderboard
  • Contact Support
Brand-Logo
Subscribing is a smart move!
You can subscribe to this board after you log in or create your free account.
Forum-Icon

Create your free account or log in to subscribe to the board - and gain access to more than 10,000+ support articles along with insights from experts and peers.

Register today for FREE

Register Now

Already have an account? Login

Terms & Conditions Privacy Notice Change your Cookie Settings © 2025 Schneider Electric

This is a heading

With achievable small steps, users progress and continually feel satisfaction in task accomplishment.

Usetiful Onboarding Checklist remembers the progress of every user, allowing them to take bite-sized journeys and continue where they left.

of