Thanks Tibor
I assume that in the second function, if the
document is non-existent, that the return
will be false....
>>> [EMAIL PROTECTED] 2004/09/01 01:38:44 PM >>>
check out the org.w3c.dom Classes they are really usefull,
as well as javascript inbeded DOM manipualtion Classes
Maybe this can help you
>function createDocument(uri, "<root/>")
function createDocument(uri, nodename){
//Construct DOM document
var document =createDocument();
var r = document.createElement(nodename);
document.appendChild(r);
//then save it to DB or else where through pipeline or File Class
}
//this only makes sure the document contains Nodes
function isDocument(uri){
var document = loadDocument(uri);
return document.hasChildNodes();
}
Tibor
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
MailScanner thanks transtec Computers for their support.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]