Tokenizer and Sentence Boundary Detector Service

From WebLichtWiki

(Difference between revisions)
Jump to: navigation, search
(Creating a Project from an Archetype)
(Testing Webservices)
Line 63: Line 63:
 
=== Testing Webservices ===
 
=== Testing Webservices ===
  
The most straightforward way to test a webesrvice is to use wget command line tool:
+
To test the service, run it on your local server. Right-click on the project and select "Run" option. In the next screen select Tomcat server and click OK button.
  
<nowiki> wget --post-file=input.xml --header='Content-Type: text/tcf+xml' http://localhost:8080/myfirstwebservice/mytool</nowiki>
+
[[File:localserver-deploy.png]]
  
Make sure you actually have a file named "input.xml" in the current directory. This file is located under "Web Pages" in your project, just copy it to your current directory.
+
 
 +
The most straightforward way to test a webesrvice is to use wget or curl command line tool. For example, to POST TCF data contained in input.xml to the service and display service output in the terminal window, run curl:
 +
 
 +
 
 +
<nowiki> curl -H 'content-type: text/tcf+xml' -d @input.xml -X POST http://localhost:8080/mywlproject/annotate/bytes</nowiki>
 +
 
 +
<nowiki> curl -H 'content-type: text/tcf+xml' -d @input.xml -X POST http://localhost:8080/mywlproject/annotate/stream</nowiki>
 +
 
 +
 
 +
Or wget:
 +
 
 +
<nowiki> wget --post-file=input.xml --header='Content-Type: text/tcf+xml' http://localhost:8080/mywlproject/annotate/bytes</nowiki>
 +
 
 +
<nowiki> wget --post-file=input.xml --header='Content-Type: text/tcf+xml' http://localhost:8080/mywlproject/annotate/stream</nowiki>
 +
 
 +
 
 +
Make sure you actually have a file named "input.xml" in TCF0.4 format containing text layer in the current directory. Such a file, provided for testing, is located under "Web Pages" in your project, just copy it to your current directory.
  
 
=== What's next? ===
 
=== What's next? ===

Revision as of 14:31, 11 December 2012

This tutorial presents a workflow for creating a webservice for TCF processing. It shows a basic tokenizer and sentence boundaries detector service. The service processes POST requests containing TCF data with a text layer. It uses the text from the text layer to produce token and sentence annotations.


This web-service imitates the case when its processing tool object is not expensive to create and it does not consume a lot of memory. In such a case the best way is to create the tool object with each client POST request, as shown in the service implementation.


This web-service also demonstrates two ways of returning the TCF output in HTTP response: as a streaming output and as an array of bytes. Both ways have their advantages and disadvantages. In case of returning bytes array the implementation is simpler, but the whole output TCF is hold in memory at once, so in case the TCF output is big, the server might run out of memory. In case of returning streaming output the implementation is slightly more complicated, but TCF output is streamed and only a part of the output is hold in memory at a time. This makes it possible to handle TCF output of bigger size.


Contents

Prerequisites

The tutorial assumes you have the following software installed:

Adding Clarin Repository

The example WebLicht Service is provided as Maven Archetype stored in Clarin Repository. Therefore, you'll need to add Clarin Repository to your list of Maven Repositories. Skip this step if Clarin Repository is already among your Maven Repositories.


In NetBeans IDE, go to the list of Maven Repositories under the Services tab:

Maven-repositories-service.png

Right-click on "Maven Repositories" and select "Add Repository" option. Fill in the following information in the "Add Repository" window:

Finish by pressing "Add"

Adding-clarin-repository.png


Creating a Project from an Archetype

Once the Clarin Repository is accessible, we can start using the archetype at once. Press the "New Project" button in the menu bar and select: Maven -> Project From Archetype

New-project-from-archetype.png

In the next screen find and select "WebLicht Toksentences Webservice Archetype"

Select-archetype.png

Provide a name for your project, a directory to store it in as you would normally do with any NetBeans project. In addition, you have a possibility to provide a group name for your maven artifact and a package name you would like to use.

Project-name-location.png

That's it! You have just created a WebLicht webservice.

Toksents-project-created.png

Testing Webservices

To test the service, run it on your local server. Right-click on the project and select "Run" option. In the next screen select Tomcat server and click OK button.

Localserver-deploy.png


The most straightforward way to test a webesrvice is to use wget or curl command line tool. For example, to POST TCF data contained in input.xml to the service and display service output in the terminal window, run curl:


curl -H 'content-type: text/tcf+xml' -d @input.xml -X POST http://localhost:8080/mywlproject/annotate/bytes

curl -H 'content-type: text/tcf+xml' -d @input.xml -X POST http://localhost:8080/mywlproject/annotate/stream


Or wget:

wget --post-file=input.xml --header='Content-Type: text/tcf+xml' http://localhost:8080/mywlproject/annotate/bytes

wget --post-file=input.xml --header='Content-Type: text/tcf+xml' http://localhost:8080/mywlproject/annotate/stream


Make sure you actually have a file named "input.xml" in TCF0.4 format containing text layer in the current directory. Such a file, provided for testing, is located under "Web Pages" in your project, just copy it to your current directory.

What's next?

Of course you would probably like to customize the provided code. Let's take a look at the files we have in the project:

  • MyService.java - is the application definition, use it to define the path to your application and/or add more resources.
  • MyResource.java - is the definition of a resource, in case more resources are required you can use it as a template for any further resources. (Don't forget to add them to the MyService.java)
  • MyTool.java - is the place where an actual implementation of a tool resides. In this template a simple tokenizer implementation is provided.