{"id":2946,"date":"2019-03-25T17:41:57","date_gmt":"2019-03-25T20:41:57","guid":{"rendered":"http:\/\/xexeu.elipse.com.br\/pt\/using-ms-jitdebug-integrated-into-e3\/"},"modified":"2019-10-03T13:10:42","modified_gmt":"2019-10-03T16:10:42","slug":"using-ms-jitdebug-integrated-into-e3","status":"publish","type":"post","link":"https:\/\/kb.elipse.com.br\/en\/using-ms-jitdebug-integrated-into-e3\/","title":{"rendered":"Using MS JITDebug integrated into E3."},"content":{"rendered":"<div style=\"text-align: justify;\">\n<p><span style=\"font-weight: bold;\">1) Introduction<\/span><\/p>\n<p>E3 supports the creation of scripts in VBScript language, with almost all resources available for this language. There is an extensive documentation for VBScript available in many different sources, such as books, websites, forums, etc., in addition to the one that comes along with E3.<\/p>\n<p>However, there are some small restrictions when implementing VBScript for E3. Two of them are:<\/p>\n<ol>\n<li>You cannot create user functions. This means that if a user needs to execute a certain function in more than one situation (such as updating the status of a database table, for example), this function must be linked to an event that is supported by E3 (for example, tag variation).<\/li>\n<li>E3 variables have no defined type. This can be seen when you use DIM command to declare a variable, for example. The type of variable must be adjusted in the script: this means that an integer-type variable can receive a string, without indicating error and without restricting the received value. These resolutions are made via code.<\/li>\n<\/ol>\n<p>Despite of these features, you can create any solution needed by a given object or process with E3 scripts. This task may sometimes become arduous, due to the complexity frequently found when coding a script. To work around this situation, there is an interesting alternative for debugging scripts in E3: using text files, where each variable&#8217;s value is printed. This works basically as a log; its downside is that it demands that the commands needed by these value&#8217;s writes be inserted in the script code. After the script has been debugged, you will still have to &#8220;clean&#8221; the code to avoid using unnecessary resources from the server.<\/p>\n<p>To eliminate these requirements, this article presents a very versatile and powerful debugger, which is supplied free of charge by Microsoft. This software is available either at Windows Installation CD or at Microsoft&#8217;s website.<\/p>\n<p><br style=\"font-weight: bold;\" \/><span style=\"font-weight: bold;\">2) MS JITDebug<\/span><\/p>\n<p>Once JIT has been installed, you will need to enable it via Windows registry. It can be disabled later, and we recommend you keep the debugger enable only during the period you are working with it, since any type of script error (in either E3 or other software) will only cause the window for opening the debugger to be opened. This will happen, for example, if you browse Internet pages containing errors.<\/p>\n<p>To enable Just-in-time Debugger, just access REGEDIT and set up <span style=\"font-family: Courier New; color: #000000;\">&#8220;HKEY_CURRENT_USER\\Software\\Microsoft\\Windows Script\\Settings\\JITDebug&#8221;<\/span> with value <span style=\"font-weight: bold;\">1<\/span>. To disable it, set up its value as <span style=\"font-weight: bold;\">0<\/span>.<\/p>\n<p><br style=\"font-weight: bold;\" \/><span style=\"font-weight: bold;\">3) Debugging scripts in E3<\/span><\/p>\n<p>In order to use JIT, we need to create a simple project, with two tags and a few scripts. <span style=\"font-weight: bold;\">Figure 1<\/span> shows how the Organizer looks like when all items are inserted.<\/p>\n<div style=\"text-align: center;\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID4619\/Figura2.png\" alt=\"\" width=\"204\" height=\"314\" align=\"Baseline\" border=\"0\" \/><br \/>\n<span style=\"font-size: xx-small;\"><span style=\"font-weight: bold;\">Figure 1<\/span>: Organizer with all data inserted <\/span><\/div>\n<p>InitialScreen must be set up as seen in <span style=\"font-weight: bold;\">Figure 2<\/span>. It will be a very simple screen, with a text, a display, and a blue rectangle. The display must show item <span style=\"font-family: Courier New; color: #000000;\">&#8220;DemoTag1.Value&#8221;<\/span>.<\/p>\n<div style=\"text-align: center;\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID4619\/Figura3.png\" alt=\"\" width=\"245\" height=\"128\" align=\"Baseline\" border=\"0\" \/><br \/>\n<span style=\"font-size: xx-small;\"><span style=\"font-weight: bold;\">Figure 2<\/span>: InitialScreen to be developed<\/span><\/div>\n<p>After the screen has been designed, create the script shown in <span style=\"font-weight: bold;\">Figure 3<\/span>. The script starts with a &#8220;stop&#8221; command, which causes its execution to be interrupted and JITDebug to be opened: this is the first way you can open the debugger via E3. The debugger will also be opened whenever there are errors in any script at E3.<\/p>\n<div style=\"text-align: center;\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID4619\/Figura4.png\" alt=\"\" width=\"500\" height=\"177\" align=\"Baseline\" border=\"0\" \/><br \/>\n<span style=\"font-size: xx-small;\"><span style=\"font-weight: bold;\">Figure 3<\/span>: Script to be debugged<\/span><\/div>\n<p>After InitialScreen&#8217;s script has been set up, create the script seen on<span style=\"font-weight: bold;\"> Figure 4<\/span> at the rectangle1s <span style=\"font-style: italic;\">OnClick <\/span>event.<\/p>\n<div style=\"text-align: center;\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID4619\/Figura5.png\" alt=\"\" width=\"500\" height=\"210\" align=\"Baseline\" border=\"0\" \/><br \/>\n<span style=\"font-size: xx-small;\"><span style=\"font-weight: bold;\">Figure 4<\/span>: Script of rectangle&#8217;s <span style=\"font-style: italic;\">Click <\/span>event<\/span><\/div>\n<p>Notice that the script does not handle a serious error (division by zero) when <span style=\"font-style: italic;\">VerticalPercentFill <\/span>property&#8217;s value is reset. As you can see, every time an error is detected by the debugger but is not handled in the script, the debugger is automatically opened to show where the error is.<\/p>\n<p><br style=\"font-weight: bold;\" \/><span style=\"font-weight: bold;\">4) MS JITDebug in action<\/span><\/p>\n<p>After the project has been set up, you will need to run it. When you open E3 Viewer, click the screen&#8217;s free area. The debugger will open, and a script will be displayed with one of its lines in yellow (script&#8217;s current execution point). <span style=\"font-weight: bold;\">Figure 5<\/span> shows you what must be displayed at that time.<\/p>\n<div style=\"text-align: center;\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID4619\/Figura6.png\" alt=\"\" width=\"500\" height=\"173\" align=\"Baseline\" border=\"0\" \/><br \/>\n<span style=\"font-size: xx-small;\"><span style=\"font-weight: bold;\">Figure 5<\/span>: Debugging InitialScreen&#8217;s <span style=\"font-style: italic;\">OnClick <\/span>event script<\/span><\/div>\n<p>JIT Debug&#8217;s most important tool is the <span style=\"font-weight: bold;\">Command Window<\/span>, which allows:<\/p>\n<ul>\n<li>Visualizing the values of E3 variables.<\/li>\n<li>Executing VBScript&#8217;s command, as well as retrieving their return values.<\/li>\n<li>Changing E3 data values, in order to study E3&#8217;s behavior with these new values.<\/li>\n<\/ul>\n<p><span style=\"font-weight: bold;\">Figure 6<\/span> shows some commands that can be executed at the Command Window. In this figure, it has been requested that the script returned the current time (<span style=\"font-family: Courier New; color: #000000;\">? NOW<\/span>) and that a &#8220;<span style=\"font-style: italic;\">Test&#8221;<\/span> message were displayed on screen.<\/p>\n<div style=\"text-align: center;\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID4619\/Figura7.png\" alt=\"\" width=\"500\" height=\"172\" align=\"Baseline\" border=\"0\" \/><br \/>\n<span style=\"font-size: xx-small;\"><span style=\"font-weight: bold;\">Figure 6<\/span>: Command Window executing VBScript&#8217;s functions<\/span><\/div>\n<p>To check E3&#8217;s variables values, you must:<\/p>\n<ul>\n<li>always start the question with a question mark (<span style=\"font-family: Courier New; color: #000000;\">?<\/span>).<\/li>\n<li>write the variable&#8217;s path. For example: <span style=\"font-family: Courier New; color: #000000;\">Application.GetObject(&#8220;Tag&#8221;).Value<\/span>.<\/li>\n<li>make sure the variable had been initialized correctly.<\/li>\n<\/ul>\n<p><span style=\"font-weight: bold;\">5) Exercises with the debugger <\/span><\/p>\n<p>To guarantee the initial conditions will be the same as the ones described here, you must first stop the application. Next, you must execute the project again, and then follow the procedures described below.<\/p>\n<ol>\n<li>Click the <span style=\"font-weight: bold;\">InitialScreen<\/span>, and then the debugger will open. Notice that before that, the display was showing different values for <span style=\"font-weight: bold;\">DemoTag1<\/span>, generated automatically. When opening the debugger, this update will no longer take place, because the server will be closed, waiting for the debugging process.<\/li>\n<li>Before executing any action in the debugger, open the Command Window. On it, execute the command <span style=\"font-family: Courier New; color: #000000;\">&#8220;? Screen.Item(&#8220;Texto1&#8243;).value&#8221;<\/span>. The value returned must be &#8220;<span style=\"font-style: italic;\">Text to be modified<\/span>&#8220;.<\/li>\n<li>Return to the debugger and execute a command, by pressing <span style=\"font-weight: bold;\">F8 <\/span>key. Execute the previous command again. The return message will be similar to <span style=\"font-family: Courier New; color: #000000;\">&#8220;TEST!!! Date: 8\/3\/2004 14:03:55&#8221;<\/span>, where the displayed message is the test&#8217;s execution date.<\/li>\n<li>Execute then the command <span style=\"font-family: Courier New; color: #000000;\">&#8220;? Application.GetObject(&#8220;Data. InternalTag1&#8243;).Value&#8221;<\/span>. The returned value must be 0. Return to the debugger and execute another step of the procedure (corresponding to InternalTag1). Next, execute the command at the Command Window. The expected result is the date previous to the test (now &#8211; 1).<\/li>\n<li>Finally, execute the command <span style=\"font-family: Courier New; color: #000000;\">&#8220;? Application.GetObject(&#8220;Data. DemoTag1&#8243;).Enabled&#8221;<\/span>, whose return value is TRUE. Execute the last command at the script window and run again the request for <span style=\"font-style: italic;\">Enabled <\/span>property at the Command Window. Notice that, as expected, the property&#8217;s value is now FALSE.<\/li>\n<li>Close the debugger and check whether <span style=\"font-weight: bold;\">DemoTag1<\/span>&#8216;s value is not fluctuating, because it is disabled. To enable it, just execute <span style=\"font-weight: bold;\">InitialScreen<\/span>&#8216;s <span style=\"font-style: italic;\">OnClick <\/span>script again. The debugger is opened one more time, at <span style=\"font-weight: bold;\">stop <\/span>command, as expected. To avoid having to repeat all steps in the script again, place a breakpoint on the script&#8217;s last command line. To reach this line, press <span style=\"font-weight: bold;\">Step Out<\/span> option on <span style=\"font-weight: bold;\">Debug <\/span>menu. The script will be executed until a breakpoint is found. Finish debugging this script and notice the value of <span style=\"font-weight: bold;\">DemoTag1 <\/span>being updated automatically.<\/li>\n<li>Close the debugger, but keep E3 Viewer open. Then, click the rectangle (a message is displayed with the inverse value of <span style=\"font-style: italic;\">VerticalPercentFill <\/span>property), and then repeat this operation until the debugger is called automatically.<\/li>\n<li>When this happens, execute the command <span style=\"font-family: Courier New; color: #000000;\">&#8220;? VerticalPercentFill&#8221;<\/span> at the Command Window. Notice that the value is zero, which will cause an error. To avoid this, change the value of <span style=\"font-style: italic;\">VerticalPercentFill <\/span>property&#8217;s value to 1 by using command <span style=\"font-family: Courier New; color: #000000;\">&#8220;VerticalPercentFill = 1&#8221;<\/span> at the Command Window. Finalize the script&#8217;s execution, and notice that the message to be displayed does not concern division errors, but the result of the inversion (1\/<span style=\"font-style: italic;\">VerticalPercentFill<\/span>), as in the previous cases.<\/li>\n<li>This exercise has shown you how to eliminate script errors via debugger settings. Such settings are not definitive, and must be inserted on the code only when necessary.<\/li>\n<\/ol>\n<p>&nbsp;<\/p>\n<p style=\"font-weight: bold;\">6) Final Remarks<\/p>\n<p>In case of erratic behavior, or even of unexpected results in scripts, you must always rely on debugging tools to detect and eliminate such anomalies in the shortest possible time.\u00a0 This article illustrates the usage of a debugger that belongs to Windows, and which can be installed in any machine with no costs for the developer.<\/p>\n<p>Should there be any problems or difficulties executing this project, please contact Elipse Software&#8217;s technical support.<\/p>\n<p>&nbsp;<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>1) Introduction E3 supports the creation of scripts in VBScript language, with almost all resources available for this language. There is an extensive documentation for VBScript available in many different&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":[763],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Using MS JITDebug integrated into E3. - 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\/using-ms-jitdebug-integrated-into-e3\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using MS JITDebug integrated into E3.\" \/>\n<meta property=\"og:description\" content=\"1) Introduction E3 supports the creation of scripts in VBScript language, with almost all resources available for this language. There is an extensive documentation for VBScript available in many different&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/kb.elipse.com.br\/en\/using-ms-jitdebug-integrated-into-e3\/\" \/>\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:41:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-10-03T16:10:42+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID4619\/Figura2.png\" \/>\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=\"7 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\/using-ms-jitdebug-integrated-into-e3\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/using-ms-jitdebug-integrated-into-e3\/\"},\"author\":{\"name\":\"Elipse Software\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/def69ea453ea60b250497b89225a9f87\"},\"headline\":\"Using MS JITDebug integrated into E3.\",\"datePublished\":\"2019-03-25T20:41:57+00:00\",\"dateModified\":\"2019-10-03T16:10:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/using-ms-jitdebug-integrated-into-e3\/\"},\"wordCount\":1355,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\"},\"articleSection\":[\"Scripts\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/kb.elipse.com.br\/en\/using-ms-jitdebug-integrated-into-e3\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/using-ms-jitdebug-integrated-into-e3\/\",\"url\":\"https:\/\/kb.elipse.com.br\/en\/using-ms-jitdebug-integrated-into-e3\/\",\"name\":\"[:pt]Using MS JITDebug integrated into E3.[:] - Elipse Knowledgebase\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#website\"},\"datePublished\":\"2019-03-25T20:41:57+00:00\",\"dateModified\":\"2019-10-03T16:10:42+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/using-ms-jitdebug-integrated-into-e3\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/kb.elipse.com.br\/en\/using-ms-jitdebug-integrated-into-e3\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/using-ms-jitdebug-integrated-into-e3\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"In\u00edcio\",\"item\":\"https:\/\/kb.elipse.com.br\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Using MS JITDebug integrated into E3.\"}]},{\"@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":"Using MS JITDebug integrated into E3. - 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\/using-ms-jitdebug-integrated-into-e3\/","og_locale":"en_US","og_type":"article","og_title":"[:pt]Using MS JITDebug integrated into E3.[:] - Elipse Knowledgebase","og_description":"1) Introduction E3 supports the creation of scripts in VBScript language, with almost all resources available for this language. There is an extensive documentation for VBScript available in many different&hellip;","og_url":"https:\/\/kb.elipse.com.br\/en\/using-ms-jitdebug-integrated-into-e3\/","og_site_name":"Elipse Knowledgebase","article_publisher":"http:\/\/www.facebook.com\/elipsesoftware","article_published_time":"2019-03-25T20:41:57+00:00","article_modified_time":"2019-10-03T16:10:42+00:00","og_image":[{"url":"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID4619\/Figura2.png"}],"author":"Elipse Software","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Elipse Software","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/kb.elipse.com.br\/en\/using-ms-jitdebug-integrated-into-e3\/#article","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/en\/using-ms-jitdebug-integrated-into-e3\/"},"author":{"name":"Elipse Software","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/def69ea453ea60b250497b89225a9f87"},"headline":"Using MS JITDebug integrated into E3.","datePublished":"2019-03-25T20:41:57+00:00","dateModified":"2019-10-03T16:10:42+00:00","mainEntityOfPage":{"@id":"https:\/\/kb.elipse.com.br\/en\/using-ms-jitdebug-integrated-into-e3\/"},"wordCount":1355,"commentCount":0,"publisher":{"@id":"https:\/\/kb.elipse.com.br\/#organization"},"articleSection":["Scripts"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/kb.elipse.com.br\/en\/using-ms-jitdebug-integrated-into-e3\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/kb.elipse.com.br\/en\/using-ms-jitdebug-integrated-into-e3\/","url":"https:\/\/kb.elipse.com.br\/en\/using-ms-jitdebug-integrated-into-e3\/","name":"[:pt]Using MS JITDebug integrated into E3.[:] - Elipse Knowledgebase","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/#website"},"datePublished":"2019-03-25T20:41:57+00:00","dateModified":"2019-10-03T16:10:42+00:00","breadcrumb":{"@id":"https:\/\/kb.elipse.com.br\/en\/using-ms-jitdebug-integrated-into-e3\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/kb.elipse.com.br\/en\/using-ms-jitdebug-integrated-into-e3\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/kb.elipse.com.br\/en\/using-ms-jitdebug-integrated-into-e3\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"In\u00edcio","item":"https:\/\/kb.elipse.com.br\/en\/"},{"@type":"ListItem","position":2,"name":"Using MS JITDebug integrated into E3."}]},{"@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\/2946"}],"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=2946"}],"version-history":[{"count":1,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/2946\/revisions"}],"predecessor-version":[{"id":8956,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/2946\/revisions\/8956"}],"wp:attachment":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/media?parent=2946"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/categories?post=2946"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/tags?post=2946"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}