You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tika.apache.org by Apache Wiki <wi...@apache.org> on 2016/06/24 11:56:09 UTC

[Tika Wiki] Update of "TikaJAXRS" by TimothyAllison

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Tika Wiki" for change notification.

The "TikaJAXRS" page has been changed by TimothyAllison:
https://wiki.apache.org/tika/TikaJAXRS?action=diff&rev1=43&rev2=44

  <<TableOfContents(4)>>
  
  == Installation ==
- The easiest way to get the Tika JAXRS server is to download the latest stable release binary. This is available from the [[http://tika.apache.org/download.html|Apache Tika downloads page]], via your favourite local mirror. You want the ''tika-server-1.x.jar'' file, eg ''tika-server-1.7.jar''
+ The easiest way to get the Tika JAXRS server is to download the latest stable release binary. This is available from the [[http://tika.apache.org/download.html|Apache Tika downloads page]], via your favourite local mirror. You want the ''tika-server-1.x.jar'' file, eg ''tika-server-1.13.jar''
  
  Alternatively you can use unofficial [[https://www.docker.com/|docker]] image from Dave Meikle.
  
@@ -27, +27 @@

  Remember to replace x.x with the version you have built.
  
  == Running the Tika Server ==
- The Tika Server binary is a standalone runnable jar. You can start it by calling java with the {{{-jar}}} option, eg something like {{{java -jar tika-server-1.7.jar}}}
+ The Tika Server binary is a standalone runnable jar. You can start it by calling java with the {{{-jar}}} option, eg something like {{{java -jar tika-server-1.13.jar}}}
  
  You will then see a message such as the following:
  
@@ -315, +315 @@

  ]
  }}}
  
+ The default format for "X-TIKA:content" is XML.  However, you can select "text only" with
+ {{{
+ /rmeta/text
+ }}}
+ HTML with 
+ {{{
+ /rmeta/html
+ }}} 
+ and no content (metadata only) with 
+ {{{
+ /rmeta/ignore
+ }}}
+ 
  === Multipart Support ===
  
  Metadata Resource also accepts the files as multipart/form-data attachments with POST.