{"id":22564,"date":"2024-02-15T14:48:40","date_gmt":"2024-02-15T22:48:40","guid":{"rendered":"https:\/\/docs.extraview.com\/v22\/book\/install-configure-tomcat\/"},"modified":"2024-02-15T14:48:40","modified_gmt":"2024-02-15T22:48:40","slug":"install-configure-tomcat","status":"publish","type":"page","link":"https:\/\/docs.extraview.com\/v22\/install-configure-tomcat\/","title":{"rendered":"Install &#038; Configure Tomcat"},"content":{"rendered":"<p class=\"textGreyBg\">We recommend installing Tomcat 9.0 to work with this release of ExtraView.&nbsp;<\/p>\n<p>The following steps will install Tomcat into the directory <span class=\"fixedWidthFont\">\/apache-tomcat-9.0.xx<\/span>.<\/p>\n<p class=\"required\">Note that Tomcat is required, even if you are intending to use Microsoft IIS as your web server. IIS does not provide the same functionality as Tomcat.<\/p>\n<h3>\n\tInstallation<\/h3>\n<p><span class=\"fixedWidthFont\">cd &nbsp;<\/span><br \/>\n\t<span class=\"fixedWidthFont\">cp apache-tomcat-9.0.xx.tar.gz <br \/>\n\tcd <br \/>\n\tgunzip apache-tomcat-9.0.xx.tar.gz<\/span><br \/>\n\t<span class=\"fixedWidthFont\">tar xvf apache-tomcat-9.0.xx.tar<br \/>\n\trm apache-tomcat-9.0.xx.tar<\/span><\/p>\n<h3>\n\tConfiguration<\/h3>\n<p>We can remove *.bat files since this is a Linux installation.<\/p>\n<p><span class=\"fixedWidthFont\">cd \/apache-tomcat-9.0.xx\/bin&nbsp;<\/span><br \/>\n\t<span class=\"fixedWidthFont\">rm *.bat<br \/>\n\tchmod 744 startup.sh shutdown.sh catalina.sh<\/span><\/p>\n<p>The following steps will set memory parameters for Tomcat and configure it to run with the correct Java.<\/p>\n<p>We generally do not recommend setting the Xmx parameter above 1024 megs at maximum. If your system usage is predicted to be high enough that you will require more memory, we strongly suggest installing a clustered set of multiple Tomcat nodes under a load-balanced Apache web server.<\/p>\n<p><span class=\"fixedWidthFont\">vi \/apache-tomcat-9.0.xx\/bin\/catalina.sh<\/span><\/p>\n<p>Add the following lines:<\/p>\n<p><span class=\"fixedWidthFont\">JAVA_HOME=\/usr\/local\/extraview\/jre1.8.0_xx<br \/>\n\tCATALINA_HOME=\/usr\/local\/extraview\/apache-tomcat-8.0.xx<br \/>\n\tCATALINA_OPTS=&#8221;-server -Xms96m -Xmx512m -Djava.awt.headless=true -Dfile.encoding=UTF-8&#8243;<\/span><\/p>\n<p>If you are using Java 9.0 and above, you will need to add the parameter &#8220;-Djava.local.providers=COMPAT&#8221; as well<\/p>\n<p><span style=\"color: rgb(170, 0, 0); font-family: courier, monospace;\">CATALINA_OPTS=&#8221;-server -Xms96m -Xmx1024m -XX:MaxPermSize=190m -Djava.awt.headless=true -Dfile_encoding=UTF-8 -Dcom.sun.management.jmxremote -Djava.locale.providers=COMPAT&#8221;<\/span><\/p>\n<p><span class=\"fixedWidthFont\">vi \/apache-tomcat-9.0.xx\/bin\/startup.sh \/apache-tomcat-9.0.xx\/bin\/shutdown.sh<\/span><\/p>\n<p>Add the following lines to each script:<\/p>\n<p><span class=\"fixedWidthFont\">JAVA_HOME=\/usr\/local\/extraview\/jre1.8.0_xx<br \/>\n\tCATALINA_HOME=\/usr\/local\/extraview\/apache-tomcat-9.0.xx<\/span><\/p>\n<p>Tomcat is now installed in the directory <span class=\"fixedWidthFont\">\/apache-tomcat-9.0.xx<\/span>. You can start\/stop tomcat using the following commands:<\/p>\n<p><span class=\"fixedWidthFont\">\/apache-tomcat-9.0.xx\/bin\/startup.sh<br \/>\n\t\/apache-tomcat-9.0.xx\/bin\/shutdown.sh<\/span><\/p>\n<p>If you enter the URL of the server using port 8080 into a browser, for example http:\/\/server.domain.com:8080, you should get a test page similar to the following.<\/p>\n<p><img decoding=\"async\" alt=\"\" src=\"\/extraview-media\/images\/ig\/20.0\/solaris-unix-linux\/tomcat-2.png\" width=\"90%\" \/><\/p>\n<h3>\n\t<span style=\"font-size: 12pt;\">Tomcat 9.x Configuration<\/span><\/h3>\n<p>Edit the <code>tomcat\/conf\/context.xml<\/code> file<\/p>\n<ol>\n<li>\n<p style=\"background-color: rgb(255, 255, 255);\">At the bottom of the file, add the the two following lines, before the last line wich reads&nbsp;<code>&lt;\/Context&gt;<\/code> :<\/p>\n<p style=\"background-color: rgb(255, 255, 255);\"><code>&lt;!-- Force use of the old Cookie processor (because this Tomcat version uses RFC6265 Cookie Specification) --&gt;<br \/>\n\t\t\t&lt;CookieProcessor className=\"org.apache.tomcat.util.http.LegacyCookieProcessor\" \/&gt;<\/code><\/p>\n<\/li>\n<li>\n\t\tLocate the following section in the Tomcat configuration file <code>&lt;tomcat_home&gt;\/conf\/context.xml<\/code>:<\/p>\n<p>\t\t<code>&lt;!-- Uncomment this to disable session persistence across Tomcat restarts --&gt;<br \/>\n\t\t&lt;!--<br \/>\n\t\t&lt;Manager pathname=\"\" \/&gt;<br \/>\n\t\t--&gt; <\/code><\/p>\n<p>\t\tand alter to use the setting by removing the comments&nbsp;<code>&lt;!--<\/code>&nbsp;and&nbsp;<code>--&gt;<\/code>;.&nbsp; This section will now read:<\/p>\n<p>\t\t<code>&lt;!-- Disable session persistence across Tomcat restarts --&gt;<br \/>\n\t\t&lt;Manager pathname=\"\" \/&gt;<\/code><\/li>\n<\/ol>\n<p>Edit the<code> tomcat\/conf\/server.xml <\/code>file<\/p>\n<ol>\n<li>\n\t\tLocate the AJP 1.3 Connector section and remove the comments surrounding the <code>Connector <\/code>entry.&nbsp; I.e. remove&nbsp;&nbsp;<code>&lt;!--<\/code>&nbsp;and <code>--&gt;<\/code><\/p>\n<div>\n\t\t\t<code>&nbsp; &nbsp; &lt;!-- Define an AJP 1.3 Connector on port 8009 --&gt;<br \/>\n\t\t\t&nbsp; &nbsp; &lt;!--<\/code><\/div>\n<div>\n\t\t\t<code>&nbsp; &nbsp; &lt;Connector protocol=\"AJP\/1.3\"<\/code><\/div>\n<div>\n\t\t\t<code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;address=\"::1\"<\/code><\/div>\n<div>\n\t\t\t<code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;port=\"8009\"<\/code><\/div>\n<div>\n\t\t\t<code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;redirectPort=\"8443\"<\/code><\/div>\n<div>\n\t\t\t<code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \/&gt;<br \/>\n\t\t\t&nbsp; &nbsp; --&gt;<\/code><br \/>\n\t\t\t&nbsp;<\/div>\n<\/li>\n<li>\n\t\tIf your servers are using IPV4 addresses (most common), you should modify the <code>address=\"::1\"<\/code> value in the Connector parameter to force Tomcat to use IPV4.&nbsp; Set it to&nbsp; <code>0.0.0.0<\/code><\/p>\n<div>\n\t\t\t<code>&nbsp;&lt;!-- Define an AJP 1.3 Connector on port 8009 --&gt;<br \/>\n\t\t\t&nbsp; &nbsp; &lt;Connector protocol=\"AJP\/1.3\"<\/code><\/div>\n<div>\n\t\t\t<code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;address=\"0.0.0.0\"<\/code><\/div>\n<div>\n\t\t\t<code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;port=\"8009\"<\/code><\/div>\n<div>\n\t\t\t<code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;redirectPort=\"8443\"<\/code><\/div>\n<div>\n\t\t\t<code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \/&gt;<\/code><br \/>\n\t\t\t&nbsp;<\/div>\n<\/li>\n<li>\n\t\tStarting with Tomcat 8.5, the standard installation altered the way in which several characters were accepted as valid URL characters.&nbsp; These are characters such as <code>|<\/code>, <code>{ <\/code>and <code>}<\/code>.&nbsp; Some of these characters have long been used within the ExtraView application.&nbsp; To enable Tomcat&#8217;s handling of these characters, modify the <code>Connector <\/code>setting in the <code>conf\/server.xml<\/code> file by adding the following entry:<\/p>\n<p>\t\t<code>relaxedQueryChars=\"{}|\"<\/code>&nbsp;<\/p>\n<p>\t\tSo that you have:<\/p>\n<p>\t\t<code>&lt;Connector protocol=\"AJP\/1.3\"<br \/>\n\t\t&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;address=\"0.0.0.0\"<br \/>\n\t\t&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;port=\"8009<span style=\"color: rgb(170, 0, 0); font-family: courier, monospace;\">\"<br \/>\n\t\t&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<\/span>redirectPort=\"8443\"<br \/>\n\t\t&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;relaxedQueryChars=\"{}|<code>\"<br \/>\n\t\t<code><code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\/&gt;<\/code><\/code><\/code><\/code><br \/>\n\t\t&nbsp;<\/li>\n<li>\n\t\tNewer versions of Tomcat 8.x\/9.x have a mandatory security measure that must be configured.&nbsp; This measure rejects all calls to the Tomcat server unless a secret word is part of the request, with requests typically being sent by the Apache web server.&nbsp; Without this configuration, the Tomcat server will apear to spin without responding to the request or will respond with a 404 Not Found error.&nbsp; To configure this feature:<\/p>\n<ol>\n<li>\n\t\t\t\tIn the <code>server.xml file<\/code>, ensure the section for the AJP 13 connector has the new parameter:<\/p>\n<p>\t\t\t\t<code>secret=\"<em>changeme<\/em>\"<\/code><\/p>\n<p>\t\t\t\t<code>&lt;Connector protocol=\"AJP\/1.3\"<br \/>\n\t\t\t\t&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;address=\"0.0.0.0\"<br \/>\n\t\t\t\t&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;port=\"8009\"<br \/>\n\t\t\t\t&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;redirectPort=\"8443\"<br \/>\n\t\t\t\t&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;relaxedQueryChars=\"{}|\"<br \/>\n\t\t\t\t&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;secret=\"<em>changeme<\/em>\"<br \/>\n\t\t\t\t&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \/&gt;<\/code><\/p>\n<p>\t\t\t\tNote the secret word should be changed to your own secret word.<br \/>\n\t\t\t\t&nbsp;<\/li>\n<li>\n\t\t\t\tNow, in the <code>workers.properties <\/code>file where you set the AJP13 connector, add the parameter:<\/p>\n<p>\t\t\t\t<code>worker.tomcat1.secret = <em>changeme<\/em><\/code><\/p>\n<p>\t\t\t\tNote the secret word should match the entry you created in the <code>server.xml<\/code> file.<\/li>\n<\/ol>\n<\/li>\n<\/ol>\n<p>After making these configuration changes, stop and restart the tomcat process to pick up the changes.<\/p>\n<h3>\n\tUsing the APIs to Insert Large Amounts of Text<\/h3>\n<p>When using an API to insert very large amounts of text within a single issue you may encounter an error within the API function, exhibiting as a null pointer exception that originates within the Tomcat application server.&nbsp; This error may be remedied by inserting the modifying the Connector entry within the Tomcat configuration file.&nbsp; An example of the altered configuration is:<\/p>\n<div>\n\t<code>&lt;Connector port=\"8082\" protocol=\"HTTP\/1.1\" URIEncoding=\"UTF-8\"<\/code><\/div>\n<div>\n\t<code>&nbsp; &nbsp;connectionTimeout=\"20000\" maxPostSize=\"209715200\"<\/code><\/div>\n<div>\n\t<code>&nbsp; &nbsp;redirectPort=\"8442\" maxParameterCount=\"1000000\" \/&gt;<\/code><\/div>\n<p>The <code>maxPostSize <\/code>parameter increases the size of Tomcat&#8217;s buffer used to process the API command.<\/p>\n<h3>\n\tUse of WAR Files with Apache Tomcat<\/h3>\n<p>Normally, Tomcat explodes any existing WAR files and uses the extracted contents. However, Tomcat also supports the use of unexploded WAR files.<\/p>\n<p>To configure Tomcat for use of unexploded WAR files, update the server.xml file to prevent explosion of WAR file as follows:<\/p>\n<p>Find the line:<\/p>\n<p><code>unpackWARs=\"true\" autoDeploy=\"true\"<\/code><\/p>\n<p>Change this to:<\/p>\n<p><code>unpackWARs=\"false\" autoDeploy=\"true\"<\/code><\/p>\n","protected":false},"excerpt":{"rendered":"<p>We recommend installing Tomcat 9.0 to work with this release of ExtraView.&nbsp; The following steps will install Tomcat into the directory \/apache-tomcat-9.0.xx. Note that Tomcat is required, even if you are intending to use Microsoft IIS as your web server. IIS does not provide the same functionality as Tomcat. Installation cd &nbsp; cp apache-tomcat-9.0.xx.tar.gz cd&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_lmt_disableupdate":"","_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-22564","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>Install &amp; Configure Tomcat - 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\/v22\/install-configure-tomcat\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install &amp; Configure Tomcat - Product Documentation\" \/>\n<meta property=\"og:description\" content=\"We recommend installing Tomcat 9.0 to work with this release of ExtraView.&nbsp; The following steps will install Tomcat into the directory \/apache-tomcat-9.0.xx. Note that Tomcat is required, even if you are intending to use Microsoft IIS as your web server. IIS does not provide the same functionality as Tomcat. Installation cd &nbsp; cp apache-tomcat-9.0.xx.tar.gz cd...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/docs.extraview.com\/v22\/install-configure-tomcat\/\" \/>\n<meta property=\"og:site_name\" content=\"Product Documentation\" \/>\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=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/docs.extraview.com\/v22\/install-configure-tomcat\/\",\"url\":\"https:\/\/docs.extraview.com\/v22\/install-configure-tomcat\/\",\"name\":\"Install & Configure Tomcat - Product Documentation\",\"isPartOf\":{\"@id\":\"https:\/\/docs.extraview.com\/v22\/#website\"},\"datePublished\":\"2024-02-15T22:48:40+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/docs.extraview.com\/v22\/install-configure-tomcat\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/docs.extraview.com\/v22\/install-configure-tomcat\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/docs.extraview.com\/v22\/install-configure-tomcat\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/docs.extraview.com\/v22\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install &#038; Configure Tomcat\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/docs.extraview.com\/v22\/#website\",\"url\":\"https:\/\/docs.extraview.com\/v22\/\",\"name\":\"ExtraView Product Documentation\",\"description\":\"ExtraView Documentation\",\"publisher\":{\"@id\":\"https:\/\/docs.extraview.com\/v22\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/docs.extraview.com\/v22\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/docs.extraview.com\/v22\/#organization\",\"name\":\"ExtraView Corporation\",\"url\":\"https:\/\/docs.extraview.com\/v22\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/docs.extraview.com\/v22\/#\/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\/v22\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Install & Configure Tomcat - 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\/v22\/install-configure-tomcat\/","og_locale":"en_US","og_type":"article","og_title":"Install & Configure Tomcat - Product Documentation","og_description":"We recommend installing Tomcat 9.0 to work with this release of ExtraView.&nbsp; The following steps will install Tomcat into the directory \/apache-tomcat-9.0.xx. Note that Tomcat is required, even if you are intending to use Microsoft IIS as your web server. IIS does not provide the same functionality as Tomcat. Installation cd &nbsp; cp apache-tomcat-9.0.xx.tar.gz cd...","og_url":"https:\/\/docs.extraview.com\/v22\/install-configure-tomcat\/","og_site_name":"Product Documentation","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/docs.extraview.com\/v22\/install-configure-tomcat\/","url":"https:\/\/docs.extraview.com\/v22\/install-configure-tomcat\/","name":"Install & Configure Tomcat - Product Documentation","isPartOf":{"@id":"https:\/\/docs.extraview.com\/v22\/#website"},"datePublished":"2024-02-15T22:48:40+00:00","breadcrumb":{"@id":"https:\/\/docs.extraview.com\/v22\/install-configure-tomcat\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/docs.extraview.com\/v22\/install-configure-tomcat\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/docs.extraview.com\/v22\/install-configure-tomcat\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/docs.extraview.com\/v22\/"},{"@type":"ListItem","position":2,"name":"Install &#038; Configure Tomcat"}]},{"@type":"WebSite","@id":"https:\/\/docs.extraview.com\/v22\/#website","url":"https:\/\/docs.extraview.com\/v22\/","name":"ExtraView Product Documentation","description":"ExtraView Documentation","publisher":{"@id":"https:\/\/docs.extraview.com\/v22\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/docs.extraview.com\/v22\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/docs.extraview.com\/v22\/#organization","name":"ExtraView Corporation","url":"https:\/\/docs.extraview.com\/v22\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/docs.extraview.com\/v22\/#\/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\/v22\/#\/schema\/logo\/image\/"}}]}},"taxonomy_info":[],"featured_image_src_large":false,"author_info":{"display_name":"carl.koppel","author_link":"https:\/\/docs.extraview.com\/v22\/author\/carl-koppel\/"},"comment_info":0,"_links":{"self":[{"href":"https:\/\/docs.extraview.com\/v22\/wp-json\/wp\/v2\/pages\/22564","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/docs.extraview.com\/v22\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/docs.extraview.com\/v22\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/docs.extraview.com\/v22\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/docs.extraview.com\/v22\/wp-json\/wp\/v2\/comments?post=22564"}],"version-history":[{"count":0,"href":"https:\/\/docs.extraview.com\/v22\/wp-json\/wp\/v2\/pages\/22564\/revisions"}],"wp:attachment":[{"href":"https:\/\/docs.extraview.com\/v22\/wp-json\/wp\/v2\/media?parent=22564"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}