hi there, i have been using tdom successfully for quite a long time and wanted to update to the newest version these days, but got some problems when trying to...
... Obviously you expect selectNodes to work in another way, than it does, but, as far as I see, your example shows, that it works perfectly according to the...
rolf@...
Apr 10, 2003 12:33 am
450
first of, thanks a lot for your very detailed explanations. i was trying to find an XPath query that would allow me to find the 'b' nodes when a default...
Walter Peino
wpeino@...
Apr 10, 2003 12:54 pm
451
... I suspect, your example is somewhat stripped down and your real documents are bigger and more complex. Depending on what you do, the getElementsByTagNameNS...
rolf@...
Apr 10, 2003 2:51 pm
452
... getElementsByTagNameNS is a good hint, but that is sometimes not sufficent for complex searches. [...] ... i think this is a really fine solution to my...
Hello, We are using tDOM with TCL 8.3 on Windows embedded in a C++/CORBA program. XML data is retrieved from an Oracle 8i iso8859-1 database and parsed into...
stevenparadine
steven.paradine@...
May 2, 2003 7:28 pm
455
... Very probably, this has one of the following two reasons: o The data in your 'sXML' variable is UTF-8 encoded, but has an XML declaration, which states...
rolf@...
May 2, 2003 7:45 pm
456
... C++/CORBA ... parsed ... an ... in a ... Thanks Rolf, I was heading down those lines of thought and the second version appears from a cursory test to solve...
stevenparadine
steven.paradine@...
May 2, 2003 7:54 pm
457
I now fail if a user enters -- aside -> from db is displayed in html form and then reinserted into db -- ® as input with a undefined entity" at line 8...
stevenparadine
steven.paradine@...
May 2, 2003 8:11 pm
458
... OK, so the following isn't really tDOM related, but this has come up several times in the past, therefore I'll add some notes. It looks like you're...
rolf@...
May 2, 2003 8:16 pm
459
... I don't understand your note about "-> from db is displayed in html form and then reinserted into db" but the second problem is pretty clear: ® isn't a...
rolf@...
May 2, 2003 8:30 pm
460
I'm considering converting an existing SQL application to XML and have been prototyping using tclDOM and tDOM to replace SQL queries. But, I'm thinking that...
... Hopefully not only because PHB has told you, that's the way to go ;-) ... XQuery for tDOM: If not someone unknown yet jumps in very probably not in the...
rolf@...
May 8, 2003 11:27 pm
462
I've put up on the Tcl'ers Wiki three packages that make use of tDOM & Rolf suggested I should email the list. They are: * xml2gui -- creates Tk widgets from...
Has anyone compiled the latest tDOM for Solaris? While trying to unzip the archive for tDOM-0.7.7, I got the error message "Unexpected EOF on archive file"...
In converting an SQL application to XML, I have found that tDOM's xsl:sort is significantly slower than Oracle SQL ORDER BY. I've written a Tcl procedure that...
... This doesn't surprise me, especially if the column you use in the ORDER BY clause is indexed. xsl:sort in tDOM uses a merge-sort algorithm, behind the...
rolf@...
May 21, 2003 5:40 pm
466
... Yes. ... Please, what bugs? ;-) No, there isn't a buglist. The reason is in deed, that there are no known serious bugs (at least known to me). Well,...
rolf@...
May 21, 2003 5:40 pm
467
I successfully compiled 0.7.7 against Tcl 8.3.3 with threads on Solaris 7. I suggest you re-download the tar.gz file again. FYI, my tDOM-0.7.7.tar.gz is 799433...
Chan Chi Hung
chihung@...
May 22, 2003 12:31 am
468
I have implemented and documented the cget option for expat. Who should I submit this code to for approval and inclusion in the cvs? A question on configuring...
Harry Moreau
hmoreau@...
May 22, 2003 10:43 am
469
... Great! Anything, that makes your code public avaliable would do it. Put it somewhere on the web for downloading and mail the URL, mail the diffs to the...
rolf@...
May 22, 2003 2:21 pm
470
... Yes, I (we) still need Tcl8.0.x support. However, I'am not sure whether things like -elementstartcommmand are really used (more DOM only). I wouldn't mind,...
... OK, so the word is spoken: We'll further support Tcl8.0.x. (Sigh.) Jochen: Any chance, that your group jumps to a more recent tcl version in the...
rolf@...
May 22, 2003 5:12 pm
472
Rolf, I tried to mail you tclexpat.c today, but pointsman.de refused to accept my mail, do you have another address I could use? -- -- Harry Moreau...
Harry Moreau
hmoreau@...
May 23, 2003 11:02 am
473
... tDOM's ... I've experiemented with doing the sorting in Tcl and it is much faster than xsl:sort. I use the sort key field values as array indices and use...
I'd like to encrypt the XML files for which I use tDOM as the DOM parser and XSLT processor. Since there appears to be no built-in XML encryption (in tDOM),...
... Now, given that tdom is non-profit fun-project of couple of highly talented programmers and XML gurus (Jochen, Rolf), and with its price tag (free...
... Now, this make me even more curious. Tcls lsort also use a merge sort algorithm. The difference is, that lsort already have the key values (the elements in...
rolf@...
May 24, 2003 12:32 pm
477
... If and how you encrpyt your data is a thing outside of the scope of tDOM - tDOM is focused on XML processing and expects the XML data in unencrypted form. ...