Search XML with HTML Form

Z

zakhirn

Hello,

I have an extremely new user to XML and XSL, and I would like to know
how to search XML data via a input form in HTML, and have the results
displayed in HTML.

If anyone has code that can do that, could you please post the relevant
files. I have searched the internet for a while now, and have been
completely unsuccessful. I would like to do it using javascript in my
XSL file if possible, or using CGI script to search the XML file and
display the results.

Any help would be much appriciated. Thanks a lot!

Zakhir
 
T

Thommo

I have an extremely new user to XML and XSL, and I would like to know
how to search XML data via a input form in HTML, and have the results
displayed in HTML.

If anyone has code ..

Will 'Klingon' do?
...that can do that, could you please post the relevant
files. I have searched the internet for a while now,
*

...and have been
completely unsuccessful. I would like to do it using javascript

..in my XSL file if possible, or using CGI ..

...script to search the XML file and
display the results.

Any help would be much appriciated.

Try the people who might deal with the languages you
requested (this is a usenet newsgroup for the *Java*
programming langauge) but you might help them
to help you by ..
* mentioning the search term used.

Andrew T.
 
T

Thommo

Thommo said:
Try the people who might deal with the languages you
requested (this is a usenet newsgroup for the *Java*
programming langauge)

....D'Ohhhhh!

(embarrassed grin) Just popped by, and forgot where I
was. My deepest apologies to the OP, and for the waste
of bandwidth..

Andrew T.
 
P

Peter Flynn

Hello,

I have an extremely new user to XML and XSL, and I would like to know
how to search XML data

You need an XML search engine. There are many available, from little
free hand-made ones, right up to multi-million dollar ones for big
corporations.
via a input form in HTML, and have the results displayed in HTML.

How you gather the user's query, and how you display the results
can be done a gazillion different ways, but a common one is:

a) normal HTML <input> in a form
b) data is sent to a script
c) script checks query for acceptability and either rejects query
or passes it to search engine
d) search engine returns results, either in HTML, or XML, or some
other format (eg TAB-delimited text)
e) script translates the search-engine output into HTML and sends
the result back to the user's browser.
If anyone has code that can do that, could you please post the relevant
files. I have searched the internet for a while now, and have been
completely unsuccessful. I would like to do it using javascript in my
XSL file if possible, or using CGI script to search the XML file and
display the results.

I don't see what Javascript in an XSL file would have to do with it.

If you want to invent your own, and it's just on a single file with
minimal markup, you could just use grep in your script. But it won't
be as reliable as using an XML-compliant search tool.

///Peter
 
J

Joe Kesselman

Peter said:
You need an XML search engine.

Or an XPath, XSLT, or XQuery implementation, and code to convert your
form input into the appropriate operation. (I'd suggest the latter two
since they also cover formatting the data you've found.)


If you're already using XSLT, you've already got the basic tools you
need, except for the step that turns the form input into an appropriate
stylesheet.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,053
Latest member
BrodieSola

Latest Threads

Top