hi bart,
does the thunderstone texis specifically give an intergration package using it's APIs with TCL or with any other third party product like BroadVision.
sorry for repeating the same question.
There are no direct APIs currently for TCL or Broadvision.
Vignettte used the 'C' API and Vortex to develop their interfaces to Texis.
The easiest way to communicate to Texis without resorting to the 'C' API is to set up RPC/Soap-ish calls via HTTP and Vortex. For the most part these are no-brainer apps to write in Vortex. A typical insert, delete, and search app that communicates in XML would only take about an hour to code in Vortex.
The SQL abstract function takes the same arguments as the Vortex function, so you have the same control. You can put a <capture></capture> around the <sql> which will put the output into $ret if you want to manipulate it further.
We are attempting to write an xml interface and need the query string to be longer then default. When I attempt to use the abstract syntax I recieve a sql syntax error.
<!-- 015 /webinator/xmltest:10: Line 1: syntax error at "480" -->
<!-- 000 /webinator/xmltest:10: SQLPrepare() failed with -1 in the function prepntexis -->
What is the appropriate syntax?
Here is the code I used...
<sql max=10 row output=xml:ado
"select Title,Url,abstract(Body 480 smart $QUERY_STRING) Abs from html
where Title\Meta\Body likep $QUERY_STRING">
</sql>