{"id":24400,"date":"2024-02-15T14:53:34","date_gmt":"2024-02-15T22:53:34","guid":{"rendered":"https:\/\/docs.extraview.com\/v25\/book\/post-upgrade-tasks-4\/"},"modified":"2025-02-27T19:02:51","modified_gmt":"2025-02-28T03:02:51","slug":"post-upgrade-tasks-4","status":"publish","type":"page","link":"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/windows-environment-1\/post-upgrade-tasks-4\/","title":{"rendered":"Post-Upgrade Tasks"},"content":{"rendered":"<h3>Version 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>End 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> &#8212;&gt; <b>Check Empty the cache<\/b> &#8211;&gt; <b>Clear browsing data<\/b>.<\/p>\n<h3>Navigation Bar<\/h3>\n<p>Some navigation bar themes have been altered in ExtraView 9.0, to accommodate additional buttons. If your navigation bar is partially obscured, or otherwise looks incorrect, go to <b>Admin<\/b>, <b>Initial Setup Menu<\/b>, <b>User Interface Themes<\/b> and select the theme of your choice. Please note that vertical style navigation bars are no longer supported.<\/p>\n<p>If you have a custom set of Navigation bar images, and you are upgrading from ExtraView 8.0 or older, please note that the image names for the buttons have changed. \u00a0Please reference the\u00a0<a href=\"v25\/navigation-buttons-images-1\">Images documentation<\/a> for a list of the new menubar images that are required.<\/p>\n<h3>Business Rules<\/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>&#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 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. 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. An example of a PRE_HTML_ rule that might exist in your old site that could not be converted automatically is:<\/p>\n<p class=\"fixedWidthFont\">HTML_PRE_COMMENTS = &#8220;&lt;!&#8211; generated valid html &#8211; don&#8217;t escape! &#8211;&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;!&#8211; generated valid html &#8211; don&#8217;t escape! &#8211;&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. 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;!&#8211; generated valid html &#8211; don&#8217;t escape! &#8211;&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;!&#8211; generated valid html &#8211; don&#8217;t escape! &#8211;&gt;<\/span> is not required, and the rule is simply closing the open table row from the HTML_PRE_ commands, then closing the open table, then closing the open div tag.<\/p>\n<h3>Removing 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 generally installed in <span class=\"fixedWidthFont\">C:\/Extraview\/BatchMail<\/span> and is controlled via a Windows service. You should stop the <span class=\"fixedWidthFont\">ExtraViewBatchMail<\/span> service and change it so that it does not start automatically.<\/p>\n<p>Once you have completed the upgrade and verified that all is working, you can return to this guide and complete the un-installation of the ExtraViewBatchMail service. 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<p>The scripts for your BatchMail installation can usually be found in <span class=\"fixedWidthFont\">C:\\ExtraView\\BatchMail\\scripts\\<\/span>.<\/p>\n<p>If you are using BatchMail as a Windows Service, you will need to remove the service.<\/p>\n<p>In your BatchMail\/scripts folder, you should have the file <span class=\"fixedWidthFont\">ExtraViewBatchMail.exe<\/span>.<\/p>\n<p>Start a Windows Command prompt and run the following command: <span class=\"fixedWidthFont\">ExtraViewBatchMail -uninstall ExtraViewBatchMail<\/span><\/p>\n<h3>If you Upgraded from ExtraView 5.3 or Earlier<\/h3>\n<p>If you have upgraded from a very early version of ExtraView and your users do not see many of their reports, then this is due to security permission settings not being correct for these reports. Go to <b>Admin<\/b>, <b>Fields &amp; Layouts<\/b>, <b>Grant Security Privileges<\/b>, and choose the <b>* Permissions to a group of keys * Access to query and report permission settings<\/b> entry on the select list. Set the permissions for each user role as appropriate for each of the report types.<\/p>\n<h3>Configuring 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. 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.<\/p>\n<p>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 <b>evj.old\/WEB-INF\/configuration\/<\/b> directory to the new <b>evj\/WEB-INF\/configuration\/<\/b> directory.<\/p>\n<p>In order to activate email notification, the following behavior settings must be configured from the ExtraView web interface.<\/p>\n<p>In the ExtraView administration utility <b>Email Settings<\/b>, set the following behavior settings:<\/p>\n<table class=\"border\">\n<tbody>\n<tr class=\"tableHeaderRow\">\n<td>Entry<\/td>\n<td>Purpose<\/td>\n<\/tr>\n<tr>\n<td><span class=\"fixedWidthFont\">EMAIL_DIRECTORY<\/span><\/td>\n<td>Must be set to the same value as MAIL_DIR in BatchMail configuration file. This is\u00a0<span class=\"fixedWidthFont\">C:\\ExtraView\\Tomcat7\\webapps\\evj\\<\/span><\/td>\n<\/tr>\n<tr>\n<td><span class=\"fixedWidthFont\">WEB-INF\/mailbox<\/span><\/td>\n<td>In 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><span class=\"fixedWidthFont\">EMAIL_FROM_USER_ID<\/span><\/td>\n<td>Must be set to a valid email address<\/td>\n<\/tr>\n<tr>\n<td><span class=\"fixedWidthFont\">EMAIL_NOTIFICATION<\/span><\/td>\n<td>Must be set to YES for email notification to be turned on<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\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 <b>Manage the Background Tasks<\/b>.<\/p>\n<p>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 <b>Add<\/b> a new task button.<\/p>\n<p>From the Task name select list, select Batch mail. Enter a title for this new task.<\/p>\n<p>From the Node ID drop down list, select the node on which you wish to run the BatchMail task. If you have a standard installation, the current node id will be WS_A (this is the WEB_SERVER_NAME value from the Configuration.properties file for the current instance).<\/p>\n<p>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","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":24391,"menu_order":20,"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-24400","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\/windows-environment-1\/post-upgrade-tasks-4\/\" \/>\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\/windows-environment-1\/post-upgrade-tasks-4\/\" \/>\n<meta property=\"og:site_name\" content=\"Product Documentation\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-28T03:02:51+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\/windows-environment-1\/post-upgrade-tasks-4\/\",\"url\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/windows-environment-1\/post-upgrade-tasks-4\/\",\"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-28T03:02:51+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/windows-environment-1\/post-upgrade-tasks-4\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/windows-environment-1\/post-upgrade-tasks-4\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/windows-environment-1\/post-upgrade-tasks-4\/#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\":\"Windows Environment\",\"item\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/windows-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\/windows-environment-1\/post-upgrade-tasks-4\/","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\/windows-environment-1\/post-upgrade-tasks-4\/","og_site_name":"Product Documentation","article_modified_time":"2025-02-28T03:02:51+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\/windows-environment-1\/post-upgrade-tasks-4\/","url":"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/windows-environment-1\/post-upgrade-tasks-4\/","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-28T03:02:51+00:00","breadcrumb":{"@id":"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/windows-environment-1\/post-upgrade-tasks-4\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/windows-environment-1\/post-upgrade-tasks-4\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/windows-environment-1\/post-upgrade-tasks-4\/#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":"Windows Environment","item":"https:\/\/docs.extraview.com\/v25\/extraview-25\/installation-upgrade-guide-1\/software-installation-upgrades-1\/windows-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\/24400","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=24400"}],"version-history":[{"count":0,"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/pages\/24400\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/pages\/24391"}],"wp:attachment":[{"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/media?parent=24400"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}