{"id":3554,"date":"2019-03-25T17:44:50","date_gmt":"2019-03-25T20:44:50","guid":{"rendered":"http:\/\/xexeu.elipse.com.br\/pt\/elipse-gateway-2\/"},"modified":"2019-07-04T17:12:24","modified_gmt":"2019-07-04T20:12:24","slug":"elipse-gateway-2","status":"publish","type":"post","link":"https:\/\/kb.elipse.com.br\/en\/elipse-gateway-2\/","title":{"rendered":"Elipse Gateway."},"content":{"rendered":"<div align=\"justify\">\n<p>The <b>Elipse Gateway<\/b> feature provides a gateway via software which dismisses the need for any additional hardware and guarantees data transmission efficiency. This solution can be used by substations or generation units to report data to control centers and energy management agencies, or simply to exchange data between two systems.<\/p>\n<p>This is Elipse Gateway&#8217;s structure:<\/p>\n<div align=\"center\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5104EN\/Fig1_enu.jpg\" alt=\"\" width=\"500\" height=\"89\" align=\"baseline\" border=\"0\" \/><\/div>\n<p>To create a communication gateway between two drivers (master and slave) in the same application, follow the procedures seen in this article.<\/p>\n<p><u><span style=\"font-size: large;\"><br \/>\nBasic Settings<\/span><\/u><\/p>\n<p>To make sure all tags involved in this gateway are always communicating, you must set up <i>AdviseType <\/i>property as <b>0-AlwaysInAdvise<\/b> in all variables used in the gateway, both in the master and in the slave drivers.<\/p>\n<p><i>Elipse&#8217;s Slave Driver<\/i><\/p>\n<p>Depending on the activation order of the objects instanced in the application, the slave driver may be activated before the master one, and this will cause the first value of each variable not to be received in the slave driver&#8217;s tags. Because of that, you will need to create a &#8216;re-initialization&#8217; script for the slave driver&#8217;s tags.<\/p>\n<p>To do so, access the slave driver, and create a script at <i>AfterStart <\/i>event to activate and deactivate all tags in the driver.<\/p>\n<div align=\"center\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5104EN\/Fig2_enu.jpg\" alt=\"\" width=\"468\" height=\"256\" align=\"baseline\" border=\"0\" \/><\/div>\n<p><b>NOTE<\/b>: Folders inside the driver will only need to be deactivated and then reactivated, and no internal scan is required for them.<\/p>\n<p><u><b><span style=\"font-size: large;\">I\/O Tags<br \/>\n<\/span><\/b><\/u><i><br \/>\nRead variables <\/i><\/p>\n<p>In situations when a value received by Elipse&#8217;s master driver needs to be made available for the external system, you will need to create a simple link in the slave driver&#8217;s tags to receive the value read by the master driver.<\/p>\n<div align=\"center\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5104EN\/Fig3_enu.jpg\" alt=\"\" width=\"500\" height=\"164\" align=\"baseline\" border=\"0\" \/><\/div>\n<p>In addition, you will also need to set up the master driver&#8217;s variables to allow reading (AllowRead property), and the slave driver&#8217;s tags to allow only writing (<i>AllowWrite <\/i>property).<br \/>\n<i><br \/>\nWrite variables<\/i><\/p>\n<p><u><b>1. Simple value write<\/b><\/u><\/p>\n<p>Used when the external system requires a simple write or sending a device&#8217;s setpoint value, for example. Depending on the device, this must be written in the same status&#8217;s read variable, or then in a second variable created specifically for this purpose.<\/p>\n<p><b>1.1. Same variable for both writing and reading <\/b><\/p>\n<p>In this case, create a bidirectional link between the slave driver&#8217;s and master driver&#8217;s tags.<\/p>\n<div align=\"center\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5104EN\/Fig4_enu.jpg\" alt=\"\" width=\"500\" height=\"141\" align=\"baseline\" border=\"0\" \/><\/div>\n<p>In addition, you must also set up the slave driver&#8217;s and master driver&#8217;s respective tags to allow writing and reading.<\/p>\n<p><b>1.2. Variable for writing only <\/b><\/p>\n<p>In this case, create a reverse link in the slave driver&#8217;s tags that send the value to the master driver.<\/p>\n<div align=\"center\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5104\/figura5.jpg\" alt=\"\" width=\"499\" height=\"173\" align=\"baseline\" border=\"0\" \/><\/div>\n<p><b><u>2. Command sending write<\/u><\/b><\/p>\n<p>Whenever you need to send commands to the device via external system, you will have to create scripts that interpret these commands and send them to the master driver.<\/p>\n<p>For example: the external system has been set up to send value <b>65<\/b> (in a given variable) to indicate that a certain breaker must be closed; however, the device in the field is expecting value 1 to run <b>Close <\/b>command. Thus, the Elipse Gateway needs to convert this value before it is sent to the field device.<\/p>\n<p>This script must be created according to the information in the slave driver&#8217;s manual. This can be done either on centralized or distributed mode, that is, the driver can be created either in a single place or directly in each driver. Additionally, you must also disable <i>EnableDeadBand <\/i>property in the tags that will receive the external commands so that all and any write commands received by the slave driver is handled by the driver.<\/p>\n<p><b>2.1. Centralized script <\/b><\/p>\n<p>In this scenario, you will create only one script to answer all commands sent. The driver has an event called <i>OnTagRead <\/i>that fires whenever a driver&#8217;s tag receives a new read (the option <b>EnableDriverEvent <\/b>must be on). This event receives as a parameter the tag receiving the read, which allows you to check which variable should continue receiving the commands. With this, the received commands can be all handled in a single place.<\/p>\n<p><b>TIP<\/b>: this script should be generated as generically as possible, and not have many<span style=\"font-family: Courier New;\"> If\/End If <\/span>or <span style=\"font-family: Courier New;\">Select Case<\/span> situations. You can set up a rule for the I\/O tags names, and then create the script only to apply this rule to reach Elipse&#8217;s master driver&#8217;s tag.<\/p>\n<div align=\"center\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5104EN\/Fig6_enu.png\" alt=\"\" width=\"528\" height=\"160\" align=\"baseline\" border=\"0\" \/><\/div>\n<p>The example below illustrates how to create this script. Its goal is to repass to the master driver (whose tags are named the same as the slave driver&#8217;s ones) the same value received by the slave driver:<\/p>\n<p><em><span style=\"color: #0000ff;\">Sub<\/span> <span style=\"color: #000000;\">DriverEscravo_OnTagRead(Tag)<\/span><br \/>\n<span style=\"color: #000000;\">TagMasterDriverName =<\/span> <span style=\"color: #990099;\">Replace<\/span><span style=\"color: #000000;\">(Tag.PathName, <\/span><span style=\"color: #ff0000;\">&#8220;SlaveDriver&#8221;, &#8220;MasterDriver&#8221;<\/span><span style=\"color: #000000;\">) <\/span><br \/>\n<span style=\"color: #000000;\"><span style=\"color: #0000ff;\">set <\/span>TagMasterDriver = Application.<\/span><span style=\"color: #990099;\">GetObject<\/span><span style=\"color: #000000;\">(<span style=\"color: #000000;\">TagMasterDriverName<\/span>)<\/span><br \/>\n<span style=\"color: #000000;\">TagMasterDriver.WriteEx Tag.Value <\/span><br \/>\n<span style=\"color: #0000ff;\">End Sub<\/span><\/em><\/p>\n<p><b>2.2. Distributed script <\/b><\/p>\n<p>In this scenario, you will create one script in each tag receiving the external commands. At the tag&#8217;s <i>OnRead <\/i>event you will find the script responsible for interpreting the command&#8217;s request and send it to the tag in the desired Elipse&#8217;s master driver. In the example below, a write command is generated in the master driver at every new command received by the slave driver, both with the same value.<\/p>\n<p><em><span style=\"font-size: small;\"><span style=\"color: #0000ff;\">Sub<\/span><span style=\"color: #000000;\"> PosicaoDisjuntor_Abre_Operate_OnRead<\/span><\/span><br \/>\n<span style=\"font-size: xx-small;\"><span style=\"color: #000000;\">Application.<\/span><span style=\"color: #990099;\">GetObject<\/span><span style=\"color: #ff0000;\"><span style=\"color: #000000;\">(<\/span><span style=\"color: #ff0000;\">&#8220;MasterD<\/span>river.DJ5201.Commands.BreakerPosition_Open_Operate&#8221;<\/span><span style=\"color: #000000;\">).WriteEx Value<\/span><br \/>\n<\/span><span style=\"color: #0000ff; font-size: small;\">End Sub<\/span><\/em><\/p>\n<p><span style=\"font-size: large;\"><u><b>Drivers&#8217; Peculiarities<\/b><\/u><\/span><\/p>\n<p><u><i>DNP 3.0 Slave<\/i><\/u><\/p>\n<p><b>Receiving commands <\/b><\/p>\n<p>The DNP slave driver can handle the commands received by the external command in three different ways (<b>Command Response Profile<\/b> option):<\/p>\n<div align=\"center\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5104\/figura9.jpg\" alt=\"\" width=\"456\" height=\"403\" align=\"baseline\" border=\"0\" \/><\/div>\n<p>&nbsp;<\/p>\n<ul>\n<li><b>Deny Always<\/b>: all received commands will be denied. Basically, it forces the driver to not handle any external command.<\/li>\n<li><b>Accept Always<\/b>: all received commands will be accepted and repassed to the I\/O driver, and then the driver will let the external system know the command has been accepted. The application will only need to handle the value and decide what to do with the command.<\/li>\n<li><b>Wait for Application Response<\/b>: all commands will be received manually. They are handled by the application, which is responsible for receiving, checking its acceptance, writing in other drivers (when necessary), and sending the return message to the external system.<\/li>\n<\/ul>\n<p>The example below illustrates how commands are handled when the application is the responsible for it. When the external system sends value 65 to <b>Externo_CMD_DJ<\/b> tag, the driver must write 2 at <b>CMD_DJ<\/b> tag.<\/p>\n<div align=\"center\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5104EN\/Fig10_enu.jpg\" alt=\"\" width=\"358\" height=\"617\" align=\"baseline\" border=\"0\" \/><\/div>\n<p>For further information on procedures\/scripts for receiving commands, please refer to the driver&#8217;s user manual.<\/p>\n<p><u><i>IEC 870-5-101\/104 Slave<\/i><\/u><\/p>\n<p><b>Receiving commands <\/b><\/p>\n<p>Similarly to the previous item, the IEC 101\/104 driver also allows choosing how to handle the commands, with the same three options available. They can be set up on <b>IEC 870<\/b> tab, <b>Slave <\/b>sub tab, <b>Select\/Execute<\/b> command option:<\/p>\n<div align=\"center\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5104\/figura11.jpg\" alt=\"\" width=\"456\" height=\"403\" align=\"baseline\" border=\"0\" \/><\/div>\n<p>&nbsp;<\/p>\n<ul>\n<li><b>Disabled<\/b>: all received commands will be denied. Basically, it forces the driver to not handle any external command.<\/li>\n<li><b>Handle automatically<\/b>: all received commands will be accepted and repassed to the I\/O driver, and then the driver will let the external system know the command has been accepted. The application will only need to handle the value and decide what to do with the command.<\/li>\n<li><b>Pass to the application<\/b>: all commands will be received manually. They are handled by the application, which is responsible for receiving, checking its acceptance, writing in other drivers (when necessary), and sending the return message to the external system.<\/li>\n<\/ul>\n<p>The example below illustrates how commands are handled when the application is the responsible for it. When the external system sends Execute to <b>Externo_CMD_DJ<\/b> tag, the driver must write 2 at <b>CMD_DJ<\/b> tag.<\/p>\n<div align=\"center\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5104EN\/Fig12_enu.jpg\" alt=\"\" width=\"483\" height=\"750\" align=\"baseline\" border=\"0\" \/><\/div>\n<p><b>NOTE<\/b>: <i>COT = 71 <\/i>means it wasn&#8217;t possible to proceed with the command&#8217;s activation\/execution.<\/p>\n<p>For further information on procedures\/scripts for receiving commands, please refer to the driver&#8217;s user manual.<\/p>\n<p><b>Slave mode initialization <\/b><\/p>\n<p>In addition to what was discussed in the <i>Slave Driver<\/i> item, when working with <b>IEC 101\/104<\/b> protocols on slave mode, you can first set up the slave driver and only then initialize it. This ensures the driver will only be available to receive connections and exchange values when it&#8217;s already fully set up.<\/p>\n<p>To do so, access <b>IEC870 <\/b>tab, Properties sub tab, and disable<i> Link Layer Starts<\/i> property:<\/p>\n<div align=\"center\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5104\/figura13.jpg\" alt=\"\" width=\"456\" height=\"403\" align=\"baseline\" border=\"0\" \/><\/div>\n<p>Then, create a new tag in the application and set it up as: <b>N1=0<\/b>, <b>N2=996<\/b>,<b> N3=0<\/b>, <b>N4=0<\/b>, called <b>ActiveLinkLayer <\/b>(example).<\/p>\n<p>At <i>OnAfterStart <\/i>event, after all tags have been deactivated and reactivated, write value 1 in the tag.<\/p>\n<div align=\"center\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5104EN\/Fig14_enu.jpg\" alt=\"\" width=\"500\" height=\"262\" align=\"baseline\" border=\"0\" \/><\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>The Elipse Gateway feature provides a gateway via software which dismisses the need for any additional hardware and guarantees data transmission efficiency. This solution can be used by substations or&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0},"categories":[753,789,825],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Elipse Gateway. - Elipse Knowledgebase<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/kb.elipse.com.br\/en\/elipse-gateway-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Elipse Gateway.\" \/>\n<meta property=\"og:description\" content=\"The Elipse Gateway feature provides a gateway via software which dismisses the need for any additional hardware and guarantees data transmission efficiency. This solution can be used by substations or&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/kb.elipse.com.br\/en\/elipse-gateway-2\/\" \/>\n<meta property=\"og:site_name\" content=\"Elipse Knowledgebase\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/elipsesoftware\" \/>\n<meta property=\"article:published_time\" content=\"2019-03-25T20:44:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-07-04T20:12:24+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5104EN\/Fig1_enu.jpg\" \/>\n<meta name=\"author\" content=\"Elipse Software\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Elipse Software\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"13 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/elipse-gateway-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/elipse-gateway-2\/\"},\"author\":{\"name\":\"Elipse Software\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/def69ea453ea60b250497b89225a9f87\"},\"headline\":\"Elipse Gateway.\",\"datePublished\":\"2019-03-25T20:44:50+00:00\",\"dateModified\":\"2019-07-04T20:12:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/elipse-gateway-2\/\"},\"wordCount\":2686,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\"},\"articleSection\":[\"IODriver \/ IOServer\",\"Drivers\",\"Elipse Power\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/kb.elipse.com.br\/en\/elipse-gateway-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/elipse-gateway-2\/\",\"url\":\"https:\/\/kb.elipse.com.br\/en\/elipse-gateway-2\/\",\"name\":\"[:pt]Elipse Gateway.[:en]Elipse Gateway.[:] - Elipse Knowledgebase\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#website\"},\"datePublished\":\"2019-03-25T20:44:50+00:00\",\"dateModified\":\"2019-07-04T20:12:24+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/elipse-gateway-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/kb.elipse.com.br\/en\/elipse-gateway-2\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/elipse-gateway-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"In\u00edcio\",\"item\":\"https:\/\/kb.elipse.com.br\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Elipse Gateway.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/kb.elipse.com.br\/#website\",\"url\":\"https:\/\/kb.elipse.com.br\/\",\"name\":\"Elipse Knowledgebase\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/kb.elipse.com.br\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\",\"name\":\"Elipse Software\",\"url\":\"https:\/\/kb.elipse.com.br\/\",\"sameAs\":[\"http:\/\/www.facebook.com\/elipsesoftware\"],\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png\",\"contentUrl\":\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png\",\"width\":161,\"height\":58,\"caption\":\"Elipse Software\"},\"image\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/def69ea453ea60b250497b89225a9f87\",\"name\":\"Elipse Software\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ff1f7ec38f4687b06f6851d97b3cd2d0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ff1f7ec38f4687b06f6851d97b3cd2d0?s=96&d=mm&r=g\",\"caption\":\"Elipse Software\"},\"url\":\"https:\/\/kb.elipse.com.br\/en\/author\/webmasterelipse-com-br\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Elipse Gateway. - Elipse Knowledgebase","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/kb.elipse.com.br\/en\/elipse-gateway-2\/","og_locale":"en_US","og_type":"article","og_title":"[:pt]Elipse Gateway.[:en]Elipse Gateway.[:] - Elipse Knowledgebase","og_description":"The Elipse Gateway feature provides a gateway via software which dismisses the need for any additional hardware and guarantees data transmission efficiency. This solution can be used by substations or&hellip;","og_url":"https:\/\/kb.elipse.com.br\/en\/elipse-gateway-2\/","og_site_name":"Elipse Knowledgebase","article_publisher":"http:\/\/www.facebook.com\/elipsesoftware","article_published_time":"2019-03-25T20:44:50+00:00","article_modified_time":"2019-07-04T20:12:24+00:00","og_image":[{"url":"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5104EN\/Fig1_enu.jpg"}],"author":"Elipse Software","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Elipse Software","Est. reading time":"13 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/kb.elipse.com.br\/en\/elipse-gateway-2\/#article","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/en\/elipse-gateway-2\/"},"author":{"name":"Elipse Software","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/def69ea453ea60b250497b89225a9f87"},"headline":"Elipse Gateway.","datePublished":"2019-03-25T20:44:50+00:00","dateModified":"2019-07-04T20:12:24+00:00","mainEntityOfPage":{"@id":"https:\/\/kb.elipse.com.br\/en\/elipse-gateway-2\/"},"wordCount":2686,"commentCount":0,"publisher":{"@id":"https:\/\/kb.elipse.com.br\/#organization"},"articleSection":["IODriver \/ IOServer","Drivers","Elipse Power"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/kb.elipse.com.br\/en\/elipse-gateway-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/kb.elipse.com.br\/en\/elipse-gateway-2\/","url":"https:\/\/kb.elipse.com.br\/en\/elipse-gateway-2\/","name":"[:pt]Elipse Gateway.[:en]Elipse Gateway.[:] - Elipse Knowledgebase","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/#website"},"datePublished":"2019-03-25T20:44:50+00:00","dateModified":"2019-07-04T20:12:24+00:00","breadcrumb":{"@id":"https:\/\/kb.elipse.com.br\/en\/elipse-gateway-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/kb.elipse.com.br\/en\/elipse-gateway-2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/kb.elipse.com.br\/en\/elipse-gateway-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"In\u00edcio","item":"https:\/\/kb.elipse.com.br\/en\/"},{"@type":"ListItem","position":2,"name":"Elipse Gateway."}]},{"@type":"WebSite","@id":"https:\/\/kb.elipse.com.br\/#website","url":"https:\/\/kb.elipse.com.br\/","name":"Elipse Knowledgebase","description":"","publisher":{"@id":"https:\/\/kb.elipse.com.br\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/kb.elipse.com.br\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/kb.elipse.com.br\/#organization","name":"Elipse Software","url":"https:\/\/kb.elipse.com.br\/","sameAs":["http:\/\/www.facebook.com\/elipsesoftware"],"logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/","url":"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png","contentUrl":"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png","width":161,"height":58,"caption":"Elipse Software"},"image":{"@id":"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/def69ea453ea60b250497b89225a9f87","name":"Elipse Software","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ff1f7ec38f4687b06f6851d97b3cd2d0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ff1f7ec38f4687b06f6851d97b3cd2d0?s=96&d=mm&r=g","caption":"Elipse Software"},"url":"https:\/\/kb.elipse.com.br\/en\/author\/webmasterelipse-com-br\/"}]}},"_links":{"self":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/3554"}],"collection":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/comments?post=3554"}],"version-history":[{"count":1,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/3554\/revisions"}],"predecessor-version":[{"id":7440,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/3554\/revisions\/7440"}],"wp:attachment":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/media?parent=3554"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/categories?post=3554"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/tags?post=3554"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}