Skip to content
DataMiner DoJo

More results...

Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors
Search in posts
Search in pages
Search in posts
Search in pages
Log in
Menu
  • Updates & Insights
  • Questions
  • Learning
    • E-learning Courses
    • Empower Replay: Limited Edition
    • Tutorials
    • Open Classroom Training
    • Certification
      • DataMiner Fundamentals
      • DataMiner Configurator
      • DataMiner Automation
      • Scripts & Connectors Developer: HTTP Basics
      • Scripts & Connectors Developer: SNMP Basics
      • Visual Overview – Level 1
      • Verify a certificate
    • Video Library
    • Books We Like
    • >> Go to DataMiner Docs
  • Expert Center
    • Solutions & Use Cases
      • Solutions
      • Use Case Library
    • Markets & Industries
      • Media production
      • Government & defense
      • Content distribution
      • Service providers
      • Partners
      • OSS/BSS
    • Agile
      • Agile Webspace
      • Everything Agile
        • The Agile Manifesto
        • Best Practices
        • Retro Recipes
      • Methodologies
        • The Scrum Framework
        • Kanban
        • Extreme Programming
      • Roles
        • The Product Owner
        • The Agile Coach
        • The Quality & UX Coach (QX)
    • DataMiner DevOps Professional Program
      • About the DevOps Program
      • DataMiner DevOps Support
  • Downloads
  • More
    • DataMiner Releases & Updates
    • Feature Suggestions
    • Climb the leaderboard!
    • Swag Shop
    • Contact
    • Global Feedback Survey
  • PARTNERS
    • All Partners
    • Technology Partners
    • Strategic Partner Program
    • Deal Registration
  • >> Go to dataminer.services

Editing Matrix allowed connections by code

Solved526 views28th November 2023
3
MAXIMILIANO FILHO [DevOps Member]918 23rd November 2023 0 Comments

Hi,

Is it possible to edit the “allowed connections” of a matrix through an automation script or protocol?

Thank you!

Marieke Goethals [SLC] [DevOps Catalyst] Selected answer as best 28th November 2023

1 Answer

  • Active
  • Voted
  • Newest
  • Oldest
0
Tom Waterbley [SLC] [DevOps Catalyst]8.89K Posted 26th November 2023 1 Comment

Hi Maximiliano,

Unfortunately there is currently no straightforward way to do this in code. It is possible though using the generic SetDataMinerInfoMessage. The following method should allow you to set the connections that are NOT allowed in the matrix. The discretes that need to be passed to the method can be found in the matrix parameter in the protocol (values of the discretes).

public static void SetDisallowedConnections(IEngine engine, int dmaId, int elementId, int matrixId, int discrete, IEnumerable<int> disallowedDiscretes)
{
var message = new SetDataMinerInfoMessage
{
What = (int)NotifyType.UpdatePortsXml,
DataMinerID = dmaId,
HostingDataMinerID = dmaId,
Puia1 = new PUIA
{
Puia = new[] { new UIA(new[] { 2, elementId, matrixId, dmaId }) },
},
Psa2 = new PSA
{
Psa = new[]
{
new SA
{
Sa = new[] { Convert.ToString(discrete), “matrix=not allowed,” + String.Join(“,”, disallowedDiscretes) },
},
},
},
};

engine.SendSLNetMessage(message);
}

Usage:

SetDisallowedConnections(engine, dmaId, elementId, matrixPid, 1, new[] { 101, 102, 103 });

  • 1 is the descrete of the input
  • 101, 102, 103 are the discretes of the outputs that are not allowed to connect
MAXIMILIANO FILHO [DevOps Member] Posted new comment 5th December 2023
MAXIMILIANO FILHO [DevOps Member] commented 5th December 2023

Perfect, thanks!

Please login to be able to comment or post an answer.

My DevOps rank

DevOps Members get more insights on their profile page.

My user earnings

0 Dojo credits

Spend your credits in our swag shop.

0 Reputation points

Boost your reputation, climb the leaderboard.

Promo banner DataMiner DevOps Professiona Program
DataMiner Integration Studio (DIS)
Empower Katas
Privacy Policy • Terms & Conditions • Contact

© 2025 Skyline Communications. All rights reserved.

DOJO Q&A widget

Can't find what you need?

? Explore the Q&A DataMiner Docs