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

Ask Me About Webinar: Data Center Assets - Modeling, Cooling, and CFD Simulation
Join our 30-minute expert session on July 10, 2025 (9:00 AM & 5:00 PM CET), to explore Digital Twins, cooling simulations, and IT infrastructure modeling. Learn how to boost resiliency and plan power capacity effectively. Register now to secure your spot!

[Imported] Change main server based on a analog point

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
  • [Imported] Change main server based on a analog point
Options
  • 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
309
AndrewScott
Admiral AndrewScott
99
BevanWeiss
Spock BevanWeiss
92
AdamWoodlandToo
Lt. Commander AdamWoodlandToo
38
View All
Related Products
product field
Schneider Electric
EcoStruxure™ Geo SCADA Expert

Invite a Colleague

Found this content useful? Share it with a Colleague!

Invite a Colleague Invite
Back to EcoStruxure Geo SCADA Expert Forum
sbeadle
Kirk sbeadle Kirk
Kirk

Posted: ‎2019-11-05 02:02 PM . Last Modified: ‎2023-05-03 12:33 AM

0 Likes
0
759
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • 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: ‎2019-11-05 02:02 PM . Last Modified: ‎2023-05-03 12:33 AM

[Imported] Change main server based on a analog point

>>Message imported from previous forum - Category:Scripts and Tips<<
User: mchartrand, originally posted: 2018-10-25 19:29:13 Id:281
This is a re-posting from the obsoleted (October 2018) "Schneider Electric Telemetry & SCADA" forum.

_______

**_Zero:
Hi, I want to make sure that when a variable count (analog point), it stops and does not change the value make the switch to the redundant server. You can help me?_**

_______

du5tin:
Zero,

There a method on the root object you might be able to call from a logic program. I have never done it and I'm not sure that swapping the main server on logic is a good solution. There is probably some setting in the configuration that can help you instead.

Whatever you do here should be confirmed through tech support though.

_______________________

bevanweiss:
As Dustin mentioned, it might not be the right solution to change servers.

Perhaps you can give us more information on what the issue is that makes you think changing servers is the right choice, and we might be able to assist further.

____________________

**_Zero:
If the variable does not change means that software inside your PC is not working anymore so I have to use the other server.
I do a cyclic control that in case of failure retry 5 times and switch to the other server
Can you show me an example?_**

______________________

du5tin:
Now it makes a bit more sense. You are monitoring software on the server that needs to be running. When that software fails/stops running then fail over the ClearSCADA server. I still do not think this is the right solution but I understand the necessity of it now.

I do not have an example of triggering the 'swap main' method on the root through logic. But I would imagine you could figure it out if you needed to using the help file and some of the structured text examples there.

__________________________

bevanweiss:
An example would be:

_PROGRAM ChangeServer
METHOD
ChangeServerMethod AT %M($Root.ChangeMainServer) : STRING;
END_METHOD;
ChangeServerMethod( 'NewServerName' );
END_PROGRAM_


As to how to get the 'NewServerName'... this is an exercise left to the reader 😉
It would be worth looking at the properties / aggregates attached to the CRootGroup object ($Root) to find various standby server names/running states etc.

There is no "toggle main server" function, as this doesn't make sense with the ClearSCADA redundancy... there can be two hot-standby servers, so 'toggle' isn't a valid concept.

I still don't believe you're architecting this system quite right. Having two servers in a redundant pairing, but where each must have another service running locally is asking for reliability issues. It would be better if you could communicate ClearSCADA with either the local instance of the 3rd-party app, or with the remote instance (on the other ClearSCADA server). If this is OPC then you can do exactly this with the Advanced OPC Driver (ClearSCADA 2014 and above), which would be the recommended way to have this configured. That way you only need one of the ClearSCADAs running, and one of the OPC Servers running (regardless if they are on the same box or not).

If there is another connectivity used, then please provide some more details and we can possibly help out further.

_____________________

**_Zero:
Excuse me, unfortunately I've been out and I've got to read. The third-party software is an OPC. The logic is that if the value doesn't change for 5 times means that the system is "down" and have to use the other server. The CS version is 2013. I know it is a forced redundancy... Can you explain exactly where and how to insert the script?_**

___________________

bevanweiss:
Would it be possible to upgrade the ClearSCADA version?
ClearSCADA 2015R2 is about to come out very soon..

I would very strongly recommend that you upgrade to a more recent version of ClearSCADA that supports the AdvancedOPC Driver and use the functionality provided by this.

You can then setup a pool of OPC servers (it sounds like you only have two currently), and handle the switching between them much more reliably.

You will get much better alarming, and an overall more reliable solution.

______________

gt:
Can you elaborate , or possibly point me toward more information, on the AdvancedOPC driver? I'm currently using a few tens of thousands of OPC points, and in many circumstances find the behavior lacking depending on what I'm doing. I would very much like to find out more information on this.
Currently I'm running 2013R2.1 and will be updating to a newer one, though not as recent as 2015.
Thanks for any help

_________

bevanweiss:
As with the other Advanced drivers there's an entire section in the help about it, the 'Advanced OPC Driver Guide'.
Without just copying and pasting that, I'm not sure what other inforamtion I can provide you.

I guess if you're using OPC servers, then using the Advanced OPC driver is a *better* option than using the Simple OPC driver. That would be the one sentence 'explanation' 😉

Labels
  • Labels:
  • SCADA
Reply

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

  • All forum topics
  • Previous Topic
  • Next Topic
Replies 0
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