Web CGI demo is available: http://cl.naist.jp/syncha/
You can use XML-RPC to execute SynCha online. Sample code written in Perl is shown below:
#!/usr/bin/env perl
use XMLRPC::Lite;
my $in;
{
local $/ = undef;
$in = <>;
}
my $server = XMLRPC::Lite->proxy('http://cl.naist.jp/syncha/syncha.cgi');
my $call = $server->call('SynCha.getParsed', $in);
print $call->result;
Source code for SynCha can be obtained via CVS. Please refer to README after you download. Visit our ViewCVS page for accessing online.