Hello,

As mentioned yesterday there is a problem when loading jobproperties  from
the cold-storage. I found a simple workaround for this problem however. I
noticed that the call to asBytes() on a com.workingdogs.village.Value seems
not to work I therefor replaced it by a asString().getBytes(). This works
fine. Could somebody please implement this work-around in the class
BaseJobEntryPeer.populateObject(Record r, int i, JobEntry j) or have a look
at the com.workingdogs.village.Value class (which I can not access). The
code to replace is 

obj.setProperty(row.getValue(offset+8).asBytes());

which I replaced by

String tmp = row.getValue(offset+8).asString();

if (tmp == null)
        obj.setProperty(null);
else 
        obj.setProperty(tmp.getBytes());

Thanks

Erik Kazandjian - Software Engineer
Siemens Atea IC D AS B5
++32 14 252962
e-mail : [EMAIL PROTECTED]



--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to