hi out there,
i’d like to update docs by using a web-frontend. everything works fine with storing an reading to and from tamino, but updating a document via JS is producing some INOXME8554 (No Message) fault. i’m using the same “process” procedure which is used to save the native doc for the first time. also my edited doc works fine, i receive the “ino:id” from the document to edit, and insert it into my document to update. the process method via Jscript doesn’t work, but updating tamino via “interactive interface” works fine.
function XmlToDB ()
{
var dbname="http://host/tamino/db";
var dbuser="user";
var dbpass="pass";
var ProcessObj=new TaminoClient(dbname,dbuser,dbpass);
var ProcessResult;
var xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
xmlDoc.async = false;
xmlDoc.load("tmp/sI.xml");
ProcessResult = ProcessObj.process(xmlDoc);
if (ProcessResult.errorNo == "0")
{
ProcessObj.commit();
alert("No Fault");
}
else
{
alert(ProcessResult.errorText);
};
};
any ideas?
thanks for any help.
ak
#webMethods-Tamino-XML-Server-APIs#API-Management#webMethods