Hi all,
I am using the Tamino API4J (4.4.1.4) and I manipulate xml document retrieved with an xquery (it returns the ino:id too). But when I want to do an update:
public int TaminoUpdate(String myxml)
{
try
{
conn = getConnection();
TLocalTransaction transaction = conn.useLocalTransactionMode();
TXMLObjectAccessor xmlObjectAccessor = conn.newXMLObjectAccessor(TAccessLocation.newInstance(collection), TDOMObjectModel.getInstance());
TXMLObject xmlObject = TXMLObject.newInstance(myxml);
TResponse response;
try
{
response = xmlObjectAccessor.update(xmlObject);
}
catch(TAccessorException accessorException)
{
…
…
it gives me back an error “INOXDE7935” - “Could not retrieve the message code TAJCME0103”.
The code INOXDE7935 is associated at the message “Schema not found” but the schema exist and I have no idea what could be the problem.
Thanks for your help!
Pam