{"id":24388,"date":"2024-02-15T14:53:34","date_gmt":"2024-02-15T22:53:34","guid":{"rendered":"https:\/\/docs.extraview.com\/v25\/book\/post-upgrade-tasks-3\/"},"modified":"2025-02-17T17:20:45","modified_gmt":"2025-02-18T01:20:45","slug":"post-upgrade-tasks-3","status":"publish","type":"page","link":"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/post-upgrade-tasks-3\/","title":{"rendered":"Post-Upgrade Tasks"},"content":{"rendered":"<h3>\n\tVersion Check<\/h3>\n<p>Start the ExtraView server and check the message at the bottom of the screen, beneath the ExtraView copyright. If there is a message such as <span style=\"color:#cc0000\">Schema Version(mismatched) Release x.x.x Build nn<\/span>, then the upgrade was not successful and you should contact ExtraView support for further assistance.<\/p>\n<h3>\n\tEnd User Action<\/h3>\n<p>The JavaScript in this version of ExtraView contains many enhancements. Most users&#8217; browsers cache the JavaScript, so please communicate to your users that they should clear their JavaScript browser cache. Failure to do this can lead to unexpected errors.<\/p>\n<p>In Internet Explorer, <b>Tools &#8211;&gt;<\/b> <b>Internet Options<\/b> &#8211;&gt; <b>Delete &#8230;<\/b> &#8212;&gt; <b>Check Temporary Internet Files<\/b> &#8211;&gt; <b>Delete<\/b>.<\/p>\n<p>In Firefox, <b>Tools<\/b> &#8211;&gt; <b>Options<\/b> &#8211;&gt; <b>Clear Recent History<\/b> &#8212;&gt; <b>Check Cache<\/b> &#8211;&gt; <b>Clear Now<\/b>.<\/p>\n<p>In Safari, <b>Tools (Gear Icon)<\/b> &#8211;&gt; <b>Reset Safari<\/b> &#8211;&gt; <b>Check Empty the cache<\/b> &#8211;&gt; <b>Reset<\/b>.<\/p>\n<p>In Chrome, <b>Tools (Wrench icon)<\/b> &#8211;&gt; <b>Options<\/b> &#8211;&gt; <b>Clear Browsing Data<b> <\/b><\/b>&#8212;&gt; <strong>Check Empty the cache<\/strong> &#8211;&gt; <strong>Clear browsing data<\/strong>.<\/p>\n<h3>\n\tNavigation Bar<\/h3>\n<p>Some navigation bar themes have been altered in ExtraView 7.0, to accommodate additional buttons. If your navigation bar is partially obscured, or otherwise looks incorrect, go to <strong>Admin &#8211;&gt; Initial Setup Menu &#8211;&gt; User Interface Themes<\/strong> and select the theme of your choice. Please note that vertical style navigation bars are no longer supported.<\/p>\n<h3>\n\tBusiness Rules &#8211; Part One<\/h3>\n<p>You will only have to perform this step if you are upgrading from a release earlier than 4.3.6 and you have been using the ExtraView Business Rules. The rules have been moved from the rules.txt file into the database. Log in to ExtraView as an administrator user and go to Administration &#8211;&gt; Workflow &#8211;&gt; Setup and Maintain Business and Email Rules. Copy the contents of the file:<\/p>\n<p class=\"fixedWidthFont\">evj_old\/WEB-INF\/configuration\/rules.txt<\/p>\n<p>into the rules section on the screen, and then press Update to save your changes.<\/p>\n<h3>\n\tBusiness Rules &#8211; Part Two<\/h3>\n<p>This is an important issue and may require changes to existing business rules. Previously, if a user focused on a field, and then set the focus elsewhere, and there was an ONCHANGE or REFRESH rule on the field, the rule would be triggered. It was not obvious to the user that an Ajax call had been made to execute a rule and there was a small delay while the Ajax call was in progress. During this time, the user had to wait, even though no changes to fields had been made.<\/p>\n<p>The behavior has been altered so that a rule that was something like this:<\/p>\n<p><code>if (AREA='Engineering Issues' &amp;&amp; RELEASE_CHILD_STATUS= 'Fixed') {<br \/>\n\t&nbsp; STATUS = 'Fixed';<br \/>\n\t} <\/code><\/p>\n<p>should now be written as:<\/p>\n<p><code>if (AREA='Engineering Issues' &amp;&amp; RELEASE_CHILD_STATUS.{changed to: 'Fixed'}) {<br \/>\n\t&nbsp; STATUS = 'Fixed';<br \/>\n\t} <\/code><\/p>\n<p>This will avoid the Ajax call being made, unless there is a change to the value of the field.<\/p>\n<h3>\n\t&#8220;HTML_PRE_xx&#8221; and &#8220;HTML_POST_xx&#8221; Fields<\/h3>\n<p>Data dictionary fields that begin with the characters HTML_PRE_ and HTML_POST_ are used to introduce formatting, such as shaded regions, onto <en>add and <em>edit<\/em> screens. Beginning with ExtraView version 6.2, the syntax of the rules associated with these fields has altered, to accommodate Ajax refreshes and the need for precise HTML syntax within the browser for the advanced features offered with ExtraView 6.2. This provides for much improved performance for users. Wherever possible, the upgrade script rewrites the rule using the new syntax. However, not all such rules can be converted automatically. During the upgrade process, an entry is made into the ExtraView log that shows which rules were converted, and which were not. The consequence of not having valid syntax in the rule will be that the display will look incorrect. Functionality should not be affected. <\/en><\/p>\n<p><en>The intent of the HTML_PRE_ and HTML_POST_ functionality is to recognize that each row in an ExtraView layout is a complete row surrounded by &lt;tr&gt; and &lt;\/tr&gt; tags. We therefore need to inject a complete and valid row into the middle of an existing table which is the ExtraView layout. The layout rows within the HTML_PRE_ and HTML_POST_ therefore emulate a table with the same number of columns as that in the layout and keeps the HTML syntax complete and accurate. <\/en><\/p>\n<p><en>An example of a PRE_HTML_ rule that might exist in your old site that could not be converted automatically is:<\/en><\/p>\n<p class=\"fixedWidthFont\">HTML_PRE_COMMENTS = &#8220;&lt;!&#45;&#45; generated valid html &#8211; don&#8217;t escape! &#45;&#45;&gt;&lt;div id=my_div style=&#8217;display:none; background-color:#F5F5FF&#8217;&gt;&lt;table&gt;&lt;tr&gt;'&#8221;;<\/p>\n<p>The new format for the HTML_PRE_ rule is:<\/p>\n<p class=\"fixedWidthFont\">HTML_PRE_COMMENTS = &#8220;&lt;tr&gt;&lt;td&gt;&lt;\/td&gt;&lt;td colspan=7&gt;&lt;div id=my_div style=&#8217;display:none; background-color:#F5F5FF&#8217;&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&#8221;;<\/p>\n<p>The need for the string <span class=\"fixedWidthFont\">&lt;!&#45;&#45; generated valid html &#8211; don&#8217;t escape! &#45;&#45;&gt;<\/span> has been eliminated. The <span class=\"fixedWidthFont\">&lt;td&gt;&lt;\/td&gt;&lt;td colspan=7&gt;<\/span> section first emulates an empty column where the field label normally resides and then spans the remainder of the columns of the layout. If you have a layout with 3 columns, the number 7 becomes 5. with 4 columns you use a span of 7, etc.<\/p>\n<p>An example of a HTML_POST_ rule that might exist in your old site that could not be converted automatically is:<\/p>\n<p class=\"fixedWidthFont\">HTML_POST_COMMENTS = &#8220;&lt;!&#45;&#45; generated valid html &#8211; don&#8217;t escape! &#45;&#45;&gt;&lt;\/tr&gt;&lt;\/table&gt;&lt;\/div&gt;<\/p>\n<p>The new format for the HTML_POST_ rule is<\/p>\n<p class=\"fixedWidthFont\">HTML_POST_COMMENTS = &#8220;&lt;\/table&gt;&lt;\/div&gt;&lt;\/td&gt;&lt;\/tr&gt;<\/p>\n<p>Again, the string <span class=\"fixedWidthFont\">&lt;!&#45;&#45; generated valid html &#8211; don&#8217;t escape! &#45;&#45;&gt;<\/span> is not required, and the rule is simply closing the open table row from the HTML_PRE_ command, then closing the open table, then closing the open div tag.<\/p>\n<h3>\n\tDisabling the External BatchMail Utility<\/h3>\n<p>If you are upgrading from a version of ExtraView previous to version 6.0, you will have previously installed a standalone utility named BatchMail on your server. This utility was used to deliver outbound ExtraView email notifications. Starting in version 6.0 this utility is built into the ExtraView application, so during the upgrade to 6.x, you should turn off and\/or uninstall the standalone BatchMail utility.<\/p>\n<p>BatchMail is typically controlled via a <span class=\"fixedWidthFont\">cron<\/span> job on your server. Simply remove the <span class=\"fixedWidthFont\">ExtraViewBatchMail<\/span> job from the <span class=\"fixedWidthFont\">crontab<\/span> entries to disable the old task. We recommend that you wait until you are satisfied with the upgrade before completing this step, so that you can roll back to your previous version of ExtraView if need be.<\/p>\n<h3>\n\tConfiguring the Built-in BatchMail Task<\/h3>\n<p>ExtraView will generate outbound email messages when issues are created or updated, when escalation routines are triggered, or when the Ad Hoc Email feature is used. These email message files are saved to a folder on the application server, defined in the EMAIL_DIRECTORY behavior setting. There is only one EMAIL_DIRECTORY location per ExtraView application \u2013 regardless of whether you are running a single instance, or if you are clustered or load-balanced across one or more servers.<\/p>\n<p>The BatchMail task is a utility that polls the EMAIL_DIRECTORY location on a timed basis, and if it finds any email messages in the folder, it uses your mail server to deliver the email message to the recipients specified.<\/p>\n<p>When performing an upgrade from a version of ExtraView with an external BatchMail program, it is best to start with a new internal BatchMail task. At this point, check the BatchMail task in the Manage Tasks and Threads utility, and if one exists in your installation, it is recommended that you delete this. The following steps will copy over the BatchMail configuration from your previous version, then allow you to configure BatchMail as an internal ExtraView task.<\/p>\n<p>To configure the BatchMail utility, you must set the SMTP server and mail directory locations. Within the ExtraView administration screens, you will then create and configure a BatchMail Task, and configure the application to write the email messages in the EMAIL_DIRECTORY location.<\/p>\n<p>Now, copy over the old BatchMail.properties configuration file, from the <code>evj.old\/WEB-INF\/configuration\/<\/code> directory to the new <code>evj\/WEB-INF\/configuration\/ <\/code>directory.<\/p>\n<p>In order to activate email notification, the following behavior settings must be configured from the ExtraView web interface. In the ExtraView administration utility Email Settings, set the behavior settings in the following table.<\/p>\n<p>You can get more information about the other email settings in the Administration Guide.<\/p>\n<p>Now set up the BatchMail Task. Go to the ExtraView administration utility <strong>Manage the Background Tasks<\/strong>. First, verify that you currently have at least 2 each of SESSION_MONITOR and TASK_CONTROL_TASK tasks in the list, and that at least one of each of these tasks has a current status of STARTED.<\/p>\n<p>Click on the Add a new task button. From the drop down Task name list, select Batch mail. Enter a title for this new task. From the Node ID drop down list, select the node on which you wish to run the BatchMail task.<\/p>\n<p>If you have a standard installation, the current node id will be WS_A (this is the WEB_SERVER_NAME value from the <code>Configuration.properties<\/code> file for the current instance). If you are running in a clustered or load-balanced environment, and if all of the instances (nodes) are on the same server, you should set up one BatchMail task to be shared by all nodes. If each node is on a separate server, you can either set the MAIL_DIR to a location accessible by all nodes and have a single task on one node, or you can build a location mapping to MAIL_DIR on each node, and have each node running its own BatchMail task.<\/p>\n<table class=\"border\">\n<tbody>\n<tr class=\"tableHeaderRow\">\n<td>\n\t\t\t\tEntry<\/td>\n<td>\n\t\t\t\tPurpose<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\tEMAIL_DIRECTORY<\/td>\n<td>\n\t\t\t\tMust be set to the same value as MAIL_DIR in BatchMail configuration file. This is <span class=\"fixedWidthFont\">\/usr\/local\/extraview\/tomcat\/webapps\/evj\/<\/span><\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\tWEB-INF\/mailbox<\/td>\n<td>\n\t\t\t\tIn the example above. Both the application servers and the BatchMail services must have read and write access to this location<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\tEMAIL_FROM_USER_ID<\/td>\n<td>\n\t\t\t\tMust be set to a valid email address<\/td>\n<\/tr>\n<tr>\n<td>\n\t\t\t\tEMAIL_NOTIFICATION<\/td>\n<td>\n\t\t\t\tMust be set to YES for email notification to be turned on<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Version Check Start the ExtraView server and check the message at the bottom of the screen, beneath the ExtraView copyright. If there is a message such as Schema Version(mismatched) Release x.x.x Build nn, then the upgrade was not successful and you should contact ExtraView support for further assistance. End User Action The JavaScript in this&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":24376,"menu_order":50,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_lmt_disableupdate":"no","_lmt_disable":"","_kad_blocks_custom_css":"","_kad_blocks_head_custom_js":"","_kad_blocks_body_custom_js":"","_kad_blocks_footer_custom_js":"","_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"footnotes":""},"class_list":["post-24388","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Post-Upgrade Tasks - Product Documentation<\/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:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/post-upgrade-tasks-3\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Post-Upgrade Tasks - Product Documentation\" \/>\n<meta property=\"og:description\" content=\"Version Check Start the ExtraView server and check the message at the bottom of the screen, beneath the ExtraView copyright. If there is a message such as Schema Version(mismatched) Release x.x.x Build nn, then the upgrade was not successful and you should contact ExtraView support for further assistance. End User Action The JavaScript in this...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/post-upgrade-tasks-3\/\" \/>\n<meta property=\"og:site_name\" content=\"Product Documentation\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-18T01:20:45+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/post-upgrade-tasks-3\/\",\"url\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/post-upgrade-tasks-3\/\",\"name\":\"Post-Upgrade Tasks - Product Documentation\",\"isPartOf\":{\"@id\":\"https:\/\/docs.extraview.com\/v25\/#website\"},\"datePublished\":\"2024-02-15T22:53:34+00:00\",\"dateModified\":\"2025-02-18T01:20:45+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/post-upgrade-tasks-3\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/post-upgrade-tasks-3\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/post-upgrade-tasks-3\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/docs.extraview.com\/v25\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"ExtraView 25\",\"item\":\"https:\/\/docs.extraview.com\/v25\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Installation &#038; Upgrade Guide\",\"item\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Software Installation &#038; Upgrades\",\"item\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/\"},{\"@type\":\"ListItem\",\"position\":5,\"name\":\"Linux Environment\",\"item\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/\"},{\"@type\":\"ListItem\",\"position\":6,\"name\":\"Post-Upgrade Tasks\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/docs.extraview.com\/v25\/#website\",\"url\":\"https:\/\/docs.extraview.com\/v25\/\",\"name\":\"ExtraView Product Documentation\",\"description\":\"ExtraView Documentation\",\"publisher\":{\"@id\":\"https:\/\/docs.extraview.com\/v25\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/docs.extraview.com\/v25\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/docs.extraview.com\/v25\/#organization\",\"name\":\"ExtraView Corporation\",\"url\":\"https:\/\/docs.extraview.com\/v25\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/docs.extraview.com\/v25\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/docs-stg.extraview.com\/wp-content\/uploads\/2024\/03\/favicon.png\",\"contentUrl\":\"https:\/\/docs-stg.extraview.com\/wp-content\/uploads\/2024\/03\/favicon.png\",\"width\":512,\"height\":512,\"caption\":\"ExtraView Corporation\"},\"image\":{\"@id\":\"https:\/\/docs.extraview.com\/v25\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Post-Upgrade Tasks - Product Documentation","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:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/post-upgrade-tasks-3\/","og_locale":"en_US","og_type":"article","og_title":"Post-Upgrade Tasks - Product Documentation","og_description":"Version Check Start the ExtraView server and check the message at the bottom of the screen, beneath the ExtraView copyright. If there is a message such as Schema Version(mismatched) Release x.x.x Build nn, then the upgrade was not successful and you should contact ExtraView support for further assistance. End User Action The JavaScript in this...","og_url":"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/post-upgrade-tasks-3\/","og_site_name":"Product Documentation","article_modified_time":"2025-02-18T01:20:45+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/post-upgrade-tasks-3\/","url":"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/post-upgrade-tasks-3\/","name":"Post-Upgrade Tasks - Product Documentation","isPartOf":{"@id":"https:\/\/docs.extraview.com\/v25\/#website"},"datePublished":"2024-02-15T22:53:34+00:00","dateModified":"2025-02-18T01:20:45+00:00","breadcrumb":{"@id":"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/post-upgrade-tasks-3\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/post-upgrade-tasks-3\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/post-upgrade-tasks-3\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/docs.extraview.com\/v25\/"},{"@type":"ListItem","position":2,"name":"ExtraView 25","item":"https:\/\/docs.extraview.com\/v25\/"},{"@type":"ListItem","position":3,"name":"Installation &#038; Upgrade Guide","item":"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/"},{"@type":"ListItem","position":4,"name":"Software Installation &#038; Upgrades","item":"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/"},{"@type":"ListItem","position":5,"name":"Linux Environment","item":"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/linux-environment-1\/"},{"@type":"ListItem","position":6,"name":"Post-Upgrade Tasks"}]},{"@type":"WebSite","@id":"https:\/\/docs.extraview.com\/v25\/#website","url":"https:\/\/docs.extraview.com\/v25\/","name":"ExtraView Product Documentation","description":"ExtraView Documentation","publisher":{"@id":"https:\/\/docs.extraview.com\/v25\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/docs.extraview.com\/v25\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/docs.extraview.com\/v25\/#organization","name":"ExtraView Corporation","url":"https:\/\/docs.extraview.com\/v25\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/docs.extraview.com\/v25\/#\/schema\/logo\/image\/","url":"https:\/\/docs-stg.extraview.com\/wp-content\/uploads\/2024\/03\/favicon.png","contentUrl":"https:\/\/docs-stg.extraview.com\/wp-content\/uploads\/2024\/03\/favicon.png","width":512,"height":512,"caption":"ExtraView Corporation"},"image":{"@id":"https:\/\/docs.extraview.com\/v25\/#\/schema\/logo\/image\/"}}]}},"taxonomy_info":[],"featured_image_src_large":false,"author_info":{"display_name":"carl.koppel","author_link":"https:\/\/docs.extraview.com\/v25\/author\/carl-koppel\/"},"comment_info":0,"_links":{"self":[{"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/pages\/24388","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/comments?post=24388"}],"version-history":[{"count":0,"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/pages\/24388\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/pages\/24376"}],"wp:attachment":[{"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/media?parent=24388"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}