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

Retrieving NodeEdgeX/Y coordinates via an ad hoc script

Solved465 views28th January 2025ad-hoc automation scripts SLNet
5
sofia nadramia [SLC] [DevOps Advocate]267 21st October 2024 0 Comments

To map out the nodes used to display IDP connections in an LCA, I need to retrieve the NodeEdgeX and NodeEdgeY values, which are stored in the custom tab of the properties menu. The only approach I can think of is using the GetPropertyValueMessage via the IDMS SLNet call. However, since this message lacks thorough documentation—at least to my knowledge—I’m unsure whether it retrieves the values I’m looking for.

When I tested this with the SLNet Client Test Tool, calling the message without parameters returned some values from the properties menu, but not the NodeEdgeX/Y coordinates. Furthermore, when I specified "NodeEdgeX" in the PropertyName field, I received <no message>, which suggests that this call does not retrieve these parameters.

Is there currently a way to retrieve these values through an ad hoc script?

sofia nadramia [SLC] [DevOps Advocate] Selected answer as best 28th January 2025

2 Answers

  • Active
  • Voted
  • Newest
  • Oldest
0
sofia nadramia [SLC] [DevOps Advocate]267 Posted 28th January 2025 0 Comments

I was able to fetch the values directly by simply retrieving the element properties using the GetElement() Method without the need for an SLNet call. Here is an example:
var elements = GetElements();

foreach (var element in elements)
{
var nodeEdgeX = element.Properties.Where(x => x.Definition.Name.Equals("NodeEdgeX"));
var nodeEdgeY = element.Properties.Where(x => x.Definition.Name.Equals("NodeEdgeY"));

var nodeEdgeXValue = "N/A";
var nodeEdgeYValue = "N/A";

if (nodeEdgeX.Any())
{
nodeEdgeXValue = nodeEdgeX.First().Value;
}

if (nodeEdgeY.Any())
{
nodeEdgeYValue = nodeEdgeY.First().Value;
}
}

sofia nadramia [SLC] [DevOps Advocate] Selected answer as best 28th January 2025
You are viewing 1 out of 2 answers, click here to view all answers.
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

[ Placeholder content for popup link ] WordPress Download Manager - Best Download Management Plugin