Ignition Edge and Ignition Server

Ignition Edge and Ignition Server , I want to fetch Ignition Server Tags on Ignition Edge gateway.

Can you suggest any link or step by step procedure to do this

Pretty sure everything in Edge is designed to go the other way. Have you tried creating a remote tag provider in Edge pointing at your standard gateway? (I'm not sure it is allowed, but that is what you would need.)

Consider replacing Edge with Standard.

Ignition Edge allows only a single tag provider to be configured. You'll need to use an atypical approach, perhaps using message handlers between the two gateways. You could:

  1. Have Edge periodically request data from Full (via system.util.sendRequest). Full gateway will need a message handler configured to receive, process & reply to this message.
  2. Have Full gateway periodically send data to Edge gateway (via system.util.sendMessage). Edge gateway will need a message handler configured to receive & process the message from Full gateway.
  3. Configure Edge provider as a remote tag provider on Full gateway, build a few memory tags in Edge gateway, then write to those tags directly from full gateway. Note that you might encounter some hiccups w/ security if the full gateway (as an unauthenticated actor, or with incomplete service security configured) attempts to write to Edge tags which have strict write permissions configured.

In all of the above, verbose documentation on the Edge tags (identifying the source of the data) will be a life-savor to your future colleagues.

Feel free to provide additional details if you'd like a recommendation on a path forward. What kind of tag data is needed? How frequently must this data be synchronized?