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=28&rev2=29

  {{{
  $ curl -X PUT -H "Content-Disposition: attachment; filename=foo.csv" 
--upload-file foo.csv http://localhost:9998/detect/stream
  }}}
+ 
+ == Recursive Metadata and Content ==
+ {{{
+ /rmeta
+ }}}
+ 
+ Returns a JSONified list of Metadata objects for the container document and 
all embedded documents.
+ The text that is extracted from each document is stored in the metadata 
object under "X-TIKA:content".
+ 
+ {{{
+ $ curl -T test_recursive_embedded.docx http://localhost:9998/rmeta
+ }}}
+ 
+ Returns:
+ {{{
+ [
+  {"Application-Name":"Microsoft Office Word",
+   "Application-Version":"15.0000",
+   
"X-Parsed-By":["org.apache.tika.parser.DefaultParser","org.apache.tika.parser.microsoft.ooxml.OOXMLParser"],
+   "X-TIKA:content":"embed_0 "
+   ...
+  },
+  {"Content-Encoding":"ISO-8859-1",
+   "Content-Length":"8",
+   "Content-Type":"text/plain; charset=ISO-8859-1"
+   "X-TIKA:content":"embed_1b",
+   ...
+  }
+  ...
+ ]
+ }}}
  == Unpack Resource ==
  {{{
  /unpack

Reply via email to