-
The RetsUpdate.executeUpdate method indicates that it will return a RetsUpdateResult after completion. When the RETS server returns an update error (i.e. Field x is invalid), the method throws an exception instead of returning a "RetsUpdateResult" (which prevents us from checking the ErrorBlock/WarningBlock data for the failed field(s))
2009-06-26 16:50:28 UTC in RETS Open Source Projects
-
No content being POSTed when using RetsTransactionHandler.setMethod("POST");
Example:
.....
String dmqlUpdate = "Resource=Property&ClassName=3&Type=Add&Delimiter=|&Record=123=FHNST|456=OPTIO|789=2009";
RetsTransactionHandler rth = auth.getUpdateHandler();
rth.setMethod("POST");
rth.executeTransaction(dmqlUpdate);
RetsResponse resp = rth.executeTransaction(dmqlUpdate);...
2009-06-25 22:42:13 UTC in RETS Open Source Projects
-
Hi there,
I've been using JRETSC for posting RETS Update transactions for the past few weeks now (excellent work, by the way.)
I may have stumbled across a bug in the "setMethod" method of the RetsTransactionHandler class. After I successfully login to our RETS server, I use the following code to perform an update transaction:
....
String dmqlUpdate =...
2009-06-19 16:07:45 UTC in RETS Open Source Projects