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.
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>
Now the only problem that I have is that of providing term highlighting on the xml format. You have suggested using <capture> sql statement capture </capture> then a $ret is available for formatting. Unfortunately the xml schema format is corrupted in that the <,>,and " symbols are converted to <, > , and ". Doing a replace on these would unfortunately remove < and > from the xml data section where it is needed.
Any ideas?